mirror of
https://git.eworm.de/cgit/routeros-scripts
synced 2025-08-14 06:58:50 +02:00
add doc/mod/ipcalc
This commit is contained in:
parent
002315035c
commit
e9953c3612
4 changed files with 54 additions and 0 deletions
|
@ -225,6 +225,7 @@ Available modules
|
|||
* [Manage ports in bridge](doc/mod/bridge-port-to.md)
|
||||
* [Manage VLANs on bridge ports](doc/mod/bridge-port-vlan.md)
|
||||
* [Inspect variables](doc/mod/inspectvar.md)
|
||||
* [IP address calculation](doc/mod/ipcalc.md)
|
||||
* [Send notifications via Matrix](doc/mod/notification-matrix.md)
|
||||
* [Send notifications via Telegram](doc/mod/notification-telegram.md)
|
||||
|
||||
|
|
BIN
doc/mod/ipcalc.d/ipcalc.avif
Normal file
BIN
doc/mod/ipcalc.d/ipcalc.avif
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.7 KiB |
BIN
doc/mod/ipcalc.d/ipcalcreturn.avif
Normal file
BIN
doc/mod/ipcalc.d/ipcalcreturn.avif
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.3 KiB |
53
doc/mod/ipcalc.md
Normal file
53
doc/mod/ipcalc.md
Normal file
|
@ -0,0 +1,53 @@
|
|||
IP address calculation
|
||||
======================
|
||||
|
||||
[◀ Go back to main README](../../README.md)
|
||||
|
||||
> ℹ️️ **Info**: This module can not be used on its own but requires the base
|
||||
> installation. See [main README](../../README.md) for details.
|
||||
|
||||
Description
|
||||
-----------
|
||||
|
||||
This module adds functions for IP address calculation.
|
||||
|
||||
Requirements and installation
|
||||
-----------------------------
|
||||
|
||||
Just install the module:
|
||||
|
||||
$ScriptInstallUpdate mod/ipcalc;
|
||||
|
||||
Usage and invocation
|
||||
--------------------
|
||||
|
||||
### IPCalc
|
||||
|
||||
The function `$IPCalc` prints information to terminal, including:
|
||||
|
||||
* address
|
||||
* netmask
|
||||
* network in CIDR notation
|
||||
* minimum host address
|
||||
* maximum host address
|
||||
* broadcast address
|
||||
|
||||
It expects an IP address in CIDR notation as argument.
|
||||
|
||||
$IPCalc 192.168.88.1/24;
|
||||
|
||||

|
||||
|
||||
### IPCalcReturn
|
||||
|
||||
The function `$IPCalcReturn` expects an IP address in CIDR notation as
|
||||
argument as well. But it does not print to terminal, instead it returns
|
||||
the information in a named array.
|
||||
|
||||
:put ([ $IPCalcReturn 192.168.88.1/24 ]->"broadcast");
|
||||
|
||||

|
||||
|
||||
---
|
||||
[◀ Go back to main README](../../README.md)
|
||||
[▲ Go back to top](#top)
|
Loading…
Add table
Add a link
Reference in a new issue