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

forwarding http-proxy

I'm a cable-modem user, and i have to use the proxy of my provider to get my LAN on the internet. I would like to use the http-proxy facillity of my ASL-box.
Where can I tell the box to forward to my ISP-proxy. Should I reconfigure any SQUID-configuration file or what ?
   [:S]


This thread was automatically locked due to age.
  • Since there is no possibility to do this in WebAdmin you have to edit /var/chroot-squid/etc/squid.conf-default and restart Squid via WebAdmin
  • that's what i thought.
    What line i configure ? forward what ?
    Any suggestion ?
  • Make sure you have the following definitions in your squid.conf-default file :

    icp_port 0

    (that will take care of your parent proxy not happy with icp requests)

    cache_peer  parent 8080 7 no-query default

    ... and in your access-control section make sure you have :

    never_direct allow all
    acl QUERY urlpath_regex cgi-bin asp \?
    no_cache deny QUERY

    (that will take care of your refresh problems or some form submits not working)

    Have Fun  [:)]