免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1920 | 回复: 0
打印 上一主题 下一主题

小工具 检测当前未被使用的IP [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-09-01 19:30 |只看该作者 |倒序浏览

                                                随便写了个给自己用的,不懂python,乱写了一气,总算能运行
程序运行时检测当前目录下的 ip_list 文件
如果存在 就删除其中正在被使用的ip
如果不存在 就从键盘读取ip段 将检测结果写入ip_list文件
root权限下运行
               
               
                #!/usr/bin/python
import os, commands, sys
ip_file = 'ip_list'
def get_ip_list():
    e = os.path.exists(ip_file)
    L = []; List = []
    if not e:
        print 'Please input the ip section:'
        while True:
            ip = sys.stdin.readline()
            if ip == '': break
            L.append(ip)
        for ip in L:
            for i in range(0,256):
                List.append(ip[0:len(ip)-2]+('%d'%i))
    else:
        ip_list_file = open(ip_file, 'r')
        while True:
            ip = ip_list_file.readline()
            if ip == '': break
            List.append(ip[0:len(ip)-1])
        ip_list_file.close()
    return List;
        
def test_ip_list(ip_list):
    L = []
    for ip in ip_list:
        print 'Now is testint IP: ', ip,
        if test_one_ip(ip) == 'NOT_IN_USE':
            L.append(ip)
            print ' is ok'
        else: print ' is not ok'
    return L
def output_free_ip(free_ip_list):
    ip_list_file = open(ip_file, 'w')
    ip_list_file.truncate(0)
    for ip in free_ip_list:
        ip_list_file.write(ip+'\n')
        ip_list_file.flush()
    ip_list_file.close()
def test_one_ip(ip):
    cmd=''.join(['arping -c 1 ', ip,' | grep \"Unicast\"'])
    p = commands.getoutput(cmd)
    if p != '':
        return 'IN_USE'
    else:
        return 'NOT_IN_USE'
def main():
    output_free_ip(test_ip_list(get_ip_list()))
if __name__ == '__main__':
    main()
               
               
               
               
               
               

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/20816/showart_372529.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP