我的电脑老是受到ARP欺骗包,但又无法进行IP帮定

来源:百度知道 编辑:UC知道 时间:2024/05/18 07:21:56
我电脑是公司的,有几台机子老是有瑞星收到ARP欺骗包,但是无法与IP地址帮定,请求帮忙.

有人使用P2P终结者,去网上找个反P2P终结者即可~

用360安全卫士了 有防止ARP攻击的功能

装个360,之后再把ARP防护打开就可以了

下个360安全卫士!开启防火墙!就能阻止ARP攻击了!

360ARP防火墙V1.1BETA版
http://down.360safe.com/360AntiArp.exe

绑定问题:
@echo off
arp -d
:::::::::读取本机Mac地址
if exist ipconfig.txt del ipconfig.txt
ipconfig /all >ipconfig.txt
if exist phyaddr.txt del phyaddr.txt
find "Physical Address" ipconfig.txt >phyaddr.txt
for /f "skip=2 tokens=12" %%M in (phyaddr.txt) do set Mac=%%M
:::::::::读取本机ip地址
if exist IPAddr.txt del IPaddr.txt
find "IP Address" ipconfig.txt >IPAddr.txt
for /f "skip=2 tokens=15" %%I in (IPAddr.txt) do set IP=%%I
:::::::::绑定本机IP地址和MAC地址
arp -s %IP% %Mac%
:::::::::读取网关地址
if exist GateIP.txt del GateIP.txt
find "Default Gateway" ipconfig.txt >GateIP.txt