Hello, I am very new to squid & Linux in general. This past weekend I got a very simple squid to work & I was also able to connect to cache manager that was on the same RH9 box. When I attempted to add my other subnetwork 192.168.2.1 (192.168.1.1 was working O.K.) I could not connect to cache manager anymore. I deleted all of the changes (I think), but I still can not connect. I have read about how to do this, but alas, there must be something that I don't understand/have right. TIA
This is my squid.conf #Recommended minimum configuration: acl all src 0.0.0.0/0.0.0.0 acl manager proto cache_object acl localhost src 127.0.0.1/255.255.255.255 acl to_localhost dst 127.0.0.0/8 acl SSL_ports port 443 563 acl Safe_ports port 80 acl Safe_ports port 21 acl Safe_ports port 443 563 acl Safe_ports port 70 acl Safe_ports port 210 acl Safe_ports port 1025-65535 acl Safe_ports port 280 acl Safe_ports port 488 acl Safe_ports port 591 acl Safe_ports port 777 acl CONNECT method CONNECT acl pc2 src 192.168.1.148 acl freebsd src 192.168.1.149 #Recommended minimum configuration: # # Only allow cachemgr access from localhost http_access allow manager localhost http_access allow manager to_localhost http_access deny manager http_access deny !Safe_ports http_access deny CONNECT !SSL_ports http_access allow localhost # Deny requests to unknown ports http_access allow freebsd http_access allow pc2
