windows7 下arp 绑定的实现

局域网的arp攻击常常让人头痛,绑定IP/MAC地址是解决方式之一; 在xp下面绑定mac地址很简单,只需“arp -s IP地址  MAC地址 ”就ok, 在win7下的命令有所不同;

首先,需要查看可用网卡的id,使用命令netsh i i show interface

 

 

再绑定arp地址

netsh -c "i i" add neighbors idx  IP地址  MAC地址;

 

若要删除绑定,可以使用netsh -c "i i" delete neighbors idx

 

netsh 的功能很多很强大,还需要继续查阅其它资料

你可能感兴趣的:(Win,arp绑定)