gbudny93.RouterOS_Useful_Sc.../RouterOS_R_ARP.rsc

21 lines
318 B
Text
Raw Normal View History

2019-11-24 17:29:37 +01:00
# 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;