Linux常用命令设置和取消代理

yum

vim /etc/yum.conf

如果代理不需要用户名密码认证:

proxy=http://192.168.16.28:8118

如果需要认证:

proxy=http://192.168.16.28:8118
proxy_username=yezhou

wget

export http_proxy=http://192.168.16.28:8118
export https_proxy=http://192.168.16.28:8118

wget http://www.appblog.cn

wget -Y on -e "http_proxy=http://192.168.16.28:8118" http://www.appblog.cn

-Y:是否使用代理
-e:执行命令

curl

export http_proxy=http://192.168.16.28:8118
export https_proxy=http://192.168.16.28:8118

curl http://www.appblog.cn
curl -I http://www.appblog.cn
curl -v -I http://www.appblog.cn

curl -x 192.168.16.28:8118 http://www.appblog.cn

-x:设置代理,格式为host[:port],port的缺省值为1080

使用socks5代理方法:

--socks5-hostname host:port

版权声明:
作者:Joe.Ye
链接:https://www.appblog.cn/index.php/2023/02/25/linux-common-commands-set-and-cancel-proxy/
来源:APP全栈技术分享
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
打赏
海报
Linux常用命令设置和取消代理
yum vim /etc/yum.conf 如果代理不需要用户名密码认证: proxy=http://192.168.16.28:8118 如果需要认证: proxy=http://192.168.16.28:8118 proxy_username=……
<<上一篇
下一篇>>
文章目录
关闭
目 录