由于环境需要使用代理访问特殊地址,故需要配置全局代理进行访问。
配置项有all_proxy
、http_proxy
、https_proxy
根据实际情况进行配置,支持HTTP及socks5。
临时配置
socks5
根据实际情况修改地址及端口
export all_proxy="socks5://127.0.0.1:1080"
export http_proxy="socks5://127.0.0.1:1080"
export https_proxy="socks5://127.0.0.1:1080"
http
export all_proxy="http://127.0.0.1:1081"
export http_proxy="http://127.0.0.1:1081"
export https_proxy="http://127.0.0.1:1081"
永久配置
编辑/etc/environment
,文件添加配置。配置后重启系统生效。
[root@cloud-node1 ~]# vi /etc/environment
http_proxy=http://your-proxy-server:port/
no_proxy=localhost,127.0.0.1,localaddress,.localdomain.com
其中,your-proxy-server
是您的代理服务器的IP地址或主机名,port
是您的代理服务器的端口号。no_proxy
是一个逗号分隔的域名列表,这些域名将不使用代理。