2012年12月22日土曜日

UbuntuServer 12.04 固定IPアドレス化

Ubuntu Server12.04をインストールしたら、DHCPでIPアドレスを取得するようになっていた。
固定IPアドレスに変更してみたので、なんとくなくメモ
 
 /etc/network/interfacesでDHCPの部分をコメントアウトし、必要な情報を設定する。

1) 設定を変更
$sudo  vi /etc/network/interfaces
----------192.168.1.100に設定する例----------------
# 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 dhcp
iface eth0 inet static
address 192.168.1.100
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1
--------------------------ここまで---------------








2) eth0の再起動
$sudo ifdown eth0
$sudo ifup eht0

0 件のコメント: