通过 powershell 设置接口的 MTU

通过 powershell 设置接口的 MTU

我正在尝试设置 MTU身体的在 Windows 7 上以编程方式进行交互:

PS> (Get-WmiObject -Class Win32_NetworkAdapterConfiguration | Where { $_.Description -match '^Red Hat.*#2' })

DHCPEnabled      : False
IPAddress        : {10.10.8.3, fe80::447d:38dc:bb39:f311}
DefaultIPGateway : 
DNSDomain        : 
ServiceName      : netkvm
Description      : Red Hat VirtIO Ethernet Adapter #2
Index            : 12

PS> (Get-WmiObject -Class Win32_NetworkAdapterConfiguration | Where { $_.Description -match '^Red Hat.*#2' }).SetMTU(9000)
Method invocation failed because [System.Management.ManagementObject#root\cimv2\Win32_NetworkAdapterConfiguration] doesn't contain a method named 'SetMTU'.
At line:1 char:113
+ (Get-WmiObject -Class Win32_NetworkAdapterConfiguration | Where { $_.Description -match '^Red Hat.*#2' }).SetMTU <<<< (9000)
    + CategoryInfo          : InvalidOperation: (SetMTU:String) [], RuntimeException
    + FullyQualifiedErrorId : MethodNotFound

虽然该方法存在仍然出错?真的吗?

请帮忙。


PS> (Get-WmiObject -Class Win32_NetworkAdapterConfiguration | \
    Where { $_.Description -match '^Red Hat.*#2' }) | Get-Member

回报包括:

MTU                          Property     System.UInt32 MTU {get;set;}

但尝试获取或设置它不执行任何操作:

(Get-WmiObject -Class Win32_NetworkAdapterConfiguration | \
    Where { $_.Description -match '^Red Hat.*#2' }).MTU

除非Invoke-Magic我需要做某事。


根据 Ryan 的建议,我已经更改了 IPv4 MTU(并且还更改了 IPv6 MTU):

C:\>netsh interface ipv4 show subinterface "Local Area Connection 2"

   MTU  MediaSenseState   Bytes In  Bytes Out  Interface
------  ---------------  ---------  ---------  -------------
  9000                1       3686       6624  Local Area Connection 2

看起来不错,但这只会影响子接口,不是硬件接口:

硬件接口 mtu = 1500

即使重启后也是如此。

答案1

好吧,这并没有真正回答你的问题,但我想它无论如何都包含了一些不错的信息,所以我会保留它。希望有人有更好的答案。

做:

(Get-WmiObject -Class Win32_NetworkAdapterConfiguration | 
Where { $_.Description -match '^Red Hat.*#2' }) | 
Get-Member

观察输出。您将看到,尽管文档中说了,但这个实例实际上并不包含名为 SetMTU 的方法。编辑:实际上你的可能会。但我的网络接口不是有这个。看起来它是特定于硬件的。

我知道我即将做的事是作弊,但作品:

PS C:\> $AdapterName = $(Get-NetAdapter | Where { $_.Name -Match 'Ethernet'}).Name
PS C:\> netsh interface ipv4 set subinterface "$AdapterName" mtu=1500 store=persistent
Ok.

所以就像你说的,这适用于接口,但可能不适用于硬件 NIC。所以我还没有真正回答你的问题。

您也在Set-NetAdapterAdvancedProperty评论中提到了这一点。但是,我也没有 MTU 设置。我也无法在 Windows GUI 中的设备属性上设置 MTU。我认为差异是特定于硬件的。

答案2

$interface = (Get-WmiObject -Class Win32_NetworkAdapterConfiguration | 其中 { $.DefaultIPGateway -ne $null -and $.IPAddress -ne $null }) | 选择描述

$IFdesc = $interface.Description $AdapterName = $(Get-NetAdapter | 其中 { $_.InterfaceDescription -eq $IFdesc }).Name

netsh 接口 ipv4 设置子接口“$AdapterName”mtu=1360 store=persistent

相关内容