CentOS 搭建 TinyProxy 代理
TinyProxy 和 Squid 都是比较优秀的代理软件
TinyProxy比较小众,虽然没有Squid的功能丰富,但是小巧简单,也能满足普通用户的需求。
Squid 是一款优秀的代理软件,有很丰富的ACL管理功能,虽然squid很强大,但配置比较繁琐。
有以下机器节点:
ssy-01 (有公网)
ssy-02(仅内网)
1.安装epel源(ssy-01)
yum -y install epel-release
2.安装TinyProxy
yum -y install tinyproxy
3.配置服务
vim /etc/tinyproxy/tinyproxy.conf 插入一行配置: Allow 172.16.0.0/16 备注:172.16.0.0/16 为内网网段
4.启动服务
centos 6 service tinyproxy start -------------------------------------- centos 7 systemctl start tinyproxy.service -------------------------------------- 更多命令如下: systemctl restart tinyproxy.service systemctl stop tinyproxy.service systemctl status tinyproxy.service systemctl enable tinyproxy.service
5.配置ssy-02
在ssy-02的/etc/yum.conf添加配
vim /etc/yum.conf proxy=http://172.16.100.100:8888
6.验证yum
原文地址:https://www.cnblogs.com/gaoguangjun/p/8572784.html
时间: 2024-10-16 17:42:17