2021-09-17 14:23:53 +00:00
|
|
|
#!rsc by RouterOS
|
2021-11-15 19:22:56 +00:00
|
|
|
# RouterOS script: mod/ipcalc
|
2022-01-01 20:38:15 +00:00
|
|
|
# Copyright (c) 2020-2022 Christian Hesse <mail@eworm.de>
|
2021-09-17 14:23:53 +00:00
|
|
|
# https://git.eworm.de/cgit/routeros-scripts/about/COPYING.md
|
|
|
|
|
|
|
|
:global IPCalc;
|
2021-12-09 19:55:15 +00:00
|
|
|
:global IPCalcReturn;
|
2021-09-17 14:23:53 +00:00
|
|
|
|
2021-12-09 19:55:15 +00:00
|
|
|
# print netmask, network, min host, max host and broadcast
|
2021-09-17 14:23:53 +00:00
|
|
|
:set IPCalc do={
|
|
|
|
:local Input [ :tostr $1 ];
|
2021-12-09 19:55:15 +00:00
|
|
|
|
|
|
|
:global IPCalcReturn;
|
|
|
|
|
|
|
|
:local Values [ $IPCalcReturn $1 ];
|
|
|
|
|
|
|
|
:put ( \
|
|
|
|
"Address: " . $Values->"address" . "\n\r" . \
|
|
|
|
"Netmask: " . $Values->"netmask" . "\n\r" . \
|
|
|
|
"Network: " . $Values->"network" . "\n\r" . \
|
|
|
|
"HostMin: " . $Values->"hostmin" . "\n\r" . \
|
|
|
|
"HostMax: " . $Values->"hostmax" . "\n\r" . \
|
|
|
|
"Broadcast: " . $Values->"broadcast");
|
|
|
|
}
|
|
|
|
|
|
|
|
# calculate and return netmask, network, min host, max host and broadcast
|
|
|
|
:set IPCalcReturn do={
|
|
|
|
:local Input [ :tostr $1 ];
|
2021-09-17 14:23:53 +00:00
|
|
|
:local Address [ :toip [ :pick $Input 0 [ :find $Input "/" ] ] ];
|
|
|
|
:local Bits [ :tonum [ :pick $Input ([ :find $Input "/" ] + 1) [ :len $Input ] ] ];
|
|
|
|
:local Mask ((255.255.255.255 << (32 - $Bits)) & 255.255.255.255);
|
|
|
|
|
|
|
|
:local Return {
|
|
|
|
"address"=$Address;
|
|
|
|
"netmask"=$Mask;
|
|
|
|
"networkaddress"=($Address & $Mask);
|
|
|
|
"networkbits"=$Bits;
|
|
|
|
"network"=(($Address & $Mask) . "/" . $Bits);
|
|
|
|
"hostmin"=(($Address & $Mask) | 0.0.0.1);
|
|
|
|
"hostmax"=(($Address | ~$Mask) ^ 0.0.0.1);
|
|
|
|
"broadcast"=($Address | ~$Mask);
|
|
|
|
}
|
|
|
|
|
|
|
|
:return $Return;
|
|
|
|
}
|
2021-12-09 19:55:15 +00:00
|
|
|
|