Debian GNU/Linux 7.0(wheezy) インストール後, ネットワークがつながらないことがある. その場合には, まず /etc/network/interfaces 内の記述を確認すると良い.
もし下のように書かれていた場合,
allow-hotplug eth1 iface eth1 inet6 auto gateway 133.30.109.254 # dns-* options are implemented by the resolvconf package, if installed dns-nameservers 133.30.109.22 133.30.104.1 dns-search scitec.kobe-u.ac.jp
下のように書き換えてネットワークを再起動すると良い (ことがある).
auto eth1 <--- 自分が選択したネットワークに変えること iface eth1 inet static address 133.30.109.XX <--- 自分の実験機のアドレスに変えること netmask 255.255.255.0 network 133.30.109.0 broadcast 133.30.109.255 gateway 133.30.109.254 # dns-* options are implemented by the resolvconf package, if installed dns-nameservers 133.30.109.22 133.30.104.1 dns-search scitec.kobe-u.ac.jp
ネットワークの再起動は以下のように行う.
$ /etc/init.d/networking restart
もしくは
$ /sbin/ifdown eth1 $ /sbin/ifup eth1