[post] @echo off :::::::::::::::::::::::::::::::::::::::::::::::::::: :: 本机以及网关IP和MAC地址绑定批处理程序 :: :: 说明:此方法治标不治本,要想根本解决ARP请 :: :: 采用路由和本机实现双向绑定 :: :::::::::::::::::::::::::::::::::::::::::::::::::::: :::::::::读取本机Mac地址 if exist ipconfig.txt del ipconfig.txt ipconfig /all >c:\ipconfig.txt if exist phyaddr.txt del phyaddr.txt find "Physical Address" ipconfig.txt >c:\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 >c:\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 >c:\GateIP.txt for /f "skip=2 tokens=13" %%G in (GateIP.txt) do set GateIP=%%G :::::::::读取网关Mac地址 if exist GateMac.txt del GateMac.txt arp -a %GateIP% >c:\GateMac.txt for /f "skip=3 tokens=2" %%H in (GateMac.txt) do set GateMac=%%H :::::::::绑定网关Mac和IP arp -s %GateIP% %GateMac% exit