因公司需求,连接网络必须使用代理设置连接网络,这里给大家分享一下我的配置步骤!
1.编辑“/etc/init.d/rc.local”文件
sudo gedit /etc/init.d/rc.local
2.临时修改:在此配置文件的最后面加上如(Ubuntu:修改网卡的MAC地址)的修改命令:
‘eth0‘ 是你的网卡名称
## 修改 eth0 的 MAC 地址
sudo ifconfig eth0 down
sudo ifconfig eth0 hw ether AA:BB:CC:DD:EE:FF
sudo ifconfig eth0 up
**永久修改可参考:https://blog.csdn.net/weixin_42467896/article/details/116892391**
3.修改网络配置 在设置中的网络中 更改以太网IP等,如有需求也要修改网络代理 4.测试浏览器能否联网,如不能联网请检查以上步骤,用 ifconfig 命令查看ip修改后的情况 5. 修改后需要设置apt-get 代理,否则会出现无法解析域名的情况 修改/etc/apt/apt.conf(或者/etc/envrionment),增加 设置您的 网络代理(如有需要)
Acquire::http::proxy “http://127.0.0.1:8000/”; Acquire::ftp::proxy “ftp://127.0.0.1:8000/”; Acquire::https::proxy “https://127.0.0.1:8000/”;
|