-
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
网友评论