OS 導入時に DHCP で設定された場合は以下のように構成される
# 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
i auto eth0
iface eth0 inet dhcp
これを固定 IP アドレスの設定とするには、以下の サンプルのように編集する
( ここで用いている IP アドレスの値はあくまでもサンプルなので、この値は自分の環境に合わせて変更する必要あり。 )
# 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
auto eth0
iface eth0 inet static
addressaddress 192.168.0.10
addressnetmask 255.255.255.0
addressnetwork 192.168.0.0
addressbroadcast 192.168.0.255
addressgateway 192.168.0.100
address# dns-* options are implemented by the resolvconf package, if installed
addressdns-nameservers 192.168.0.101 192.168.0.102
addressdns-search example.local
eth0 各設定項目の意味は以下の通り
iface eth0 inet static rth0 の IP アドレスを固定(static)とする
address 192.168.0.10 設定された IP アドレス
netmask 255.255.255.0 ネットマスク(24bit)
network 192.168.0.0 ネットワークアドレス
broadcast 192.168.0.255 ブロードキャストアドレス
gateway 192.168.0.100 デフォルトゲートウェイ
# dns-* options are implemented by the resolvconf package, if installed
dns-nameservers 192.168.0.101 192.168.0.102 DNS サーバのアドレス(resolv.conf に反映)
dns-search example.local DNS 検索で優先するドメインサフィックス