传奇哥'S BLOG传奇哥'S BLOG

Windows手动绑定ARP信息

以管理员权限运行命令提示符

netsh i i show in // 查看网卡的idx编号

在这里插入图片描述

netsh -c “i i” add ne [网卡idx] [ip地址] [mac地址] //arp静态绑定

示例 netsh -c “i i” add ne 8 192.168.43.23 34-5a-06-ce-1b-14

arp -a // 查询本机ARP缓存中IP地址-->MAC地址的对应关系

在这里插入图片描述

netsh -c "i i" add ne 8 192.168.43.23 34-5a-06-ce-1b-14
//执行命令进行静态绑定

在这里插入图片描述

arp -d 192.168.43.23 //删除静态绑定

————————————————

原文链接:https://blog.csdn.net/weixin_53918851/article/details/128655444


相关文章

回到首页 发表评论 回到顶部