Access GUI port 80

Tried a few suggestions but cannot get it to work.

I need to be able to access the GUI on 192.168.1.220 (Wan) but can only access it by plugging in a lan cable and using 192.168.1.1

@Burgess85, welcome to the community!

If 192.168.1.220 is a device on WAN, then your first issue is likely that the LAN has the name network numbering. That needs to be fixed first (before any Port Forward would work). Change the LAN network numbering to something like 192.168.2.1

1 Like

Thank you :slight_smile:
Done that now what do I do to open port 80?

You make the firewall [port forward] rule to the LAN IP. Also note, that this is not secure on the Public Internet, but this all appears to be in a Private Network (according to addressing).

config redirect                                 
        option target 'DNAT'                    
        option src 'wan'                        
        option src_dport '80'                
        option dest_port '80'                
        option name 'LuCI'                 
        option proto 'tcp'                  
        option dest_ip '192.168.2.1'          
        option dest 'lan'

:warning: Again, this rule should not be used to open LuCI to the Public Internet!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.