内网WIN7系统不能通过IE正常登录金三系统原门户,或是登录后点击模块弹出白板后提示网络连接错误,经验证实际已登录成功,但无法进行操作。但IE能正常浏览行业网,能登录公文系统并操作正常;谷歌浏览器能正常登录操作金三系统。排出金三账号、排出IE浏览器控件冲突等因素,重构WIN7系统网络底层协议。(排查顺序:IE8 兼容性、安全 / 信任站点、控件缺失、缓存 / 代理、防火墙拦截、安全策略)
32位WIN7,需要用管理员身份运行cmd命令行窗口
1、ipconfig /all查看本机网络是否正常;
2、netsh interface show interface查看本机网络接口名称(短命令行:netsh int sh int ),如提示命令不存在(32位系统),cd进入c:\windows\system32运行;
3、接口名称一般为“本地连接”,如第3步返回接口名称为空,使用脚本wmic nic where "NetEnabled=true" get Name,index,NetConnectionnectionID
4、netsh interface ip set address name="本地连接" source=static addr=192.168.1.100 mask=255.255.255.0 gateway=92.168.1.1 1(末尾1网关跃点数,表示最高优先级 )设置静态IP和网关(短命令行:netsh interface ip set address name="本地连接" static 192.168.1.100 255.255.255.0 92.168.1.1 1)
5、netsh interface ip set dns name="本地连接" source=static addr=8.8.8.8设置主DNS,netsh interface ip add dns name="本地连接" addr=4.4.4.4 index=2添加备用DNS;
6、ipconfig /all验证配置
另如注册表相关键值损坏,重置网络协议栈:依次执行netsh winsock reste catalog /netsh int ip reset reset.log
WIN7系统最高支持Powershell V5.1版本
“网络正常但软件 / 网页异常” 的重置万能小工具:
netsh winsock reset修复软件与网络之间的接口
netsh int ip reset修复(初始化)系统底层IP协议,专治 “网正常但软件连不上”,IP 相关的系统注册表错误、网卡异常配置、路由表错乱、网络端口异常、某些软件(尤其是税务、VPN、控件)修改了底层网络导致冲突
ipconfig /flushdns清空网址缓存,重新连服务器,
另:tracert 目标IP/域名,路由跟踪命令,查路径、排障,出现 * * * 或超时:该节点丢包 / 不通

