|
|
如题:单网卡服务器配squid代理,客户端IE设置通过代理连接后上不了网,服务器和客户端都接在同台交换机上,服务器本身可以上网,如何解决?配的是传统代理方式.
squid.conf配置如下:
http_port 3128
cache_dir ufs /var/squid
cache_mem 32MB
cache_swap_low 90
cache_swap_high 95
cache_dir /var/squid 1000 16 32
cache_access_log /var/log/squid/access.log
cache_log /var/log/squid/cache.log
acl local src 192.168.1.0/24
acl Safe_ports port 80
acl Safe_ports port 53
http_access allow local
http_access allow Safe_ports
http_access deny all
httpd_accel_port 80
httpd_accel_with_proxy on |
|