美文网首页
在CentOS中配置代理

在CentOS中配置代理

作者: Persistently | 来源:发表于2018-07-11 15:16 被阅读0次
  • 1.、在CentOS中配置全局代理

    1 vim /etc/profile export http_proxy="http://202.169.100.196:8089"export https_proxy="http://202.169.100.196:8089"export ftp_proxy=$http_proxy#export RSYNC_PROXY="202.169.100.196:3128"
    1 source /etc/profile

    注意:

    1、配置完后需要使用source命令使其生效,如果还是不行,需要reboot重启

    2、ccproxy只支持上面截图中的协议,对于最后一个RSYNC协议并不支持,需要配置SQUID代理服务,后续会对使用SQUID代理HTTP和RSYNC进行总结

    2、配置yum代理

    1 vim /etc/yum.conf #在配置文件中加上3 proxy=http://202.169.100.196:8089

    3、配置wget代理

    1 vim /etc/wgetrc http_proxy = http://202.169.100.196:8089ftp_proxy = http://202.169.100.196:8089https_proxy = http://202.169.100.196:8089

相关文章

网友评论

      本文标题:在CentOS中配置代理

      本文链接:https://www.haomeiwen.com/subject/moapyftx.html