wikiからの移植です。
IPを固定する場合
/etc/network/interfacesを編集する。編集後Networkを再起動する。 /etc/init.d/networking restartiface lo inet loopback auto loiface eth0 inet static
address 192.168.0.3
network 192.168.0.0
netmask 255.255.255.0
broadcast 192.168.0.255
gateway 192.168.0.1
auto eth0
DHCPを使用する場合
iface lo inet loopback auto loiface eth0 inet dhcp
auto eth0
DNSの設定
/etc/resolv.confを編集する。 Install時に設定していない場合は/etc/resolv.confを新規作成。
search ns.XXX.com
nameserver 192.168.0.200
nameserver 192.168.0.201
ドライバモジュールのロードが必要な場合
/etc/modutils/aliasesに以下を追加alias eth0
/etc/modules.confへ反映
update-modules