首页 > 代码库 > [Ubuntu] 如何设置静态 IP 和 DNS

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

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

# interfaces(5) file used by ifup(8) and ifdown(8)auto loiface lo inet loopbackauto eth0iface 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 文件中。