池州网站网站建设,域名备案查询网,关于购物网站开发的开题报告,济宁seo推广众所周知#xff1a;
Ubuntu在域名解析时#xff0c;最直接使用的是/etc/resolve.conf文件#xff0c;它是/run/systemd/resolve/resolve.conf的软链接#xff0c;而对于刚装完的ubuntu系统#xff0c;该文件的内容如下
ubuntuip-172-31-36-184:/etc$ cat resolv.conf
#…众所周知
Ubuntu在域名解析时最直接使用的是/etc/resolve.conf文件它是/run/systemd/resolve/resolve.conf的软链接而对于刚装完的ubuntu系统该文件的内容如下
ubuntuip-172-31-36-184:/etc$ cat resolv.conf
# This file is managed by man:systemd-resolved(8). Do not edit.
#
# This is a dynamic resolv.conf file for connecting local clients directly to
# all known uplink DNS servers. This file lists all configured search domains.
#
# Third party programs must not access this file directly, but only through the
# symlink at /etc/resolv.conf. To manage man:resolv.conf(5) in a different way,
# replace this symlink by a static file or a different symlink.
#
# See man:systemd-resolved.service(8) for details about the supported modes of
# operation for /etc/resolv.conf.nameserver 172.31.0.2
search ap-northeast-1.compute.internal第1步 修改/etc/systemd/resolved.conf例如 谷歌的dns8.8.8.8 cloudflare的dns: 1.1.1.1
ubuntuip-172-31-36-184:/etc/systemd$ ls
journald.conf logind.conf network networkd.conf pstore.conf resolved.conf sleep.conf system system.conf timesyncd.conf user user.conf
ubuntuip-172-31-36-184:/etc/systemd$ cat resolved.conf
# This file is part of systemd.
#
# systemd is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version.
#
# Entries in this file show the compile time defaults.
# You can change settings by editing this file.
# Defaults can be restored by simply deleting this file.
#
# See resolved.conf(5) for details[Resolve]
DNS8.8.8.8 1.1.1.1
#FallbackDNS
#Domains
#LLMNRno
#MulticastDNSno
#DNSSECno
#DNSOverTLSno
#Cacheno-negative
#DNSStubListeneryes
#ReadEtcHostsyes个人猜测这个时候系统在往/run/systemd/resolve/resolv.conf里面写域名解析服务器地址的时候会从/etc/systemd/resolved.conf中取得DNS相关的配置。 2重启域名解析服务systemctl restart systemd-resolvedsystemctl enable systemd-resolved3备份当前的/etc/resolve.conf并重新设置/run/systemd/resolve/resolv.conf 到/etc/resolve.conf的软链接mv /etc/resolv.conf /etc/resolv.conf.bakln -s /run/systemd/resolve/resolv.conf /etc/验证
ubuntuip-172-31-36-184:/etc$ cat resolv.conf
# This file is managed by man:systemd-resolved(8). Do not edit.
#
# This is a dynamic resolv.conf file for connecting local clients directly to
# all known uplink DNS servers. This file lists all configured search domains.
#
# Third party programs must not access this file directly, but only through the
# symlink at /etc/resolv.conf. To manage man:resolv.conf(5) in a different way,
# replace this symlink by a static file or a different symlink.
#
# See man:systemd-resolved.service(8) for details about the supported modes of
# operation for /etc/resolv.conf.nameserver 8.8.8.8
nameserver 1.1.1.1
nameserver 172.31.0.2
search ap-northeast-1.compute.internal参考 1-华为云开发者论坛 2-csdn https://blog.csdn.net/booklijian/article/details/116491288