ubuntu静的IP設定の実現方法
1684 ワード
Ubuntu設定静的IP:
rootユーザーに切り替え、/etc/networkディレクトリに入ります.Interfacesファイルのバックアップ(バックアップファイルは良い習慣です)
次にinterfacesファイルを編集し、次の文を追加します.
編集が完了したinterfacesファイルの内容は次のとおりです.
次に、NICを再起動します.
OK.静的IP設定が完了しました.
読書に感謝して、みんなを助けることができることを望んで、みんなの当駅に対する支持に感謝します!
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設定が完了しました.
読書に感謝して、みんなを助けることができることを望んで、みんなの当駅に対する支持に感謝します!