嘟嘟社区

[疑问] 不懂就问,iptables端口转发问题


请教各位大佬们,我在路由上装了zerotier,现在想把zerotier的某个ip端口转发到路由的端口上来。
我是这样写的,转发的端口都正常。
  1. iptables -t nat -A PREROUTING -p tcp -i br-lan –dport 3306 -j DNAT –to-destination 192.168.192.185:3306
  2. iptables -t nat -A PREROUTING -p tcp -i br-lan –dport 80 -j DNAT –to-destination 192.168.192.185:80
  3. iptables -t nat -A PREROUTING -p tcp -i br-lan –dport 443 -j DNAT –to-destination 192.168.192.185:443
  4. iptables -t nat -A POSTROUTING -j MASQUERADE

复制代码

但是访问任何https网站都显示证书有问题,发现是443端口转发的问题。
然后。。我就不会了。。。

有人吗?
最后一条改成试试

iptables -t nat -I POSTROUTING -s 192.168.192.185/32 -o br-lan -j MASQUERADE

https://c       nblogs.com/minseo/p/13614731.html