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

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

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值