summaryrefslogtreecommitdiff
path: root/openwrt/package/base-files/default/bin/ipcalc
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-04-05 02:09:22 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-04-05 02:09:22 +0000
commitee27e41337497f69d27cd689fe19ba2c89e95f79 (patch)
tree302d5239acd2ed8e10f5310599a381bb22f193e0 /openwrt/package/base-files/default/bin/ipcalc
parente4b534024d6dc903ef48628dda1203d0d7c5bfcb (diff)
downloadmtk-20170518-ee27e41337497f69d27cd689fe19ba2c89e95f79.zip
mtk-20170518-ee27e41337497f69d27cd689fe19ba2c89e95f79.tar.gz
mtk-20170518-ee27e41337497f69d27cd689fe19ba2c89e95f79.tar.bz2
large init script cleanup and merge of whiterussian changes, new dnsmasq config handling
SVN-Revision: 3588
Diffstat (limited to 'openwrt/package/base-files/default/bin/ipcalc')
-rwxr-xr-xopenwrt/package/base-files/default/bin/ipcalc32
1 files changed, 32 insertions, 0 deletions
diff --git a/openwrt/package/base-files/default/bin/ipcalc b/openwrt/package/base-files/default/bin/ipcalc
new file mode 100755
index 0000000..318980e
--- /dev/null
+++ b/openwrt/package/base-files/default/bin/ipcalc
@@ -0,0 +1,32 @@
+#!/bin/sh
+
+awk -f /usr/lib/common.awk -f - $* <<EOF
+BEGIN {
+ ipaddr=ip2int(ARGV[1])
+ netmask=ip2int(ARGV[2])
+ network=and(ipaddr,netmask)
+ broadcast=or(network,compl(netmask))
+
+ start=or(network,and(ip2int(ARGV[3]),compl(netmask)))
+ limit=network+1
+ if (start<limit) start=limit
+
+ end=start+ARGV[4]
+ limit=or(network,compl(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(compl(netmask))
+
+ # range calculations:
+ # ipcalc <ip> <netmask> <start> <num>
+
+ if (ARGC > 3) {
+ print "START="int2ip(start)
+ print "END="int2ip(end)
+ }
+}
+EOF