centos配置代理上网

在文件.bash_profile(在root目录下)文件中添加
//----------------------
http_proxy=192.168.0.1:3128  (假如这个是代理iP 和端口)
ftp_proxy=192.168.0.1:3128
export http_proxy
export ftp_proxy
//----------------------
然后执行
source .bash_profile

查看一下是否设置成功
[root@localhost ~]# echo $http_proxy
192.168.0.1:3128

[root@localhost ~]#

然后试试能不能上网

你可能感兴趣的:(centos,centos配置代理上网)