服务器之家:专注于服务器技术及软件下载分享
分类导航

Linux|Centos|Ubuntu|系统进程|Fedora|注册表|Bios|Solaris|Windows7|Windows10|Windows11|windows server|

服务器之家 - 服务器系统 - Centos - CentOS如何设置各种代理上网?

CentOS如何设置各种代理上网?

2019-07-07 11:32服务器之家 Centos

最近一些朋友说不知道CentOS如何设置各种代理上网;下面小编就为大家带来CentOS设置各种代理上网的方法;有需要的朋友可以过来看看

假设我们要设置代理为 IP:PORT

1、网页上网

网页上网设置代理很简单,在firefox浏览器下 Edit-->>Preferences-->>Advanced-->>Network

在Connection下点击Settings,里面的manual proxy configuration里设置IP和PORT即可

 2、yum代理设置

编辑文件为:/etc/yum.conf 

在里面添加这一行:proxy=IP:PORT

这里的IP 为你要设置的IP ,PORT 是你要设置的端口

 3、wget代理设置

编辑文件为:/etc/wgetrc     
添加下面两行:
http_proxy = IP:PORT  
ftp_proxy = IP:PORT

4、系统环境代理设置

编辑文件为/etc/profile,如果只想给自己的账户设置,则编辑~/.bashrc即可

添加三行:

# add proxy for network

export http_proxy=http://child-prc.intel.com:913

export https_proxy=http://child-prc.intel.com:913

export ftp_proxy=$http_proxy

然后source /etc/profile 或者source ~/.bashrc即可

延伸 · 阅读

精彩推荐