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

如果不行,则需要重启机器

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