Ubuntu设置IP和dns

刚装好的Ubuntu14.04,IP地址是自动获取的,需要配置一下静态IP

首先进行IP设置:

修改/etc/network/interfaces文件:

vim /etc/network/interfaces

添加如下内容:

auto eth0
iface eth0 inet static  #static代表静态
address 192.168.21.34  #IP地址
netmask 255.255.0.0  #掩码
gateway 192.168.1.1  #路由

重启网络:

ifdown eth0 && ifup eth0

重启之后IP已经变了:

root@192:/home/test# ifconfig
eth0      Link encap:Ethernet  HWaddr ###########  
          inet addr:192.168.21.34  Bcast:192.168.255.255  Mask:255.255.0.0
#下面省略

此时可以通过ssh远程该服务器,也可以ping通外网的IP(注意是直接pingIP),但是ping“www.baidu.com”是ping不通的,因为无法进行域名解析,需要配置dns才可以:

下面设置dns:

修改文件 /etc/resolvconf/resolv.conf.d/base(这个文件默认为空)

vim /etc/resolvconf/resolv.conf.d/base

添加以下内容:

nameserver 8.8.8.8
nameserver 8.8.4.4

:wq 保存退出

执行更新:

resolvconf -u

此时就可以ping通“www.baidu.com”了

Ubuntu设置IP和dns

上一篇:linux系统管理学习笔记-管好文件


下一篇:Linux基本命令总结