从命令行在Win XP中设置MTU

时间:2013-06-10 11:33:17

标签: command-line windows-xp settings network-interface mtu

我想从命令行设置MTU。我在XP下运行。

我试过了:

netsh interface ipv4 set subinterface“Local Area Connection”mtu = 1300 store = persistent

但它不起作用。

我试图将“ipv4”更改为“ip”,但它没有帮助。令牌“子接口”无法识别。

有什么想法吗?

提前致谢。

1 个答案:

答案 0 :(得分:0)

您可以通过以下格式的命令行在Windows XP中设置MTU:

netsh interface ipv4 set subinterface" Local Area Connection" mtu = 1300 store = persistent

根据http://my.bergersoft.net/2010/05/13/how-to-change-mtu-size-on-windows-xpvista72008/