ベストアンサー1
/etc/network/interfaces
ファイルに次の行を追加します。
DHCPの使用
例1:
# The loopback network interface
auto lo
iface lo inet loopback
例2:
# The loopback network interface
auto lo eth0
iface lo inet loopback
# The primary network interface
iface eth0 inet dhcp
eth0をネットワークインターフェースカードに交換します。
次のコマンドを使用してネットワークサービスを再起動します。
sudo /etc/init.d/networking restart
変わらない:
# The loopback network interface
auto lo eth0
iface lo inet loopback
# The primary network interface
iface eth0 inet static
address xx.xx.xx.xx
netmask 255.255.255.0
broadcast xx.xx.xx.xy
network xx.xx.xx.xz
gateway yy.yy.yy.yy
dns-nameservers yy.yy.yy.yy
例:
# The loopback network interface
auto lo eth0
iface lo inet loopback
# The primary network interface
iface eth0 inet static
address 192.168.0.77
gatway 192.168.0.1
netmask 255.255.255.0
broadcast 192.168.0.254
network 192.168.0.0
dns-nameservers 192.168.0.254
ネットワークサービスを再起動します。
sudo /etc/init.d/networking restart