如何设置LINUX系统通过代理服务器上网
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何设置LINUX系统通过代理服务器上网相关的知识,希望对你有一定的参考价值。
你虚拟机网络设置正常的情况下要通过桥接网络的代理服务器上网设置在profile文件中设置相关环境变量
#
vi
/etc/profile
http_proxy=192.168.10.91:3128
#
分别指定http、https、ftp协议使用的代理服务器地址
https_proxy=192.168.10.91:3128
ftp_proxy=192.168.10.91:3128
no_proxy=192.168.10.0.
#
访问局域网地址(192.168.20.0/24网段)时不使用代理,可以用逗号分隔多个地址
export
http_proxy
https_proxy
ftp_proxy
no_proxy
保存退出,注销重新登陆系统即可生效。 参考技术A linux自带firefox
打开FireFox,编辑->首选项->常规->连接
设置FF访问因特网的方式
连接设置
手动配置代理
然后输入代理服务器IP和端口号即可。
windows做代理服务器让内部linux上网
fiddler代理上网
1 下载安装:http://www.telerik.com/fiddl er
2 设置代理,如下图
3 代理服务器信息
代理服务器的IP : 10.1.44.11
代理服务器的port : 5678
只要在其他服务器的网络设置把代理设置为以上的配置就行了,或者在其他服务器上的某个软件中,把代理设置为以上配置
linux系统设置http/https proxy的方法,在/etc/bashrc或者/etc/profile中添加如下环境变量:
export https_proxy=http://10.1.44.11:5678
export http_proxy=http://10.1.44.11:5678
curl www.baidu.com
docker(版本1.11.2) 设置代理下载镜像
[[email protected] docker.service.d]# cat /etc/systemd/system/multi-user.target.wants/csphere-docker-agent.service
[Service]
Environment=TMPDIR=/var/tmp
#service 下加入这两条
Environment="HTTP_PROXY=http://10.1.44.11:5678/"
Environment="HTTPS_PROXY=http://10.1.44.11:5678/"
加载配置
systemctl daemon-reload`
重启docker
cspherectl restart docker
docker登陆测试
docker login docker.nicescale.com:4443
参考
https://blog.csdn.net/qq_29277155/article/details/53856455
https://blog.51cto.com/leejia/2048270
https://www.jianshu.com/p/26d0ebd86673
以上是关于如何设置LINUX系统通过代理服务器上网的主要内容,如果未能解决你的问题,请参考以下文章