|
||||||||
From: "Jack Challen" <jack underscore challen at ocsl dot co dot uk> > I've been using m0n0wall for a fair while (great stuff, cheers) and I > decided to allow external access (from my employer's external IP address > only) to the HTTPS webgui. > HTTPS access from the internal (LAN) interface works fine, and so does > ssh access from my work (I'm currently ssh'd into one of my home > machines). When I add the HTTPS access from the same external address, > it doesn't work; connection attempts silently drop into the void... You need to allow it in the firewall. The config for it looks like this; <rule> <type>pass</type> <interface>wan</interface> <protocol>tcp</protocol> <source> <any/> </source> <destination> <any/> <port>443</port> </destination> <descr>Allow remote admin</descr> </rule> Lee |