• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    从apnic提取ip信息脚本分享

    复制代码 代码如下:

    #!/bin/bash

    # download from apnic
    rm -f delegated-apnic-latest
    wget http://ftp.apnic.net/apnic/stats/apnic/delegated-apnic-latest

    # IPs allocated to china.
    grep 'apnic|CN|ipv4|' delegated-apnic-latest | cut -f 4 -d'|' > delegated-apnic-CN

    # get detail of echo IP from apnic database.
    rm -f apnic_CN.txt
    while read ip
    do
        # query apnic database
        echo "query who is $ip"
        whois -h whois.apnic.net $ip > tmp.txt
        grep inetnum  tmp.txt >> apnic_CN.txt          # IP range
        grep netname  tmp.txt >> apnic_CN.txt          # netname which include sp information 
        grep descr    tmp.txt >> apnic_CN.txt          # description which include province information
        echo ""  >> apnic_CN.txt          
    done delegated-apnic-CN

    # clean up
    rm -f tmp.txt
    rm -f delegated-apnic-latest
    rm -f delegated-apnic-CN

    您可能感兴趣的文章:
    • php下获取客户端ip地址的函数
    • PHP 显示客户端IP与服务器IP的代码
    • PHP实现获取客户端IP并获取IP信息
    上一篇:实现批量linux格式化硬盘和挂载硬盘脚本分享
    下一篇:mysql源码安装脚本分享
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    从apnic提取ip信息脚本分享 从,apnic,提取,信息,脚本,