系统相关
首页 > 系统相关> > Linux外网代理配置

Linux外网代理配置

作者:互联网

一  代理工具安装(有外网的服务器部署)

Linux:tinyproxy

yum install -y tinyproxy

vi /etc/tinyproxy/tinyproxy.conf

    allow 10.12.38.0/24

    Port 8888

启动

systemctl start tinyproxy

systemctl status tinyproxy

访问的代理地址:
http://10.12.xx.xx:8888

二  yum外网代理

vi /etc/yum.conf

proxy=http://10.12.xx.xx:8888

备注:

yum兼容python2.7

(1)vi /usr/bin/yum

第一行:#!/usr/bin/python —> #!/usr/bin/python2.7

(2) vi /usr/libexec/urlgrabber-ext-down

第一行:#!/usr/bin/python —> #!/usr/bin/python2.7

三  wget外网代理

vi /etc/wgetrc

# You can set the default proxies for Wget to use for http, https, and ftp.
# They will override the value in the environment.
https_proxy = http://10.12.xx.xx:8888/
http_proxy = http://10.12.xx.xx:8888/
ftp_proxy = http://10.12.xx.xx:8888/

四 Python-pip外网代理

pip安装第三方包时加上代理参数--proxy :

pip install locust --proxy="http://10.12.xx.xx:8888"

标签:bin,8888,代理,外网,xx,usr,Linux,http,10.12
来源: https://www.cnblogs.com/hzr-notes/p/15533571.html