WIN7有线优先失败
本帖最后由 huhu1977 于 2016-4-20 08:40 编辑T61无线,网线同时开启,还是优生连接无线
大神来指点 同等大神指点 本帖最后由 empbox 于 2016-4-19 22:29 编辑
惠普的8470p在bios可以设置为使用有线时自动禁止无线,tp就不不知道有没有这个功能。
如果惠普8470p在bios中禁止这项功能,同时连接有线和无线,也是优先用的无线。所以,很有可能这个是win的默认优先级,无法自定义。
发个设置图片学习学习 多网卡电脑,上网时系统是根据网卡的metric数值决定数据从哪个网卡走。所以你询问的,是查看和修改网卡metric数值的方法。
1、以管理员权限打开命令提示符
2、运行ipconfig
记录下你的有线和无线的名字,比如,我的无线连接名字就叫wireless(IP:192.168.1.164),有线连接名字叫wired(IP:192.168.1.156)。
Wireless LAN adapter wireless:
Connection-specific DNS Suffix. :
Link-local IPv6 Address . . . . . : fe80::dd70:9cab:5b97:4927%12
IPv4 Address. . . . . . . . . . . : 192.168.1.164
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Default Gateway . . . . . . . . . : 192.168.1.254
Ethernet adapter wired:
Connection-specific DNS Suffix. :
Link-local IPv6 Address . . . . . : fe80::85cf:dc0c:b498:7430%11
IPv4 Address. . . . . . . . . . . : 192.168.1.156
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Default Gateway . . . . . . . . . : 192.168.1.254
3、运行route print,查看各个网卡的Metric数值
找到Metric栏,电脑访问互联网的时候,会通过该Metric值最小的网络走。比如我的电脑,互联网会从192.168.1.156走,查询上面的信息,发现走的是有线网卡。
IPv4 Route Table
===========================================================================
Active Routes:
Network Destination Netmask Gateway InterfaceMetric
0.0.0.0 0.0.0.0 192.168.1.254 192.168.1.156 20
0.0.0.0 0.0.0.0 192.168.1.254 192.168.1.164 25
===========================================================================
4、改变Metric数值,使电脑优先通过指定的网卡上网。
netsh interface ipv4 set interface "wired" metric=35
再次运行route print可以看到Metric值改变,我的电脑上网会从192.168.1.164走,也就是走的无线网卡。
IPv4 Route Table
===========================================================================
Active Routes:
Network Destination Netmask Gateway InterfaceMetric
0.0.0.0 0.0.0.0 192.168.1.254 192.168.1.156 35
0.0.0.0 0.0.0.0 192.168.1.254 192.168.1.164 25
===========================================================================
最后附赠一个使非服务器版Windows(比如Windows 7)实现多网卡均衡负载的方法。该脚本的原理,就是实时监控网络流量,频繁切换Metric数值而使得电脑的各个网卡负载均衡。
作者原文:
http://menistuff.blogspot.co.il/2012/02/network-load-balancing-using-windows-7.html
作者视频解说:
https://www.youtube.com/watch?v=Qh5Eb8sXvuk
bs340248 发表于 2016-4-20 04:46
多网卡电脑,上网时系统是根据网卡的metric数值决定数据从哪个网卡走。所以你询问的,是查看和修改网卡metr ...
谢谢,学习了。 好,认真学习学习 https://www.ibmnb.com/forum.php?mod=image&aid=2198983&size
页:
[1]