设置代理:
export http_proxy=http://172.16.2.16:3199
export https_proxy=http://172.16.2.16:3199
取消代理设置:
unset http_proxy
unset https_proxy
临时有效
1、添加代理
export http_proxy=http://proxyAddress:port
export https_proxy=http://proxyAddress:port
2、查看代理
env |grep -i proxy
3、清除代理
unset http_proxy
unset https_proxy
原文链接:https://blog.csdn.net/zhangh571354026/article/details/123851518
首先实现基本的上网是可以通过网络进行设置代理,图片如下:
可是在终端中进行curl等 *** 作时,则会无效:
curl: (52) Empty reply from server
vi ~/.setproxy
以上代理模式可选
附:取消代理脚本
vi ~/.cancelproxy
source ~/.setproxy (第一次需要输入root密码)
打开/etc/profile文件,在末尾加上这三行
export http_proxy=http://proxy_ip:port #代表http代理
export https_proxy=http://proxy_ip:port #代表https代理
export ftp_proxy=http://proxy_ip:port #代表ftp代理
然后执行source /etc/profile 即可。
使用curl www.google.com 或者 wget www.google.com命令
注意不能使用ping命令,因为ping走的是icmp协议,这里是不可行的。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)