ubuntu 13.04静的IP設定

4371 ワード

rootユーザーに切り替え、/etc/networkディレクトリに入ります.Interfacesファイルのバックアップ(バックアップファイルは良い習慣です)
次にinterfacesファイルを編集し、次の文を追加します.
1 # Assgin static IP by eric on 26-SEP-2012

2 iface eth0 inet static

3 address 192.168.196.135         #change to your static IP

4 netmask 255.255.255.0           #change to your netmask

5 gateway 192.168.196.255         #change to your getway

6 #We must specify dns-nameserver here

7 #in order to get internet access from host

8 dns-nameservers 192.168.196.255

9 auto eth0

編集が完了したinterfacesファイルの内容は次のとおりです.
root@ubuntu:/etc/network# cat interfaces

# interfaces(5) file used by ifup(8) and ifdown(8)

auto lo

iface lo inet loopback



#add by andy at 2014-08-14

# Assgin static IP by eric on 26-SEP-2012

iface eth0 inet static

address 192.168.196.135         #change to your static IP

netmask 255.255.255.0           #change to your netmask

gateway 192.168.196.255         #change to your getway

#We must specify dns-nameserver here

#in order to get internet access from host

dns-nameservers 192.168.196.255

auto eth0

次に、NICを再起動します.
root@ubuntu:/etc/network# /etc/init.d/networking restart

再起動が完了したら、次のテストを行います.
 root@ubuntu:/etc/network# ping www.baidu.com.cn

 PING www.a.shifen.com (220.181.112.244) 56(84) bytes of data.

 64 bytes from 220.181.112.244: icmp_req=1 ttl=128 time=6.12 ms

 64 bytes from 220.181.112.244: icmp_req=2 ttl=128 time=14.7 ms

OK.静的IP設定が完了しました.