ipcalc.sh

ipcalc.sh

 

复制代码
root@Anovo:~# 
root@Anovo:~# ipcalc.sh 192.168.0.1 24
IP=192.168.0.1
NETMASK=255.255.255.0
BROADCAST=192.168.0.255
NETWORK=192.168.0.0
PREFIX=24
root@Anovo:~# 
root@Anovo:~# ipcalc.sh 192.168.0.1 255.255.255.0 
IP=192.168.0.1
NETMASK=255.255.255.0
BROADCAST=192.168.0.255
NETWORK=192.168.0.0
PREFIX=24
root@Anovo:~# 
root@Anovo:~# ipcalc.sh 192.168.0.1 24 2 12
IP=192.168.0.1
NETMASK=255.255.255.0
BROADCAST=192.168.0.255
NETWORK=192.168.0.0
PREFIX=24
START=192.168.0.2
END=192.168.0.14
root@Anovo:~# 
复制代码

 

复制代码
#!/bin/sh

awk -f - $* <<EOF
function bitcount(c) {
    c=and(rshift(c, 1),0x55555555)+and(c,0x55555555)
    c=and(rshift(c, 2),0x33333333)+and(c,0x33333333)
    c=and(rshift(c, 4),0x0f0f0f0f)+and(c,0x0f0f0f0f)
    c=and(rshift(c, 8),0x00ff00ff)+and(c,0x00ff00ff)
    c=and(rshift(c,16),0x0000ffff)+and(c,0x0000ffff)
    return c
}

function ip2int(ip) {
    for (ret=0,n=split(ip,a,"\."),x=1;x<=n;x++) ret=or(lshift(ret,8),a[x])
    return ret
}

function int2ip(ip,ret,x) {
    ret=and(ip,255)
    ip=rshift(ip,8)
    for(;x<3;ret=and(ip,255)"."ret,ip=rshift(ip,8),x++);
    return ret
}

function compl32(v) {
    ret=xor(v, 0xffffffff)
    return ret
}

BEGIN {
    slpos=index(ARGV[1],"/")
    if (slpos == 0) {
        ipaddr=ip2int(ARGV[1])
        dotpos=index(ARGV[2],".")
        if (dotpos == 0)
            netmask=compl32(2**(32-int(ARGV[2]))-1)
        else
            netmask=ip2int(ARGV[2])
    } else {
        ipaddr=ip2int(substr(ARGV[1],0,slpos-1))
        netmask=compl32(2**(32-int(substr(ARGV[1],slpos+1)))-1)
        ARGV[4]=ARGV[3]
        ARGV[3]=ARGV[2]
    }

    network=and(ipaddr,netmask)
    broadcast=or(network,compl32(netmask))

    start=or(network,and(ip2int(ARGV[3]),compl32(netmask)))
    limit=network+1
    if (start<limit) start=limit

    end=start+ARGV[4]
    limit=or(network,compl32(netmask))-1
    if (end>limit) end=limit

    print "IP="int2ip(ipaddr)
    print "NETMASK="int2ip(netmask)
    print "BROADCAST="int2ip(broadcast)
    print "NETWORK="int2ip(network)
    print "PREFIX="32-bitcount(compl32(netmask))

    # range calculations:
    # ipcalc <ip> <netmask> <start> <num>

    if (ARGC > 3) {
        print "START="int2ip(start)
        print "END="int2ip(end)
    }
}
EOF
复制代码

 

========= End

 

posted @   lsgxeva  阅读(82)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· SQL Server 2025 AI相关能力初探
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
历史上的今天:
2019-07-09 薄荷油为什么可以使人感觉凉爽
2019-07-09 Lua的栈及基本栈操作
2019-07-09 lua堆栈
2019-07-09 Lua虚拟机中的数据结构与栈
2019-07-09 Zircon
2019-07-09 Linux与Windows的设备驱动模型对比
点击右上角即可分享
微信分享提示