使用方法:新建一個(gè)bat文件將下列代碼復(fù)制進(jìn)去 修改192.168.1.1 00-18-74-17-c7-80 為自己的網(wǎng)關(guān)與網(wǎng)關(guān)MAC地址保存 然后雙擊運(yùn)行 就可起網(wǎng)關(guān)IP和MAC地址綁定的作用。
注:不知道自己網(wǎng)關(guān)跟MAC地址的朋友 打開 開始 運(yùn)行 輸入 arp -a 就可以知道自己的網(wǎng)關(guān)IP和MAC地址
程序代碼:
@echo off
::::::::::::::::::::::::::::::::::::::::::::::::::::
::;;;本機(jī)以及網(wǎng)關(guān)IP和MAC地址綁定批處理程序;;;;::
::;說明:此方法治標(biāo)不治本,要想根本解決ARP請;;::
:: 采用路由和本機(jī)實(shí)現(xiàn)雙向綁定,程序收集QQ675960;::
::::::::::::::::::::::::::::::::::::::::::::::::::::
:::::::::讀取本機(jī)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
:::::::::讀取本機(jī)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
:::::::::綁定本機(jī)IP地址和MAC地址
arp -s %IP% %Mac%
:::::::::讀取網(wǎng)關(guān)地址
if exist GateIP.txt del GateIP.txt
find "Default Gateway" ipconfig.txt >GateIP.txt
for /f "skip=2 tokens=13" %%G in (GateIP.txt) do set GateIP=%%G
:::::::::讀取網(wǎng)關(guān)Mac地址
if exist GateMac.txt del GateMac.txt
arp -a %GateIP% >GateMac.txt
for /f "skip=3 tokens=2" %%H in (GateMac.txt) do set GateMac=%%H
:::::::::綁定網(wǎng)關(guān)Mac和IP 這里一定要改成你自己的網(wǎng)關(guān)MAC地址要不上不了網(wǎng)的
arp -s 192.168.1.1 00-18-74-17-c7-80
del GateIP.txt
del gatemac.txt
del ipaddr.txt
del ipconfig.txt
del phyaddr.txt
exit
標(biāo)簽: