<div dir="ltr">I'm using Squid as local proxy.<br><br>I have the config file as below:-#<br><br>    # Recommended minimum configuration:<br>    #<br>    <br>    # Example rule allowing access from your local networks.<br>    # Adapt to list your (internal) IP networks from where browsing<br>    # should be allowed<br>    <br>    acl localnet src <a href="http://10.0.0.0/8">10.0.0.0/8</a>    # RFC1918 possible internal network<br>    acl localnet src <a href="http://172.16.0.0/12">172.16.0.0/12</a>    # RFC1918 possible internal network<br>    acl localnet src <a href="http://192.168.0.0/16">192.168.0.0/16</a>    # RFC1918 possible internal network<br>    acl localnet src fc00::/7       # RFC 4193 local private network range<br>    acl localnet src fe80::/10      # RFC 4291 link-local (directly plugged) machines<br>    <br>    acl SSL_ports port 443<br>    acl Safe_ports port 80        # http<br>    acl Safe_ports port 21        # ftp<br>    acl Safe_ports port 443        # https<br>    acl Safe_ports port 70        # gopher<br>    acl Safe_ports port 210        # wais<br>    acl Safe_ports port 1025-65535    # unregistered ports<br>    acl Safe_ports port 280        # http-mgmt<br>    acl Safe_ports port 488        # gss-http<br>    acl Safe_ports port 591        # filemaker<br>    acl Safe_ports port 777        # multiling http<br>    acl CONNECT method CONNECT<br>    <br>    #<br>    # Recommended minimum Access Permission configuration:<br>    #<br>    <br>    # Only allow cachemgr access from localhost<br>    http_access allow localhost manager<br>    http_access deny manager<br>    <br>    # Deny requests to certain unsafe ports<br>    http_access deny !Safe_ports<br>    <br>    # Deny CONNECT to other than secure SSL ports<br>    http_access deny CONNECT !SSL_ports<br>    <br>    # We strongly recommend the following be uncommented to protect innocent<br>    # web applications running on the proxy server who think the only<br>    # one who can access services on "localhost" is a local user<br>    #http_access deny to_localhost<br>    <br>    #<br>    # INSERT YOUR OWN RULE(S) HERE TO ALLOW ACCESS FROM YOUR CLIENTS<br>    #<br>    <br>    # Example rule allowing access from your local networks.<br>    # Adapt localnet in the ACL section to list your (internal) IP networks<br>    # from where browsing should be allowed<br>    http_access allow localnet<br>    http_access allow localhost<br>    <br>    # And finally deny all other access to this proxy<br>    http_access deny all<br>    <br>    # Squid normally listens to port 3128<br>    http_port 3128<br>    <br>    # Uncomment the line below to enable disk caching - path format is /cygdrive/<full path to cache folder>, i.e.<br>    #cache_dir aufs /cygdrive/d/squid/cache 3000 16 256<br>    <br><br>  <b>  cache_peer 10.1.2.3 parent 8080 0 no-query default       login=my_username:my_password<br>    never_direct allow all</b><br>    <br>    # Leave coredumps in the first cache dir<br>    coredump_dir /var/cache/squid<br>    <br>    # Add any of your own refresh_pattern entries above these.<br>    refresh_pattern ^ftp:        1440    20%    10080<br>    refresh_pattern ^gopher:    1440    0%    1440<br>    refresh_pattern -i (/cgi-bin/|\?) 0    0%    0<br>    refresh_pattern .        0    20%    4320<br>    <br>    dns_nameservers 8.8.8.8 208.67.222.222<br>    <br>    max_filedescriptors 3200<br><br>Now, I want to use it as forward proxy For that the configuration is shown in the config file in **<b>bold-text</b>**.<br><br>I have browsed tons of web-pages and all have said to include a line similar to this. Beyond this configuration, I don't know what else to add in order to make it work.<br><br><br>One, thing under safe_port should I be changing the http port to "8080" since my local machine is already behind another proxy.<br><br>Also, I'm using domain authentication (NTLM) to connect to other proxy. Is authentication configuration required beside what already done in config file.<br><br>Thanks.<br></div>