概要
CLI でネットワークの設定(参考情報:コマンドラインインタフェースの使用)を行うには特権モードに入る必要があります。
設定手順
ホスト名の変更 (configure network hostname)
# configure network hostname mail.example.com
mail.example.com
IPアドレスの変更 (configure network interface)
# configure network interface ipv4 eth0 172.16.2.100 255.255.240.0
eth0 Link encap:Ethernet HWaddr 00:0C:29:1C:81:81
inet addr:172.16.2.100 Bcast:172.16.15.255 Mask:255.255.240.0
inet6 addr: fe80::20c:29ff:fe1c:8181/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:1027995 errors:0 dropped:0 overruns:0 frame:0
TX packets:704005 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:101424523 (96.7 MiB) TX bytes:61356234 (58.5 MiB)
Base address:0x2000 Memory:fd5c0000-fd5e0000
eth1 Link encap:Ethernet HWaddr 00:0C:29:1C:81:8B
inet addr:192.168.2.85 Bcast:192.168.3.255 Mask:255.255.252.0
inet6 addr: fe80::20c:29ff:fe1c:818b/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:143137 errors:0 dropped:0 overruns:0 frame:0
TX packets:55604 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:11181601 (10.6 MiB) TX bytes:48177752 (45.9 MiB)
Base address:0x2040 Memory:fd5a0000-fd5c0000
デフォルトゲートウェイの変更 (configure network route default)
# configure network route ipv4 default 172.16.15.255
172.16.0.1
スタティックルートの追加 (configure network route add)
# configure network route ipv4 add 192.168.1.0/24 172.16.0.1 eth0
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.1.0 172.16.0.1 255.255.255.0 UG 0 0 0 eth0
192.168.0.0 0.0.0.0 255.255.252.0 U 0 0 0 eth1
172.16.0.0 0.0.0.0 255.255.240.0 U 0 0 0 eth0
169.254.0.0 0.0.0.0 255.255.0.0 U 0 0 0 eth1
0.0.0.0 172.16.0.1 0.0.0.0 UG 0 0 0 eth0
スタティックルートの削除 (configure network route del)
# configure network route ipv4 del 192.168.1.0/24 172.16.0.1 eth0
DNS の変更 (configure network dns)
# configure network dns ipv4 192.168.0.2 172.16.0.2
nameserver1 192.168.0.2
nameserver2 172.16.0.2