[ 実習トップページ | 2012 スケジュール・各回資料 | 07/06 | Debian GNU/Linux 6.0(squeeze) のインストール | Debian GNU/Linux 6.0(squeeze) の設定 ]

Debian GNU/Linux 7.0(wheezy) のインストール後のネットワーク接続トラブルについて


  1. まずはじめに

まずはじめに

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

[ 実習トップページ | 2012 スケジュール・各回資料 | 07/06 | Debian GNU/Linux 6.0(squeeze) のインストール | Debian GNU/Linux 6.0(squeeze) の設定 ]
Last Updated: 2013/06/04 (高橋 芳幸), Since: 2013/06/04 (高橋 芳幸)