人生就是一次旅行,生活就是艺术,人人都是手艺人.
分类: 网络与安全
2022-07-14 14:37:37
1、yum代理设置
编辑文件为:/etc/yum.conf
在里面添加这一行:proxy=IP:PORT
2、wget代理设置
编辑文件为:/etc/wgetrc
添加下面两行:
http_proxy = IP:PORT
ftp_proxy = IP:PORT
3、系统环境代理设置
编辑文件为/etc/profile,如果只想给自己的账户设置,则编辑~/.bashrc即可
添加三行:
# add proxy for network
export http_proxy=
export https_proxy=http://proxy_ip:proxy_port
export ftp_proxy=$http_proxy
然后source /etc/profile 即可
4、curl代理设置
编辑 ~/.bashrc
alias curl = "curl -x IP:Port "