我经常使用安卓智能手机的 USB 网络共享功能。如果网络管理器建立连接,网络几乎每次都会获得一个新的网络名称(以“网络 1”开头,每次都会在“网络”后增加数字)。
我怀疑智能手机每次启动虚拟设备、启动操作系统或其他操作时都会为虚拟以太网设备使用另一个 mac 地址。我对所用技术了解不够,无法肯定地说。
如果我可以一次又一次地删除旧网络,那就没问题了。我以为我可以用命令删除它们netsh lan
,但结果只有以下内容
C:\Windows\system32> netsh lan show profiles
The Wired AutoConfi Service (dot3svc) is not running
所以我这样开始:
C:\Windows\system32> sc.exe config dot3svc start= auto
在此之后,命令netsh lan show interface
显示我的硬件以太网接口(Realtek PCIe),但不显示虚拟接口。netsh int show int
但列出了它(它是德语):
C:\Windows\system32>netsh int show int
Verw.-status Status Typ Schnittstellenname
-------------------------------------------------------------------------
Deaktiviert Getrennt Dediziert WiFi
Aktiviert Verbunden Dediziert Ethernet 2
Aktiviert Getrennt Dediziert Ethernet
虚拟以太网设备打印名称SAMSUNG Mobile USB Remote NDIS Network Device
。我如何通过命令行控制 NDIS 设备?(如果可能的话,图形化也可以)
答案1
列表命令:
C:\Windows\system32>netsh mbn show interfaces
连接命令:
C:\Windows\system32>netsh mbn connect interface="interface_name" connmode=name name="connection_name"
断开命令:
C:\Windows\system32>netsh mbn disconnect interface="interface_name"