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


25

我在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。我正在使用提升的提示。我会很感激的建议。谢谢。

Answers:


37

这是我发现的,效果很好

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
如果有人想知道“此处的网卡名称”的含义,对我来说就是“本地连接”。
0fnt 2010年

9
使用命令netsh interface show interface获取有效接口(网卡名称)的列表。
Joel Coehoorn

对我来说是“以太网”。
瑞安(Ryan)2009年

20

若要在Windows 7 64bit中设置arp static,您必须使用netsh comand,如下所示

输入此命令

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电缆连接,请改为使用“无线网络连接”。)


0

要修改路由信息,您需要成为管理员。

在开始菜单中找到命令提示符,右键单击它,然后选择“以管理员身份运行”


抱歉,我应该提到的比较突出,但是我以管理员身份运行。
0fnt 2010年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.