diff options
author | Christian Hesse <mail@eworm.de> | 2023-08-09 18:56:29 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2023-08-15 11:26:18 +0200 |
commit | 2c3e077b8ec984f501156f757c72a57703f846b4 (patch) | |
tree | 9cb609e7515b68256a37a6efe06b8373ca6eae8f /dhcp-lease-comment.wifiwave2.rsc | |
parent | c37739c2f6b050c965e0fa734309e1ecbed90add (diff) | |
parent | 92aca1aac05ba943fa41c9c6640265991a906e30 (diff) |
Merge branch 'wifiwave2' into next
Diffstat (limited to 'dhcp-lease-comment.wifiwave2.rsc')
-rw-r--r-- | dhcp-lease-comment.wifiwave2.rsc | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/dhcp-lease-comment.wifiwave2.rsc b/dhcp-lease-comment.wifiwave2.rsc new file mode 100644 index 0000000..200c53b --- /dev/null +++ b/dhcp-lease-comment.wifiwave2.rsc @@ -0,0 +1,33 @@ +#!rsc by RouterOS +# RouterOS script: dhcp-lease-comment.wifiwave2 +# Copyright (c) 2013-2023 Christian Hesse <mail@eworm.de> +# https://git.eworm.de/cgit/routeros-scripts/about/COPYING.md +# +# provides: lease-script, order=60 +# +# update dhcp-server lease comment with infos from access-list +# https://git.eworm.de/cgit/routeros-scripts/about/doc/dhcp-lease-comment.md +# +# !! Do not edit this file, it is generated from template! + +:local 0 "dhcp-lease-comment.wifiwave2"; +:global GlobalFunctionsReady; +:while ($GlobalFunctionsReady != true) do={ :delay 500ms; } + +:global LogPrintExit2; +:global ScriptLock; + +$ScriptLock $0; + +:foreach Lease in=[ /ip/dhcp-server/lease/find where dynamic=yes status=bound ] do={ + :local LeaseVal [ /ip/dhcp-server/lease/get $Lease ]; + :local NewComment; + :local AccessList ([ /interface/wifiwave2/access-list/find where mac-address=($LeaseVal->"active-mac-address") ]->0); + :if ([ :len $AccessList ] > 0) do={ + :set NewComment [ /interface/wifiwave2/access-list/get $AccessList comment ]; + } + :if ([ :len $NewComment ] != 0 && $LeaseVal->"comment" != $NewComment) do={ + $LogPrintExit2 info $0 ("Updating comment for DHCP lease " . $LeaseVal->"active-mac-address" . ": " . $NewComment) false; + /ip/dhcp-server/lease/set comment=$NewComment $Lease; + } +} |