UPDATE: provider is indeed blocking port 80. Bastards.
I am currently stumped. I have forwarded 2 of my wan ports to my internal ip (80 and 443), They are both forwarded using common syntax rules, that is:
config redirect
option target 'DNAT'
option src 'wan'
option dest 'lan'
option proto 'tcp'
option src_dport '80'
option dest_ip '192.168.1.10'
option dest_port '80'
option name 'Nextcloud HTTP'
config redirect
option target 'DNAT'
option src 'wan'
option dest 'lan'
option proto 'tcp'
option src_dport '443'
option dest_ip '192.168.1.10'
option dest_port '443'
option name 'Nextcloud HTTPS'
Yet nmap reports port 80 as filtered, while port 443 is perfectly accessible externally, also both ports are open from lan, so I know who to blame (well unless my provider is blocking some ports in it’s eternal wisdom). Anyway I can properly diagnose and solve this issue? Because I need that 80 port properly forwarded.