Windows 7:ARP条目添加失败:访问被拒绝

Windows 7:ARP条目添加失败:访问被拒绝

我在 Windows 7 上,并尝试使用以下命令为我的默认网关分配一个静态 arp 条目:

arp -s 172.24.7.254 00-05-01-f9-28-00 172.24.1.20

但我收到以下错误:

The ARP entry addition failed: Access is denied.

当我在最后没有提到我的 IP 地址时,系统会为 VirtualBox 自动创建的虚拟接口分配静态 IP。我正在使用提升的提示。我将非常感激您的建议。谢谢。

答案1

这是我发现的,效果很好

arp -s :拒绝访问。在默认网关上

以下是我使用的方法:

删除:

netsh interface ip delete neighbors "Network card name here" "Gateway.IP.goes.here"

添加:

netsh interface ip add neighbors "Network card name here" "Gateway.IP.goes.here" "MAC-address-of-gateway-with-dash-here"

祝你好运

答案2

要在 Windows 7 64 位中设置 arp 静态,您必须使用 netsh 命令,如下所示

输入此命令

netsh interface ipv4 add neighbors "Local Area Connection" inetaddr MAC

例如

netsh interface ipv4 add neighbors "Local Area Connection" 192.168.0.1 00-24-01-d2-3a-bd

(如果您使用的是无线连接而非 LAN 电缆连接,请改用“无线网络连接”。)

相关内容