diff options
author | jim-p <jimp@pfsense.org> | 2010-10-12 14:32:34 -0400 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2010-10-12 14:32:34 -0400 |
commit | 3583714f6c009e7f2cd4214883da669335194d5a (patch) | |
tree | 88d9375193f8908d224a441f564e3eb88fed4d9a /config/squid/squid.xml | |
parent | 723138825d2ce62a0bb818e415166cf6d2316de0 (diff) | |
download | pfsense-packages-3583714f6c009e7f2cd4214883da669335194d5a.tar.gz pfsense-packages-3583714f6c009e7f2cd4214883da669335194d5a.tar.bz2 pfsense-packages-3583714f6c009e7f2cd4214883da669335194d5a.zip |
Allow user to input destination bypasses for squid, which work like the source bypasses. Also allow users to enter IPs, hostnames, or aliases into these fields. Version bump for squid.
Diffstat (limited to 'config/squid/squid.xml')
-rw-r--r-- | config/squid/squid.xml | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/config/squid/squid.xml b/config/squid/squid.xml index 91019bed..1f251eea 100644 --- a/config/squid/squid.xml +++ b/config/squid/squid.xml @@ -177,10 +177,17 @@ <field> <fielddescr>Bypass proxy for these source IPs</fielddescr> <fieldname>defined_ip_proxy_off</fieldname> - <description>Do not forward traffic from these <b>source</b> IPs through the proxy server but directly through the firewall. Separate by semi-colons (;).</description> + <description>Do not forward traffic from these <b>source</b> IPs, hostnames, or aliases through the proxy server but directly through the firewall. Separate by semi-colons (;).</description> <type>input</type> <size>80</size> - </field> + </field> + <field> + <fielddescr>Bypass proxy for these destination IPs</fielddescr> + <fieldname>defined_ip_proxy_off_dest</fieldname> + <description>Do not proxy traffic going to these <b>destination</b> IPs, hostnames, or aliases, but let it pass directly through the firewall. Separate by semi-colons (;).</description> + <type>input</type> + <size>80</size> + </field> <field> <fielddescr>Enabled logging</fielddescr> <fieldname>log_enabled</fieldname> @@ -332,3 +339,4 @@ </custom_php_deinstall_command> <filter_rules_needed>squid_generate_rules</filter_rules_needed> </packagegui> + |