6.53 64-bits Win7上执行"arp -s"报"Access is denied"
http://scz.617.cn/windows/201309131200.txt
Q:
在64-bits Win7上"arp -s"失败:
arp -s 10.10.10.2 00-0c-cc-ee-ff-f3 The ARP entry addition failed: Access is denied.
已经是Administrator,怎么办?
A: scz
netsh interface show interface
ping -n 1 10.10.10.2 arp -a 10.10.10.2 netsh interface ip delete neighbors 本地连接 10.10.10.2
netsh interface ip add neighbors 本地连接 10.10.10.2 00-0c-cc-ee-ff-f3 arp -a 10.10.10.2
D: backend 2013-09-13
"arp -s"实际调用的是SNMP机制,估计SNMP那边的权限和旧系统不一样了。
简单测了一下,若系统从未自动产生过某IP地址的动态ARP表项,则仍然可以用 "arp -s"添加、修改静态表项。但只要曾经存在过动态ARP表项,哪怕该IP地址实际 已不存在,或者用"arp -d"删除了,"arp -s"命令将始终无效,除非重启系统。