Jo-Philipp Wich ed8f726dab ipcalc.sh CIDR notation Hi,
the attached patch makes ipcalc.sh accept IP/Netmask combinations in
CIDR notation. Before you could only do:

# sh ipcalc.sh 192.168.0.0 255.255.255.0 1 10
IP=192.168.0.0
NETMASK=255.255.255.0
BROADCAST=192.168.0.255
NETWORK=192.168.0.0
PREFIX=24
START=192.168.0.1
END=192.168.0.11

with this patch you can also execute it with:

sh ipcalc.sh 192.168.0.0/24 1 10
IP=192.168.0.0
NETMASK=255.255.255.0
BROADCAST=192.168.0.255
NETWORK=192.168.0.0
PREFIX=24
START=192.168.0.1
END=192.168.0.11

The patch is based on #1260 [1], i just changed one line to calculate
the START end END ips right. I wonder why that never got included. If
there is no reason not to do i would like to ask you to commit that
patch, because its a functionality i (and probably others) miss quite often.

Btw, i also fixed 4 useless tabs, that might look a bit strange in the
patch.

Regards, Manuel

SVN-Revision: 26930
2011-05-18 09:50:06 +00:00
..
2011-03-17 07:23:28 +00:00
2011-03-07 12:59:19 +00:00
2011-05-18 09:50:06 +00:00
2011-04-20 02:56:23 +00:00
2009-06-13 16:47:22 +00:00
2010-04-23 11:27:29 +00:00
2010-11-22 11:27:47 +00:00
2011-03-01 15:41:28 +00:00
2009-12-19 22:19:42 +00:00
2011-03-14 07:34:08 +00:00
2010-09-30 10:48:37 +00:00
2010-09-30 10:48:37 +00:00
2010-10-27 21:24:06 +00:00
2011-03-11 08:22:47 +00:00