mirror of
https://github.com/gbudny93/RouterOS_Useful_Scripts.git
synced 2025-06-20 17:15:47 +02:00
22 lines
357 B
Text
22 lines
357 B
Text
# RouterOS Function
|
|
# Copyright (c) Grzegorz Budny
|
|
# Version 1.0
|
|
# Last update: 2/8/2020
|
|
# 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;
|