aboutsummaryrefslogblamecommitdiffstats
path: root/dhcp-lease-comment.template
blob: 4007765b8c8524efb9ff4fb97045f8a74434c1ff (plain) (tree)
1
2
3
4
5
6
7
8
9
                 
                                            
                                                         
                                                             
                                                              
                                                                            
 
                                                              
                             
 
                     
                                                                                     
                                                        
                    
                                                                                                    
                                                                     
   
                                                                             
                                                                                                                  
                                                          
   
#!rsc by RouterOS
# RouterOS script: dhcp-lease-comment%TEMPL%
# Copyright (c) 2013-2021 Christian Hesse <mail@eworm.de>
# https://git.eworm.de/cgit/routeros-scripts/about/COPYING.md
#
# update dhcp-server lease comment with infos from access-list
# https://git.eworm.de/cgit/routeros-scripts/about/doc/dhcp-lease-comment.md
#
# !! This is just a template! Replace '%PATH%' with 'caps-man'
# !! or 'interface wireless'!

:global LogPrintExit;

: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 ([ / %PATH% access-list find where mac-address=($LeaseVal->"mac-address") ]->0);
  :if ([ :len $AccessList ] > 0) do={
    :set NewComment [ / %PATH% access-list get $AccessList comment ];
  }
  :if ([ :len $NewComment ] != 0 && $LeaseVal->"comment" != $NewComment) do={
    $LogPrintExit info ("Updating comment for DHCP lease " . $LeaseVal->"mac-address" . ": " . $NewComment) false;
    / ip dhcp-server lease set comment=$NewComment $Lease;
  }
}