1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-16 13:27:33 +03:00
openwrt-xburst/package/base-files/files
jow 5d2766e7eb [PATCH] 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


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26930 3c298f89-4303-0410-b956-a3cf2f4a3e73
2011-05-18 09:50:06 +00:00
..
bin [PATCH] ipcalc.sh CIDR notation 2011-05-18 09:50:06 +00:00
etc [package] base-files: retrigger usb coldplug after module loading, solves usb_modeswitch on boot and possibly others (#9352) 2011-05-08 10:25:58 +00:00
lib base-files: bridge config, avoid having a random ipv6 ll address 2011-04-03 01:23:45 +00:00
rom rename default/ to files/ 2006-11-22 23:30:57 +00:00
sbin [package] adds a --help option to /sbin/wifi 2010-12-05 11:22:56 +00:00
usr/share/udhcpc base-files: /usr/lib/common.awk is only used by /bin/ipcalc.sh, move the code there 2011-02-13 01:44:57 +00:00