|
根据ALTN的帮助,MTU必须设置为1500。
于是在服务器上检查MTU:
E:\>ping -l 1472 -f x.x.x.x
Pinging x.x.x.x with 1472 bytes of data:
Reply from x.x.x.x: bytes=1472 time=6ms TTL=64
Reply from x.x.x.x: bytes=1472 time=5ms TTL=64
Reply from x.x.x.x: bytes=1472 time=5ms TTL=64
Reply from x.x.x.x: bytes=1472 time=5ms TTL=64
Ping statistics for x.x.x.x:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 5ms, Maximum = 6ms, Average = 5ms
其中 x.x.x.x是网关或者本机IP,都如上结果。
证明默认的是1500了,于是干脆手工修改注册表,添加MTU DOWRD值为1500在相应网卡上。
重新启动服务器,按上面再次PING,也通过了。
那么肯定了1500的MTU数值了。
可是还是偶尔会发生winsock error 10053的奇怪错误
还需要改哪里吗? |