So I am having a strange issue, I am able to connect to my website internally but I am unable to connect to it from the external network (over the Internet). My website runs just fine when I access it internally (192.168.1.1:81) or when I access it over my VPN (openVPN installed on router). When I use the same firewall configuration and change the destination port from 81 (my Webserver) to 82 (luci gui) I am able to access it luci externally (over the Internet)
Firewall configurations
config redirect
option target 'DNAT'
option src 'wan'
option dest 'lan'
option proto 'tcp'
option src_dport '80'
option dest_ip '192.168.1.1'
option name 'Website'
option dest_port '81'
config rule
option target 'ACCEPT'
option src 'wan'
option proto 'tcp udp'
option name 'Websites'
option dest 'lan'
option dest_ip '192.168.1.1'
option src_port '80'
option dest_port '81'
I am able to ping port 80 from outside my network
(Last edited by plivin89 on 18 Nov 2017, 00:41)