是的,CentOS上的dnsmasq支持多域名解析。dnsmasq是一个轻量级、易于配置的DNS服务器和DHCP服务器。要在dnsmasq中配置多域名解析,您需要编辑dnsmasq的配置文件(通常位于/etc/dnsmasq.conf
或/etc/dnsmasq/dnsmasq.conf.d/
目录下的某个文件),并在其中添加多个域名解析条目。
以下是一个简单的示例,说明如何在dnsmasq配置文件中添加多域名解析:
# 设置DNS服务器地址
server=8.8.8.8
# 为example.com设置IP地址
address=/example.com/192.168.1.1
# 为another-example.net设置IP地址
address=/another-example.net/192.168.1.2
在这个示例中,我们将example.com
解析为IP地址192.168.1.1
,将another-example.net
解析为IP地址192.168.1.2
。
完成更改后,请确保重启dnsmasq服务以使更改生效:
sudo systemctl restart dnsmasq
现在,dnsmasq应该能够正确解析这两个域名。