赞
踩
http_proxy=http://192.254.1.10:8088
ftp_proxy=http://192.254.1.10:8088/
all_proxy=socks://192.254.1.10:1080/
https_proxy=http://192.254.1.10:8088
no_proxy=localhost,127.0.0.0/8,::1,172...*
以上是我的配置
1.怎么看我配置没配置?
env | grep -i proxy
1.具体在哪里配置呢?
sudo vim /etc/environment
2.怎么配置?
这里换成你自己的IP,和你需要跳过的IP
no_proxy=localhost,127.0.0.0/8,::1,172...* #忽略主机
ftp_proxy=http://192.254.1.10:8088/ #ftp代理
https_proxy=http://192.254.1.10:8088/ #hppts代理
http_proxy=http://192.254.1.10:8088/ #hppt代理
all_proxy=socks://192.254.1.10:1080/ #socks主机
3.如何载入进来并且使用?
source /etc/environment
sudo 自己加 懒得写
例如 sudo vim /etc/…
1、yum代理设置
编辑文件为:vim /etc/yum.conf
在里面添加这一行:
proxy=IP:PORT
例如: proxy=http://172.254.1.10:8088
下方同理
2、wget代理设置
编辑文件为:vim /etc/wgetrc
添加下面两行:
http_proxy = IP:PORT
ftp_proxy = IP:PORT
4、curl代理设置
编辑 ~/.bashrc
alias curl = "curl -x IP:Port "
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。