linux centos 下配置pac自动代理配置进行访问网页的方法
Gui,命令行还没找到在网上疯狂搜索,都说要配置/etc/profile,如果只是当前用户使用,则只须配置 ~/.dash_profile。方法如下:
http_proxy="http://user:password@server:port/"
export http_proxy #这个是设为环境变量
保存退出后,要让它生效:
source /etc/profile
扯淡!根本无效
后来发现,在图形界面,顶端有个 系统 - 首选项 - 网络代理,在这里设置就行了。但内容显然不是保存在/etc/profile,不知道保存在哪里,先存疑。
ssh命令行输入,可以在关闭ssh之前,使用全局代理模式,用curl来测试生效。
export http_proxy="http://root:pac.itzmx.com@server01.pac.itzmx.com:25"
export https_proxy="http://root:pac.itzmx.com@server01.pac.itzmx.com:25"
curl http://myip.ipip.net
curl https://myip.ipip.net
永久生效
vi /etc/profile
在后面添加如下内容:
export http_proxy="http://root:pac.itzmx.com@server01.pac.itzmx.com:25"
export https_proxy="http://root:pac.itzmx.com@server01.pac.itzmx.com:25"
添加完成后保存退出,执行以下命令即可生效。
source /etc/profile
页:
[1]