公司内网限速怎么办?
若你满足如下条件,则可以通过squid
简单配置实现高速上网.
- 你有服务器权限;
- 服务器没有限速;
- 是个”不法”青年;
同样的,也可以使用该方法实现通过代理上网限制某些人的”不法”行为.
不过,蹭服务器的网络是否就属于”不法”行为呢???
端口
默认:3128
可以在 squid.conf http_port 修改
安装
1 2 3
| yum install squid -y chkconfig squid on service squid start
|
修复警告
1 2 3 4 5
|
visible_hostname .
acl SSL_ports port 443 80
|
Centos下的Squid配置文件
权限设置
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| acl localnet src 10.0.0.0/8 acl localnet src 172.16.0.0/12
acl allowdomain dstdomain baidu.com acl allowdomain dstdomain www.baidu.com http_access deny !allowdomain
acl time_time time MTWHF 08:00-12:00 13:00-22:00
auth_param basic program /usr/lib64/squid/ncsa_auth /etc/squid/user.pass auth_param basic children 5 auth_param basic credentialsttl 2 hours auth_param basic realm test acl auth_user proxy_auth REQUIRED http_access allow localnet time_time auth_user
|
1 2 3 4 5 6 7 8
|
htpasswd -c /etc/squid/user.pass test
htpasswd -d /etc/squid/user.pass test
htpasswd -D /etc/squid/user.pass test
|