Security: Proxy
This is a guide intended to help configuring Authentication with Comms Mundi™ Encryption and Authentication modules. If you have questions ask us at support@wirelessmundi.com.
Common Task
Service
Check on the Activation checkbox Enabled.
Mode → Proxy normal.
click Apply.
In SERVICES → DNS → LOCAL DOMAINS:
Add domain: exampleportal.com, name configurate in dhcp → subnet or captive portal → connection
Add Resource Records in domain exampleportal.com: exampleportal.com. NS ns.exampleportal.com.
Add Resource Records in domain exampleportal.com: exampleportal.com. A <ip>
Add Resource Records in domain exampleportal.com: ns.exampleportal.com. A <ip>
Add Resource Records in domain exampleportal.com: wpad.exampleportal.com. A <ip>
In SERVICES → HTTP → directory to web resolve wpad.exampleportal.com :
function FindProxyForURL(url,host)
{
if(isPlainHostName(host))
{
return "DIRECT";
}
if(isInNet(host,"127.0.0.1","255.255.255.0"))
{
return "DIRECT";
}
return "PROXY <ip proxy>:<port proxy>; DIRECT";
}