这是在非公司环境下,VMware NAT 静态IP模式下上网
由于公司的限制,可能需要通过proxy上网。
下面是我在公司的配置(参考其他)
1. 修改 /etc/environment
http_proxy="http://IP_Addr:port"
https_proxy="http://IP_Addr:port"
2. 使https_proxy等生效
export http_proxy="http://IP_Addr:port"
export https_proxy="http://IP_Addr:port"
3. 重启网络链接
service network restart
如果是redhat,重启网络可以输入 service network restart 或者 /etc/rc.d/init.d/network restart
(参考: http://www.cnblogs.com/quanweiru/archive/2012/10/16/2725538.html)
#如果是配置yum的话,需要配置/etc/yum.conf,将下面的配置添加到yum.conf中,针对CentOS。
proxy=http:
//proxysrv
:8080/
参考:http://www.thesysadminhimself.com/2013/08/configuring-web-proxy-on-centos.html