This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Transparent Mode Vs. Standard Mode Filtering

I current have ASG setup on my home network. Currently I have the proxies that I have enabled in Transparent Mode. What is the differences between Transparent Mode and Standard Mode? What are the advantages of each?


This thread was automatically locked due to age.
Parents
  • Select 'Enable HTTP Proxy Auto Configuration' in DHCP.  The simplest file for a network of 192.168.1.0/24 with Astaro at 192.168.1.1 is:
    function FindProxyForURL(url, host) 
    

     if (isInNet(myIpAddress(), "192.168.1.0", "255.255.255.0")) 
      return "PROXY 192.168.1.1:8080"; 
     else 
      return "DIRECT"; 
    }


    Cheers - Bob
Reply
  • Select 'Enable HTTP Proxy Auto Configuration' in DHCP.  The simplest file for a network of 192.168.1.0/24 with Astaro at 192.168.1.1 is:
    function FindProxyForURL(url, host) 
    

     if (isInNet(myIpAddress(), "192.168.1.0", "255.255.255.0")) 
      return "PROXY 192.168.1.1:8080"; 
     else 
      return "DIRECT"; 
    }


    Cheers - Bob
Children
No Data