mirror of
				https://github.com/eworm-de/routeros-scripts.git
				synced 2024-05-11 05:55:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			41 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# News, changes and migration by RouterOS Scripts
 | 
						|
# Copyright (c) 2019-2023 Christian Hesse <mail@eworm.de>
 | 
						|
# https://git.eworm.de/cgit/routeros-scripts/about/COPYING.md
 | 
						|
 | 
						|
:global IfThenElse;
 | 
						|
:global RequiredRouterOS;
 | 
						|
 | 
						|
# News, changes and migration up to change 95:
 | 
						|
# https://git.eworm.de/cgit/routeros-scripts/plain/global-config.changes?h=change-95
 | 
						|
 | 
						|
# Changes for global-config to be added to notification on script updates
 | 
						|
:global GlobalConfigChanges {
 | 
						|
  96="Added support for notes in 'netwatch-notify', these are included verbatim into the notification.";
 | 
						|
  97="Modified 'dhcp-to-dns' to always add A records for names with mac address, and optionally add CNAME records if the host name is available.";
 | 
						|
  98="Extended 'check-certificates' to download new certificate by SubjectAltNames if download by CommonName fails.";
 | 
						|
  99="Modified 'dhcp-to-dns', which dropped global configuration. Settings moved to dhcp server's network definitions.";
 | 
						|
  100="The script 'ssh-keys-import' became a module 'mod/ssh-keys-import' with enhanced functionality.";
 | 
						|
  101="Introduced new script 'fw-addr-lists' to download, import and update firewall address-lists.";
 | 
						|
  102="Modified 'hotspot-to-wpa' to support non-local (radius) users.";
 | 
						|
  103="Dropped hard-coded name and timeout from 'hotspot-to-wpa-cleanup', instead a comment is required for dhcp server now.";
 | 
						|
  104="All relevant scripts were ported to new wifiwave2 and are available for AX devices now!";
 | 
						|
  105="Extended 'check-routeros-update' to support automatic update from specific neighbor(s).";
 | 
						|
  106="Modified 'telegram-chat' to make it act on message replies, without activation. Also made it answer a single question mark with a short notice.";
 | 
						|
  107="Dropped support for non-fixed width font in Telegram notifications.";
 | 
						|
  108="Enhanced 'log-forward' to list log messages with colorful bullets to indicate severity.";
 | 
						|
  109="Added support to send notifications via Ntfy (ntfy.sh).";
 | 
						|
  110="Dropped support for loading scripts from local storage.";
 | 
						|
  111="Modified 'dhcp-to-dns' to allow multiple records for one mac address.";
 | 
						|
  112="Enhanced 'mod/ssh-keys-import' to record the fingerprint of keys.";
 | 
						|
  113="Added helper functions for easier setup to Matrix notification module.";
 | 
						|
  114="All relevant scripts were ported to new wifi package for RouterOS 7.13 and later. Migration is complex and thus not done automatically!";
 | 
						|
};
 | 
						|
 | 
						|
# Migration steps to be applied on script updates
 | 
						|
:global GlobalConfigMigration {
 | 
						|
  97=":local Rec [ /ip/dns/static/find where comment~\"^managed by dhcp-to-dns for \" ]; :if ([ :len \$Rec ] > 0) do={ /ip/dns/static/remove \$Rec; /system/script/run dhcp-to-dns; }";
 | 
						|
  100=":global ScriptInstallUpdate; :if ([ :len [ /system/script/find where name=\"ssh-keys-import\" source~\"^#!rsc by RouterOS\\n\" ] ] > 0) do={ /system/script/set name=\"mod/ssh-keys-import\" ssh-keys-import; \$ScriptInstallUpdate; }";
 | 
						|
  104=":global CharacterReplace; :global ScriptInstallUpdate; :foreach Script in={ \"capsman-download-packages\"; \"capsman-rolling-upgrade\"; \"hotspot-to-wpa\"; \"hotspot-to-wpa-cleanup\" } do={ /system/script/set name=(\$Script . \".capsman\") [ find where name=\$Script ]; :foreach Scheduler in=[ /system/scheduler/find where on-event~(\$Script . \"([^-.]|\\\$)\") ] do={ /system/scheduler/set \$Scheduler on-event=[ \$CharacterReplace [ get \$Scheduler on-event ] \$Script (\$Script . \".capsman\") ]; }; }; /ip/hotspot/user/profile/set on-login=\"hotspot-to-wpa.capsman\" [ find where on-login=\"hotspot-to-wpa\" ]; \$ScriptInstallUpdate;";
 | 
						|
  111=":local Rec [ /ip/dns/static/find where comment~\"^managed by dhcp-to-dns for \" ]; :if ([ :len \$Rec ] > 0) do={ /ip/dns/static/remove \$Rec; /system/script/run dhcp-to-dns; }";
 | 
						|
};
 |