tinyproxy 代理服务器

Posted gaoguangjun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tinyproxy 代理服务器相关的知识,希望对你有一定的参考价值。

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


以上是关于tinyproxy 代理服务器的主要内容,如果未能解决你的问题,请参考以下文章

tinyproxy 代理服务器

部署tinyproxy代理服务

ubuntu 搭建tinyproxy 代理内网服务器上网

TinyProxy http代理

Ubuntu下使用TinyProxy搭建代理HTTP服务器

基于tinyproxy搭建yum代理服务器