@
javaluo 请问怎么写啊?
问问这么写正确么?
# 强制 192.168.3.102 的 53 端口请求由 192.168.3.1 处理
iptables -t nat -A PREROUTING -s 192.168.3.102/32 -p udp --dport 53 -j DNAT --to 192.168.3.1
iptables -t nat -A PREROUTING -s 192.168.3.102/32 -p tcp --dport 53 -j DNAT --to 192.168.3.1
# 强制 8.8.8.8,8.8.4.4 的 53 端口访问重定向到本机 (路由)
iptables -t nat -A PREROUTING -d 8.8.8.8 -p udp --dport 53 -j DNAT --to-destination 192.168.3.1
iptables -t nat -A PREROUTING -d 8.8.4.4 -p udp --dport 53 -j DNAT --to-destination 192.168.3.1