码迷,mamicode.com
首页 > 其他好文 > 详细

[Ubuntu] 如何设置静态 IP 和 DNS

时间:2014-08-09 21:05:49      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   文件   div   log   服务器   res   

要设置 IP 和 DNS 解析服务器,编辑 /etc/network/interfaces: 

# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback

auto eth0
iface eth0 inet static
        address 192.168.1.6
        gateway 192.168.1.1
        netmask 255.255.255.0
        dns-nameservers 192.168.1.1
        #network 192.168.1.0
        #broadcast 192.168.1.255

 

如果只是临时更改 DNS 服务器,编辑 /etc/resolv.conf,添加以下内容:

nameserver 8.8.8.8

 

resolv.conf 是个动态文件,每次开机会被重新覆盖,因此要添加永久性DNS,采用第一种方式为佳,第一种方式每次开机后会将 dns-nameservers 值写入 resolv.conf 文件中。

 

[Ubuntu] 如何设置静态 IP 和 DNS,布布扣,bubuko.com

[Ubuntu] 如何设置静态 IP 和 DNS

标签:style   blog   color   文件   div   log   服务器   res   

原文地址:http://www.cnblogs.com/ifantastic/p/3422277.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!