Ubuntu配置DNS

1、DNS临时配置

打开/etc/resolv.conf,在其中添加需要配置的DNS地址

nameserver 127.0.0.53

# 添加的两个DNS地址
nameserver 114.114.114.114
nameserver 8.8.8.8

options edns0 trust-ad

配置完成后立即生效,重启后/etc/resolv.conf会被重写,恢复至原始内容。

2、DNS永久配置

打开/etc/network/interfaces,在其中添加需要配置的DNS地址

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

auto eno1
iface eno1 inet static
address 192.168.1.2
netmask 255.255.255.0
gateway 192.168.1.1
dns-nameservers 192.168.1.1 114.114.114.114 223.5.5.5

配置完成后,重启即可生效。

你可能感兴趣的:(ubuntu,linux,ubuntu,服务器,linux,1024程序员节)