用户下设置一个系统级的代理:
http_proxy="http://username:password@proxy_ip:port"
https_proxy="https://username:password@proxy_ip:port"
export http_proxy
export https_proxy
排除代理设置:
export no_proxy="localhost,127.0.0.1,localaddress,.localdomain.com,192.168.0.1;"
可以在~/.bash_profile
中设置,登陆即存在。
要对所有系统用户生效,写在/etc/profile里面,包括后台的任务等等都可使用。