- @echo off
- color 0a
- title 修改MTU
- :rsm
- echo 当前网络适配器:
- netsh interface ipv4 show interface
- echo 按任意键开始更改MTU。。。
- pause > nul
- set /p MTU=输入MTU:
- netsh interface ipv4 set subinterface "本地连接" mtu=%MTU% store=persistent
- goto rsm
复制代码
- @echo off
- color 0a
- title 猜测MTU
- :K
- set /p len=预期的MTU:
- ping -l %len% -f 你的网关 -n 1
- goto K
复制代码
|