红联Linux门户
Linux帮助

ubuntu sever网络代理设置

发布时间:2015-11-12 16:06:51来源:linux网站作者:蓝星福

背景:由于在公司网络中诸多限制,特别坑的是下载被限制。导致在本地装个虚拟机连更新源都被自己公司给过滤了。


1、临时修改http代理

需要用户名密码:

export http_proxy="http://用户名:密码@代理IP:代理端口 

无用户名密码:

export http_proxy="http://代理IP:代理端口 


2、只针对apt使用代理

http代理:

vim /etc/apt/apt.conf 
Acquire::http::proxy "http://username:passowrd@代理IP:代理端口/"; 

Ftp

Acquire::ftp::proxy "ftp://username:password@代理IP:代理端口/"; 

Htpps

Acquire::https::proxy "https://username:password@代理IP:代理端口/"; 


3、全局设置网络代理

在主目录下

vim .bashrc 
http_proxy=http://username:password@代理IP:代理端口 
export http_proxy


Ubuntu设置代理和例外:http://www.linuxdiyf.com/linux/14191.html

Ubuntu局域网中设置代理服务器上网和设置静态IP:http://www.linuxdiyf.com/linux/4859.html

代理上网中Linux下YUM无法使用的解决方法:http://www.linuxdiyf.com/linux/11226.html

Ubuntu H3C认证上网及网络代理设置小结:http://www.linuxdiyf.com/linux/9767.html

通过HTTP代理访问SSH服务:http://www.linuxdiyf.com/linux/15595.html