Ubuntu Server 12.04(14.04)配置靜態IP的方法

一、配置靜態IP地址


    編輯系統文件 /etc/network/interfaces,原先的文件內容如下:

1
2
3
4
5
6
# vim /etc/network/interfaces
 
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet dhcp  # 表示默認使用DHCP分配IP

    只需要設置address(IP地址)、netmask(子網掩碼)、gateway(網關)這三項就OK,network和broadcast這兩項參數是可以不寫的。修改爲如下:

1
2
3
4
5
6
7
8
9
10
auto lo
iface lo inet loopback
 
# The primary network interface
auto eth0
#iface eth0 inet dhcp
iface eth0 inet static
address 192.168.1.250
netmask 255.255.255.0
gateway 192.168.1.1

    如果不清楚gateway的話,可以使用一下命令查看:

1
2
3
4
5
root@localhost:~# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         192.168.1.1     0.0.0.0         UG    0      0        0 eth0
192.168.1.0     0.0.0.0         255.255.255.0   U     0      0        0 eth0


二、配置DNS服務器


    改爲靜態IP之後,需要配置DNS服務器,方法如下:

1
2
3
4
5
# vim /etc/resolv.conf
# 添加如下內容
 
nameserver 192.168.1.1
nameserver 223.5.5.5

    nameserver最好使用國內的DNS IP,不知道的話可以去http://dns.ip.cn/看看。

    另外,還需要修改/etc/resolvconf/resolv.conf.d/base文件,不然重啓機器之後DNS配置文件會被重置。方法如下:

1
2
3
# vim /etc/resolvconf/resolv.conf.d/base
nameserver 192.168.1.1
nameserver 223.5.5.5


三、重啓networking服務使其生效


1
sudo /etc/init.d/networking restart

如果不行,則需要重啓機器

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章