linux命令行界面设置代理方法

命令行界面的一般代理设置方法
 

1、在profile文件中设置相关环境变量
    # vi /etc/profile
http_proxy=http://192.168.20.20:3128       # 分别指定http、https、ftp协议使用的代理服务器地址
https_proxy=http://192.168.20.20:3128
ftp_proxy=http://192.168.20.20:3128
no_proxy=192.168.20.        # 访问局域网地址(192.168.20.0/24网段)时不使用代理,可以用逗号分隔多个地址
export http_proxy https_proxy ftp_proxy no_proxy

    保存退出,注销重新登陆系统即可生效

你可能感兴趣的:(linux,代理,linux命令,linux系统)