ubuntu下配置全局代理
打开/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协议,这里是不可行的。
本文来自博客园,作者:Chuan_Chen,转载请注明原文链接:https://www.cnblogs.com/wangcc7/p/17734859.html