| Author |
internet-antivirus-proxy-browser
|
|
| cdt_sylvestre 2004-09-29, 7:57 pm |
| Hi
i have this situation
a browser which connects to an antivirus (hbedv) proxy
which connects to squid
then squid connect to internet
but i like browsers to connect to squid
then squid will connect to proxy AV
then proxy AV will go to the internet
how to tell squid to redirect TCP 80 to proxy AV?
thx
| |
| Muthukumar_K 2004-10-13, 2:33 pm |
| We have to setup Proxy AV as a parent proxy. Run normal squid as child proxy and With cache_peer directive connect to Proxy AV ( parent proxy )
See squid.conf cache_peer TAG informations.
Regards
Muthukumar. | |
| Markus Noveska 2004-10-27, 2:46 am |
| cdt_sylvestre wrote:
> Hi
> i have this situation
> a browser which connects to an antivirus (hbedv) proxy
> which connects to squid
> then squid connect to internet
>
>
> but i like browsers to connect to squid
> then squid will connect to proxy AV
> then proxy AV will go to the internet
>
> how to tell squid to redirect TCP 80 to proxy AV?
>
>
> thx
you have to configure squid and webgate as "Networkconfiguration 2"
(Webgate Manual)
the entries in the squid.conf:
cache_peer localhost parent 8080 0 no-query no-digest default
(if avwebgate listen on Port 8080)
and
acl all src 0.0.0.0/0.0.0.0
acl SSL method CONNECT
always_direct allow SSL (Because HTTPS-connections are not supported by
AvWebGate)
never_direct allow all
more information you get in the README File.
Markus
|
|
|
|