mirror of
https://github.com/gbudny93/RouterOS_Useful_Scripts.git
synced 2025-06-21 09:35:43 +02:00
21 lines
318 B
Text
21 lines
318 B
Text
|
# RouterOS Function
|
||
|
# Copyright (c) Grzegorz Budny
|
||
|
# ARP/RARP Function (shortange syntax)
|
||
|
|
||
|
:global R_ARP do={
|
||
|
|
||
|
:if ($mode="ARP") do={
|
||
|
|
||
|
:return [/ip arp print where mac-address=$ip];
|
||
|
|
||
|
}
|
||
|
|
||
|
:if ($mode="RARP") do={
|
||
|
|
||
|
:return [/ip arp print where mac-address=$mac];
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
$R_ARP mode=mode;
|