前言:
如果你的电脑在路由器底下,想要通过公网IP或是网址访问同一台路由器下服务器的话,这时因为NAT loopback问题会导致你无法访问你网内的服务器。
解决步骤如下:
1.假设你的网段是192.168.88.xxx
2.假设你的WEB服务器是192.168.88.8
下面这张图第0行是基本的port mapping,就不另外多解释。
/ip firewall nat add chain=dstnat in-interface=pppoe-out1 protocol=tcp dst-port=80 \ action=dst-nat to-address=192.168.88.8 to-port=80 add chain=srcnat out-interface=pppoe-out1 action=masquerade
第1行开始做起(下面5900改成你自己需要的端口,例如80)
/ip firewall nat add chain=dstnat dst-address-type=local protocol=tcp dst-port=80 \ action=dst-nat to-address=192.168.88.8 to-port=80
/ip firewall nat add chain=srcnat src-address=192.168.88.0/24 \ dst-address=192.168.88.8 protocol=tcp dst-port=80 \ out-interface=bridge-local action=mas
配置结束,请刷新网页!
评论前必须登录!
注册