|
发表于 2003-7-7 21:02:23
|
显示全部楼层
我在RedHat7.3下用squid来做代理,操作如下:
1.在shell中运行ntsysv,选中squid服务;
2.编辑squid.conf:
vi /etc/squid/squid.conf
在大概1457行左右修改为:http_access allow all
在大概48行左右修改为:http_port 3128
在大概752行左右修改为:client_netmask 255.255.255.0
在大概1686行左右修改为:http_accel_with_proxy on
在大概1701行左右修改为:http_accel_uses_host_header on
其中的:http_port 3128的3128为代理端口,就是在客户端需要指明使用的端口,可以根据需要更改,象我就把它改为808。
最后重启squid服务:/etc/rc.d/init.d/squid restart 就可以使用了。 |
|