【Ubuntu】ネットワーク設定
環境はUbuntu Server Edition 8.10
ファイルは/etc/network/interfaces
DHCPの場合は次のように設定。
auto eth1
iface eth1 inet dhcp
固定IPの場合は次のように設定。
auto eth1
iface eth1 inet static
address 192.168.0.24
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255
gateway 192.168.0.3
反映はネットワークを再起動
# /etc/init.d/networking restart