通过 MAC 地址得到IP的脚本
冷胜魁(Seaquester)
lengshengkui@gmail.com
2008-7-16
扫描某一个网段,寻找指定网卡(由MAC地址确定)的IP。
#!/bin/bash
ipprefix=172.21.73
count=1
mac=$1
while (( $count < 255 )) ; do
str=`arping -c 1 $ipprefix.$count | grep $mac`
if [ -n "$str" ] ; then
echo $ipprefix.$count
exit
fi
let count+=1
done