VPS部署 DNS 服务
apt-get install dnsmasq dnsutils ufw
vim /etc/dnsmasq.conf
增加
port=5353
server=8.8.8.8
server=8.8.4.4
容许5353端口
ufw allow 5353
重启dnsmasq:
service dnsmasq start
或
/etc/init.d/dnsmasq restart
测试
vps
dig @127.0.0.1 -p 5353 www.youtube.com
dig @144.168.56.190 -p 5353 www.youtube.com
评论
发表评论