192.168.1.99 上跑了个 adhome ,在/etc/resovl.conf 添加自身 IP 时候,运行 nslookup google.com 总是出现下面提示:
root@datahub:/etc# nslookup google.com ;; communications error to 192.168.1.99#53: timed out ;; communications error to 192.168.1.99#53: timed out
/etc/resolv.conf 内容如下:
GNU nano 7.2 resolv.conf
search abwayer.com
#nameserver 192.168.1.99
nameserver 192.168.1.1
nameserver 8.8.8.8
nameserver 8.8.4.4
已经关闭了防火墙,同时检测 53 端口是打开的, 请问是 adhome 哪里需要设置吗?
1
adrianzhang 99 天前
netstat 看一下 53 端口侦听的 IP
|
2
KINGWAY OP @adrianzhang 谢谢,发现了是 v2raya 的问题(我在这个机器用 v2raya 做内网的透明代理)
root@datahub:~# netstat -tulnp|grep 53 tcp6 0 0 :::53 :::* LISTEN 1494/AdGuardHome udp6 0 0 :::53428 :::* 2454/v2ray udp6 0 0 :::45384 :::* 2454/v2ray udp6 0 0 :::53 :::* 1494/AdGuardHome 正在研究如何让 adhome 接管 dns https://v2raya.org/docs/advanced-application/advanced-dns/ |