从接口删除 IPv6 地址

从接口删除 IPv6 地址

如何从网络接口中删除冗余地址。我有一堆不必要的地址,临时的和常用的

在此处输入图片描述

我这样做

netsh interface ipv6 delete address interface="Wi-Fi" address="2806:10ae:7:1c7b::6"

但得到

该系统找不到指定的文件。

我究竟做错了什么?

更新:输出netsh interface ipv6 show address level=verbose

Address ::1 Parameters
---------------------------------------------------------
Interface Luid     : Loopback Pseudo-Interface 1
Scope Id           : 0.0
Valid Lifetime     : infinite
Preferred Lifetime : infinite
DAD State          : Preferred
Address Type       : Other
Skip as Source     : false

Address fe80::306f:9747:4ce8:213b%4 Parameters
---------------------------------------------------------
Interface Luid     : Bluetooth Network Connection
Scope Id           : 0.4
Valid Lifetime     : infinite
Preferred Lifetime : infinite
DAD State          : Deprecated
Address Type       : Other
Skip as Source     : false

Address fe80::905e:9316:2889:8ee0%6 Parameters
---------------------------------------------------------
Interface Luid     : Local Area Connection* 10
Scope Id           : 0.6
Valid Lifetime     : infinite
Preferred Lifetime : infinite
DAD State          : Deprecated
Address Type       : Other
Skip as Source     : false

Address fe80::f853:8095:aa9d:d452%20 Parameters
---------------------------------------------------------
Interface Luid     : Ethernet
Scope Id           : 0.20
Valid Lifetime     : infinite
Preferred Lifetime : infinite
DAD State          : Deprecated
Address Type       : Other
Skip as Source     : false

Address fe80::7cd5:d933:51a0:d756%23 Parameters
---------------------------------------------------------
Interface Luid     : Local Area Connection* 11
Scope Id           : 0.23
Valid Lifetime     : infinite
Preferred Lifetime : infinite
DAD State          : Deprecated
Address Type       : Other
Skip as Source     : false

Address fe80::4856:331e:461b:2feb%39 Parameters
---------------------------------------------------------
Interface Luid     : vEthernet (Hyper-WiFi)
Scope Id           : 0.39
Valid Lifetime     : infinite
Preferred Lifetime : infinite
DAD State          : Preferred
Address Type       : Other
Skip as Source     : false

Address fe80::8008:fdf8:b397:c832%19 Parameters
---------------------------------------------------------
Interface Luid     : PdaNet Broadband Connection
Scope Id           : 0.19
Valid Lifetime     : infinite
Preferred Lifetime : infinite
DAD State          : Deprecated
Address Type       : Other
Skip as Source     : false

其中没有Wi-Fi接口。为什么?

相关内容