Linux系统设置全局代理(http代理)
临时
export http_proxy=http://ip:port
export https_proxy=http://ip:port
永久
vim /etc/profile
http_proxy=http://127.0.0.1:9666 #代理程序地址
https_proxy=http://127.0.0.1:9666
ftp_proxy=http://127.0.0.1:9666
export http_proxy
export ftp_proxy
export https_proxy
代理变量的配置
针对上面变量的设置方法:
1、在/etc/profile文件
2、在~/.bashrc
3、在~/.zshrc
4、在/etc/profile.d/文件夹下新建一个文件xxx.sh
写入如下配置:
export proxy="http://192.168.5.14:8118"
export http_proxy=$proxy
export https_proxy=$proxy
export ftp_proxy=$proxy
export no_proxy="localhost, 127.0.0.1, ::1"
而对于要取消设置可以使用如下命令,其实也就是取消环境变量的设置:
unset http_proxy
unset https_proxy
unset ftp_proxy
unset no_proxy
阅读剩余
版权声明:
作者:zhangyin
链接:https://blog.zhangyin.net/1273.html
文章版权归作者所有,未经允许请勿转载。
THE END