Solaris ネットワークの設定変更

  簡単にまとめておこう.

IP アドレス             192.168.1.2
ネットマスク            255.255.255.0
デフォルトゲートウェイ 192.168.1.1
DNS サーバ              192.168.1.1
ホスト名                sol10
nic のインタフェース名 eri0


- ホスト名の変更
/etc/hostname.eri0

sol10

/etc/nodename

sol10

- IP アドレスの変更
/etc/hosts

127.0.0.1       localhost
192.168.1.2     sol10   loghost

- ネットマスクの変更
/etc/netmasks

192.168.1.0     255.255.255.0

- デフォルトルート (ゲートウェイ) の変更 (ない場合は作る)
/etc/defaultrouter

192.168.1.1

- DNS サーバの変更 (ない場合は作る)
/etc/resolv.conf

nameserver 192.168.1.1

/etc/nsswitch.conf

hosts:    files dns

- 設定の反映 (リブートでも可)

# ifconfig eri0 down
# ifconfig eri0 192.168.1.2 netmask 255.255.255.0 broadcast 255.255.255.255
# ifconfig eri0 up