问题 某天想要在服务器上下载编译github上某开源项目,结果发现访问不了外网。 于是找运维,运维给了个http代理服务器地址。简单操作后,就可以访问外网了。 解决 在需要访问外网的机器上,执行以下命令: http_proxy=http://10.x.y.z:3128/ https_proxy=http://10.x.y.z:3128/ ftp_proxy=http://10.x.y.z:3128/ export http_proxy export https_proxy export ftp_proxy