红联Linux门户
Linux帮助

Ubuntu配置静态IP和DNS

发布时间:2014-08-13 10:20:02来源:linux网站作者:linux

如果有机会在自己的局域网内搭建自己的Ubuntu服务器,必然涉及到修改其ip,让改ip不变,以便日后访问的方便。


下面就讲讲,如何来设置这样的ip。

1. 打开 /etc/network/interfaces


2. 注释 iface eth0 inet dhcp


3. 添加 , 请注意,根据自己的实际情况修改

iface eth0 inet static

address 192.168.1.201

netmask 255.255.255.0

gateway 192.168.1.1


4. 重启eth0,不是root的加sudo

ifconfig eth0 down

ifconfig eth0 up


5. 重启网卡

/etc/init.d/networking restart

至此网络配置完了。但是在后续的使用中,可能出现找不到dns服务器的情况。


那么如何设置静态dns服务器呢?

如果简单修改 /etc/resolv.conf, 在机器重启后,会失效,您的修改会被默认配置覆盖掉。


比较持久的做法是

1. 增加文件/etc/resolvconf/resolv.conf.d/tail

2. 增加nameserver,我推荐两个, 8.8.8.8 8.8.4.43. 重启dns解析,/etc/init.d/resolvconf restart