标签:loop arp back vmware mtu 静态 本地 ace work
1.先查看用的哪块网卡上的网,记录下Idx编号,我的是14
C:\Windows\system32>netsh i i show in Idx Met MTU 状态 名称 --- ---------- ---------- ------------ --------------------------- 1 75 4294967295 connected Loopback Pseudo-Interface 1 10 1 65535 disconnected 本地连接 13 25 1500 disconnected WLAN 20 25 1500 disconnected 本地连接* 9 9 50 1500 connected 本地连接* 11 14 35 1500 connected 以太网 2 15 35 1500 connected VMware Network Adapter VMnet1 8 35 1500 connected VMware Network Adapter VMnet8
2.添加arp静态绑定,需要管理员权限
C:\Windows\system32>netsh -c "i i" add neighbors 14 "192.168.1.2" "00-0C-29-E5-AA-D2"
3.查看arp列表
C:\Windows\system32>arp -a 接口: 10.4.7.1 --- 0x8 Internet 地址 物理地址 类型 239.255.255.250 01-00-5e-7f-ff-fa 静态 接口: 192.168.137.1 --- 0x9 Internet 地址 物理地址 类型 192.168.137.228 50-98-39-0b-0a-22 动态 224.0.0.2 01-00-5e-00-00-02 静态 224.0.0.22 01-00-5e-00-00-16 静态 224.0.0.100 01-00-5e-00-00-64 静态 224.0.0.253 01-00-5e-00-00-fd 静态 239.255.255.250 01-00-5e-7f-ff-fa 静态 接口: 192.168.1.253 --- 0xe Internet 地址 物理地址 类型 192.168.0.5 bc-85-56-79-b3-9b 动态 192.168.0.16 60-57-18-89-e9-1e 动态 192.168.1.1 5c-dd-70-e5-3e-9c 动态 192.168.1.2 00-0c-29-e5-aa-d2 静态
4.删除绑定
C:\Windows\system32>arp -d 192.168.1.2
标签:loop arp back vmware mtu 静态 本地 ace work
原文地址:https://www.cnblogs.com/forlive/p/14954993.html