我怎样才能获得这个配置?
- 服务器 A -->
Server B
在 /etc/resolve.conf 中使用 ip 作为名称服务器 - 服务器 B -->
Server C:53
使用 iptables将端口 53 上的所有请求转发到 - 服务器 C --> 解析传入的 DNS 查询
Server B
iptables 配置:
iptables -t nat -A PREROUTING -p tcp --dport 53 -j DNAT --to-destination Server_C:53
iptables -t nat -A PREROUTING -p udp --dport 53 -j DNAT --to-destination Server_C:53
iptables -t nat -A POSTROUTING -j MASQUERADE
但现在我在服务器 A dns 查询中超时