网络问题-代理设置

Win7代理查询:Internet属性->连接->局域网设置->代理服务器

Ubuntu全系统设置: System Settings -> Network -> Network proxy -> Manual -> Input the right IP&Port -> Apply system wide

注意address、netmask、gateway都要填

Git设置代理:

git config --global http.proxy http://proxyuser:proxypwd@proxy.server.com:8080

# Example
git config --global https.proxy http://127.0.0.1:1080 git config --global https.proxy https://127.0.0.1:1080

Git取消代理:

git config --global --unset http.proxy
git config --global --unset https.proxy

Win7下的TortoiseGit: Settings -> Network -> Enable Proxy Server -> ...

某次测试了网络工业摄像头后,上网出现问题,后来解决了,考虑到安装摄像头驱动时,修改了巨型帧配置,所以解决的可能操作是:

  1. 网络共享中心->更改适配器设置->网络(本地)连接->属性(在上半部分)->网络->配置->高级->巨型帧->关闭(后来证明不是巨型帧设置问题)
  2. 网络共享中心->更改适配器设置->网络(本地)连接->双击IPv4协议->使用下面IP和使用下面DNS->确认全部修改正确
原文地址:https://www.cnblogs.com/xbit/p/8515930.html