Answers:
您也可以在运行route print
命令时看到该信息。这是显示的第一件事。索引是第一列
=========================================================================== Interface List 13... ......Bluetooth Device (Personal Area Network) 10... ......Intel(R) 82566MM Gigabit Network Connection 11... ......Intel(R) Wireless WiFi Link 4965AG 17... ......VMware Virtual Ethernet Adapter for VMnet1 18. . ......VMware Virtual Ethernet Adapter for VMnet8
由于您了解适配器的所有其他信息,并且您正在使用Server 2008,因此可以(并且应该)仅使用netsh使用接口名称添加路由:
netsh int ipv4 add route <remote netid>/<remote netmask> <interface name> <next hop>
在2008年以后,一般不建议使用route命令。
route print
并且使用错误的名称将导致“有用”错误消息:“文件名,目录名称或卷标签语法不正确。”。用于netsh interface ipv4 show interfaces
查找实际名称。
您可以使用PowerShell:
Get-WMIObject Win32_networkadapter | Select-Object Name, AdapterType, InterfaceIndex | Format-List
route print
输出不匹配。该DeviceID
值也不一致。(而且不,这不仅仅是简单的一一发行。)
route
命令返回适配器优先级。此命令返回InterfaceIndex。看到这里:blogs.technet.microsoft.com/networking/2015/08/14/…–