aboutsummaryrefslogtreecommitdiffstats
path: root/global-functions
AgeCommit message (Expand)AuthorFilesLines
2019-06-14backup: split off cloud-backup...Currently backup to MikroTik cloud is pretty unreliable and script can not catch errors at runtime. Looks like this does not change any time soon (Ticket#2019052022003204). So let's just split off the cloud backup to make sure email backup works as expected. change-5Gravatar Christian Hesse1-1/+1
2019-04-30global-functions: $CertificateAvailable: fetch by CommonName...Now that we have a proper $UrlEncode function... Fetch certificates by CommonName. Also remove the PEM after import. Gravatar Christian Hesse1-8/+11
2019-04-30global-functions: add $WaitForFile, wait for file on fetch...The fetch command is asynchronous, the file is not guaranteed to be available when command terminates. I opened an issue at Mikrotik support (Ticket#2019041722004999), their answer: > You should perform a check in a loop. > :delay until file exist > > That can happen also with any configuration not just files. So add a function to wait for a file with given name. I have not seen this with other configuration, though. Gravatar Christian Hesse1-0/+22
2019-04-09drop deprecated mode= for fetchGravatar Christian Hesse1-2/+2
2019-04-03script-updates: send global-config changes notification just onceGravatar Christian Hesse1-0/+1
2019-04-02script-updates: add option to ignore global-config changeschange-4Gravatar Christian Hesse1-1/+1
2019-04-01check-certificates: support multiple passphraseschange-3Gravatar Christian Hesse1-1/+1
2019-03-28global-functions: prevent infinite loopGravatar Christian Hesse1-2/+4
2019-03-20global-functions: encode all non-alphanumeric charactersGravatar Christian Hesse1-2/+5
2019-02-28global-functions: remove extra check in $DownloadPackage...Should be fixed in RouterOS 6.44rc1 with changelog: *) fetch - improved file downloading to slow memory; routeros-6.44rc1Gravatar Christian Hesse1-7/+0
2019-02-21global-functions: add $ScriptLockGravatar Christian Hesse1-0/+10
2019-02-21global-functions: drop $Read, use :return directlyGravatar Christian Hesse1-5/+0
2019-02-14global-functions: detect failed package downloadsGravatar Christian Hesse1-1/+9
2019-02-13global-functions: introduce and use $CleanFilePathGravatar Christian Hesse1-4/+21
2019-02-13global-functions: remove file on failed downloadGravatar Christian Hesse1-3/+9
2019-02-11global-functions: add missing colonGravatar Christian Hesse1-1/+1
2019-02-08global-functions: prevent infinite loop in $CharacterReplaceGravatar Christian Hesse1-0/+4
2019-02-08global-functions: add $CharacterReplaceGravatar Christian Hesse1-0/+15
2019-01-04global: variable names are CamelCase... ___ _ ___ __ / _ )(_)__ _ / _/__ _/ /_ / _ / / _ `/ / _/ _ `/ __/ /____/_/\_, / /_/ \_,_/\__/ _ __ /___/ _ __ | | / /___ __________ (_)___ ____ _/ / | | /| / / __ `/ ___/ __ \/ / __ \/ __ `/ / | |/ |/ / /_/ / / / / / / / / / / /_/ /_/ |__/|__/\__,_/_/ /_/ /_/_/_/ /_/\__, (_) /____/ RouterOS has some odd behavior when it comes to variable names. Let's have a look at the interfaces: [admin@MikroTik] > / interface print where name=en1 Flags: D - dynamic, X - disabled, R - running, S - slave # NAME TYPE ACTUAL-MTU L2MTU 0 RS en1 ether 1500 1598 That looks ok. Now we use a script: { :local interface "en1"; / interface print where name=$interface; } And the result... [admin@MikroTik] > { :local interface "en1"; {... / interface print where name=$interface; } Flags: D - dynamic, X - disabled, R - running, S - slave # NAME TYPE ACTUAL-MTU L2MTU 0 RS en1 ether 1500 1598 ... still looks ok. We make a little modification to the script: { :local name "en1"; / interface print where name=$name; } And the result: [admin@MikroTik] > { :local name "en1"; {... / interface print where name=$name; } Flags: D - dynamic, X - disabled, R - running, S - slave # NAME TYPE ACTUAL-MTU L2MTU 0 RS en1 ether 1500 1598 1 S en2 ether 1500 1598 2 S en3 ether 1500 1598 3 S en4 ether 1500 1598 4 S en5 ether 1500 1598 5 R br-local bridge 1500 1598 Ups! The filter has no effect! That happens whenever the variable name ($name) matches the property name (name=). And another modification: { :local type "en1"; / interface print where name=$type; } And the result: [admin@MikroTik] > { :local type "en1"; {... / interface print where name=$type; } Flags: D - dynamic, X - disabled, R - running, S - slave # NAME TYPE ACTUAL-MTU L2MTU Ups! Nothing? Even if the variable name ($type) matches whatever property name (type=) things go wrong. The answer from MikroTik support (in Ticket#2019010222000454): > This is how scripting works in RouterOS and we will not fix it. To get around this we use variable names in CamelCase. Let's hope Mikrotik never ever introduces property names in CamelCase... *fingers crossed* Gravatar Christian Hesse1-58/+58
2019-01-03global-{config,functions}: move variables, make independentGravatar Christian Hesse1-1/+6
2019-01-03script-updates: add configuration versioningGravatar Christian Hesse1-0/+3
2019-01-02update copyright for 2019Gravatar Christian Hesse1-1/+1
2018-12-28global-functions: properly define global functionsGravatar Christian Hesse1-0/+2
2018-12-28global-functions: update comment in $SendNotificationGravatar Christian Hesse1-1/+1
2018-12-28global-functions: add $DownloadPackage...... and make script 'capsman-download-packages' use it. Gravatar Christian Hesse1-0/+25
2018-12-27global-functions: add $GetMacVendorGravatar Christian Hesse1-0/+15
2018-12-20global-functions: make $CertificateAvailable work on CommonName...This should prevent endless certificate switching for Let's Encrypt cross-signed intermediate certificates. Gravatar Christian Hesse1-7/+8
2018-12-12remove extra dollar signGravatar Christian Hesse1-2/+2
2018-11-28global-functions: add identity tag in $SendNotification...... and send subject in telegram message. Gravatar Christian Hesse1-2/+4
2018-11-09global-functions: use 'print count-only'Gravatar Christian Hesse1-1/+1
2018-11-09global-functions: add function to read user inputGravatar Christian Hesse1-0/+5
2018-10-16global-functions: import certificates if required...Signed-off-by: Christian Hesse <mail@eworm.de> Gravatar Christian Hesse1-3/+24
2018-10-15global-functions: fix missing colonGravatar Christian Hesse1-2/+2
2018-10-12global-functions: make sure parameters are stringsGravatar Christian Hesse1-6/+7
2018-10-10daily-psk: move function GeneratePSK from global-functionsGravatar Christian Hesse1-42/+0
2018-10-09global-functions: add UrlEncode and use in SendNotificationGravatar Christian Hesse1-1/+25
2018-10-09global-functions: add function to notify via e-mail and telegramGravatar Christian Hesse1-0/+35
2018-10-09global-functions: move daily psk secrets to global-configGravatar Christian Hesse1-15/+4
2018-10-09make GeneratePSK a global functionGravatar Christian Hesse1-0/+52
2018-10-09add global-functionsGravatar Christian Hesse1-0/+6