手机
当前位置:查字典教程网 >脚本专栏 >linuxshell >Shell脚本获取国内各大运营商网段脚本分享
Shell脚本获取国内各大运营商网段脚本分享
摘要:亚太地区网络信息记录在这里,每天都有更新。http://ftp.apnic.net/apnic/stats/apnic/delegated-...

亚太地区网络信息记录在这里,每天都有更新。

http://ftp.apnic.net/apnic/stats/apnic/delegated-apnic-latest

下面这个脚本将对这段文本进行编辑,输出国内几大运营商网段。

复制代码 代码如下:

#!/bin/sh

#auto get the IP Table

#get the newest delegated-apnic-latest

rm delegated-apnic-latest

if type wget

then wget http://ftp.apnic.net/apnic/stats/apnic/delegated-apnic-latest

else fetch http://ftp.apnic.net/apnic/stats/apnic/delegated-apnic-latest

fi

grep 'apnic|CN|ipv4' delegated-apnic-latest | cut -f 4,5 -d '|' | tr '|' ' ' | while read ip cnt

do

mask=$(bc <<END | tail -1

pow=32;

define log2(x) {

if (x<=1) return (pow);

pow--;

return(log2(x/2));

}

log2($cnt);

END

)

echo $ip/$mask';'>>cnnet

resultext=`whois $ip@whois.apnic.net | grep -e ^netname -e ^descr -e ^role -e ^mnt-by | cut -f 2 -d ':' | sed 's/ *//'`

if echo $resultext | grep -i -e 'railcom' -e 'crtc' -e 'railway'

then echo $ip/$mask';' >> crc

elif echo $resultext | grep -i -e 'cncgroup' -e 'netcom'

then echo $ip/$mask';' >> cnc

elif echo $resultext | grep -i -e 'chinanet' -e 'chinatel'

then echo $ip/$mask';' >> telcom_acl

elif echo $resultext | grep -i -e 'unicom'

then echo $ip/$mask';' >> unicom

elif echo $resultext | grep -i -e 'cmnet'

then echo $ip/$mask';' >> cmnet

else

echo $ip/$mask';' >> other_acl

fi

done

【Shell脚本获取国内各大运营商网段脚本分享】相关文章:

Shell脚本中获取本机ip地址的3个方法

shell监控linux系统进程创建脚本分享

Shell脚本实现检测文件是否被修改过代码分享

shell脚本联合PHP脚本采集网站的pv和alexa排名

Shell脚本获取本地网卡IP、mac地址、子网掩码、dns IP、外网IP

shell中的数组操作小结和冒泡排序实现脚本分享

shell获取命令行参数示例分享

shell监控脚本 准备工作分享

从apnic提取ip信息脚本分享

Shell脚本获取进程的运行时间

精品推荐
分类导航