ネットワークの設定2008/08/23 |
[1] | ウィザードに従ってデフォルト設定でインストールすると、DHCPでのIPアドレス付与になっているため、 固定割り当てに変更しておきます。 |
ns:~# vi /etc/network/interfaces # This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). # The loopback network interface auto lo iface lo inet loopback # The primary network interface allow-hotplug eth0 # 行頭に#をつけてコメント化 # iface eth0 inet dhcp# 以下7行追記化 iface eth0 inet static address 192.168.0.17 # IPアドレス指定 network 192.168.0.0 # ネットワークアドレス指定 netmask 255.255.255.0 # ネットマスク指定 broadcast 192.168.0.255 # ブロードキャストアドレス指定 gateway 192.168.0.1 # デフォルトゲートウェイ指定 auto eth0 ns:~# /etc/init.d/networking restart Reconfiguring network interfaces...done. |
Sponsored Link |