aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2019-07-19add script 'upload-backup'change-6Gravatar Christian Hesse4-2/+84
2019-07-19global-config: move config for email-backupGravatar Christian Hesse1-4/+5
Signed-off-by: Christian Hesse <mail@eworm.de>
2019-07-18email-backup: no more than one dot in file nameGravatar Christian Hesse1-1/+3
Looks like some providers do not allow more than one dot in attachment's file name to mitigate something like `holiday.png.exe`. Let's just replace dots with underscores. Fixes #2 Reported-by: @Kampfwurst
2019-07-18capsman-download-packages: do not require extra permissionGravatar Christian Hesse1-2/+0
The idea was to run capsman-download-packages from netwatch when upgrade.mikrotik.com is up. Instead run it from scheduler at startup, but add a delay: / system scheduler add name=capsman-download-packages \ on-event=":delay 2m; capsman-download-packages" start-time=startup
2019-07-18daily-psk-schedule: better matchingGravatar Christian Hesse1-1/+1
2019-07-18update-tunnelbroker: use $ParseKeyValueStoreGravatar Christian Hesse1-6/+4
2019-07-18check-certificates: use $ParseKeyValueStoreGravatar Christian Hesse1-11/+3
2019-07-18ipv6-update: use $ParseKeyValueStoreGravatar Christian Hesse1-7/+7
2019-07-17global-functions: add $ParseKeyValueStoreGravatar Christian Hesse1-0/+16
2019-07-16global-functions: $CharacterReplace: use same condition in loopGravatar Christian Hesse1-1/+1
2019-07-16global-functions: append system note in e-mail signatureGravatar Christian Hesse1-1/+6
2019-07-10update-gre-address: handle missing dynamic addressGravatar Christian Hesse1-2/+4
2019-07-09gps-track: remove workaroundrouteros-6.45rc42Gravatar Christian Hesse1-7/+0
2019-07-08capsman-rolling-upgrade: log with info, give identityGravatar Christian Hesse1-2/+3
2019-07-05lease-script: give hint about mis-usageGravatar Christian Hesse1-0/+8
2019-07-05sms-action: give hint about mis-usageGravatar Christian Hesse1-0/+5
2019-07-05ppp-on-up: give hint about mis-usageGravatar Christian Hesse1-1/+6
2019-07-05ipv6-update: give hint about mis-usageGravatar Christian Hesse1-0/+5
2019-07-01update-gre-address: get values into arraysGravatar Christian Hesse1-10/+7
2019-07-01update-gre-address: update for latest routerosrouteros-6.45Gravatar Christian Hesse1-3/+3
With RouterOS 6.45 "remote-peers" was renamed to "active-peers": *) ipsec - renamed "remote-peers" to "active-peers";
2019-07-01check-routeros-update: link a changelog that opens in browserGravatar Christian Hesse1-1/+1
The old link was delivered with MIME type 'application/octet-stream', browsers wanted to download it as file.
2019-06-26bridge-port-to-default: handle special value 'dhcp-client'...Gravatar Christian Hesse1-5/+17
... which disables the bridge port, but enables a dhcp client.
2019-06-25bridge-port-to-default: get bridge port values into arrayGravatar Christian Hesse1-8/+7
2019-06-25gps-track: fix the condition for workaroundGravatar Christian Hesse1-2/+2
A null byte is always matched in regexp...
2019-06-24add script 'certificate-renew-issued'Gravatar Christian Hesse1-0/+14
2019-06-14backup: split off cloud-backupchange-5Gravatar Christian Hesse5-44/+61
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.
2019-06-13daily-psk: add hint about device specific ruleGravatar Christian Hesse3-0/+3
I tricked myself several times... If a more device specific (or just earlier matching) rule exists the daily PSK is not applied!
2019-06-12mode-button-scheduler: beep for confirmationGravatar Christian Hesse1-1/+10
But be silent if silent-boot is enabled.
2019-05-24daily-psk.capsman: pick only first configurationGravatar Christian Hesse2-2/+2
2019-05-23check-lte-firmware-upgrade: drop literal 'notification'Gravatar Christian Hesse1-2/+2
2019-05-23check-routeros-update: drop literal 'notification'Gravatar Christian Hesse1-4/+4
2019-05-21check-certificates: get certificate values into arrayGravatar Christian Hesse1-43/+28
2019-05-09gps-track: make workaround conditionalGravatar Christian Hesse1-2/+7
This is fixed in 6.45rc42.
2019-05-09email-backup: make sure to act on first cloud backupGravatar Christian Hesse1-2/+2
2019-05-02check-certificates: do not try to renew locally issued certificatesGravatar Christian Hesse1-1/+1
2019-05-02check-certificates: give issuer info on locally issued certificatesGravatar Christian Hesse1-1/+2
Certificates issued locally do not have an 'issuer' property, but a 'ca' one. Looks like either of both is filled, so just concatenate.
2019-04-30global-functions: $CertificateAvailable: fetch by CommonNameGravatar Christian Hesse7-11/+15
Now that we have a proper $UrlEncode function... Fetch certificates by CommonName. Also remove the PEM after import.
2019-04-30global-functions: add $WaitForFile, wait for file on fetchGravatar Christian Hesse5-4/+35
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.
2019-04-16daily-psk-schedule: try to rotate ntp after five minutes uptimeGravatar Christian Hesse1-0/+3
2019-04-11check-certificates: make sure fingerprint is a stringGravatar Christian Hesse1-1/+1
This makes sure the condition below works for certificate templates, which do not have a fingerprint.
2019-04-11check-certificates: do not send notification for templatesGravatar Christian Hesse1-1/+1
2019-04-11check-certificates: always return a string in $GetIssuerCNGravatar Christian Hesse1-0/+1
2019-04-10check-certificates: add url encoding for certificate downloadGravatar Christian Hesse1-4/+6
2019-04-10check-certificates: try to fetch PEM and P12 fileGravatar Christian Hesse1-4/+10
2019-04-10check-certificates: use full path...Gravatar Christian Hesse1-3/+3
... to make sure syntax does not break if package is not installed.
2019-04-10check-certificates: just change certificates, no loopGravatar Christian Hesse1-12/+4
2019-04-09drop deprecated mode= for fetchGravatar Christian Hesse7-8/+8
2019-04-05sms-forward: group messages for same senderGravatar Christian Hesse1-15/+26
2019-04-05global-config: change duplicate word from daily pskGravatar Christian Hesse1-1/+1
2019-04-04ipv6-update: fix with prefix containing section(s) of zerosGravatar Christian Hesse1-3/+6
2019-04-03daily-psk: use the template systemGravatar Christian Hesse3-2/+8
2019-04-03always write warnings and errors to logGravatar Christian Hesse10-12/+25
2019-04-03script-updates: clear variable after useGravatar Christian Hesse1-0/+1
2019-04-03script-updates: send global-config changes notification just onceGravatar Christian Hesse2-2/+7
2019-04-02script-updates: add option to ignore global-config changeschange-4Gravatar Christian Hesse4-3/+6
2019-04-01check-certificates: support multiple passphraseschange-3Gravatar Christian Hesse4-4/+10
2019-04-01script-updates: add changelog for global configurationchange-2change-1Gravatar Christian Hesse2-1/+30
2019-04-01README: add hint on features for specific scriptsGravatar Christian Hesse1-0/+3
2019-04-01README: drop hint on old branchGravatar Christian Hesse1-3/+0
Now that release channel 'long-term' is at 6.43.x...
2019-03-29check-routeros-update: link to changelog in notificationGravatar Christian Hesse1-1/+2
2019-03-28check-certificates: show remaining timeGravatar Christian Hesse1-8/+16
2019-03-28global-functions: prevent infinite loopGravatar Christian Hesse1-2/+4
2019-03-25check-certificates: update certificates for ipsec identitiesGravatar Christian Hesse1-1/+12
2019-03-20global-functions: encode all non-alphanumeric charactersGravatar Christian Hesse1-2/+5
2019-03-16accesslist-duplicates: Read index from terminal inkeyGravatar Christian Hesse3-9/+9
2019-03-12link the presentation from MUM Europe 2019 in ViennaGravatar Christian Hesse1-0/+7
2019-03-06daily-psk: prepare for caps-manGravatar Michael Gisbers4-7/+190
Signed-off-by: Christian Hesse <mail@eworm.de>
2019-03-06daily-psk: encode ssid and pass in urlGravatar Michael Gisbers1-1/+3
Signed-off-by: Christian Hesse <mail@eworm.de>
2019-03-06check-certificates: split loop for certificate renew and warningGravatar Christian Hesse1-20/+27
This allows to have differnt time values.
2019-02-28global-functions: remove extra check in $DownloadPackagerouteros-6.44rc1Gravatar Christian Hesse1-7/+0
Should be fixed in RouterOS 6.44rc1 with changelog: *) fetch - improved file downloading to slow memory;
2019-02-22check-routeros-update: default in capital letterGravatar Christian Hesse1-1/+1
Also use square brackets as RouterOS does.
2019-02-21collect-wireless-mac: use $ScriptLockGravatar Christian Hesse3-0/+9
2019-02-21global-functions: add $ScriptLockGravatar Christian Hesse1-0/+10
2019-02-21check-routeros-update: allow interactive update from terminalGravatar Christian Hesse1-6/+19
2019-02-21global-functions: drop $Read, use :return directlyGravatar Christian Hesse4-14/+3
2019-02-19check-routeros-update: give board name and modelGravatar Christian Hesse1-1/+3
2019-02-19check-routeros-update: use new script 'packages-update'Gravatar Christian Hesse1-4/+5
2019-02-19add script 'packages-update'Gravatar Christian Hesse1-0/+29
2019-02-19check-routeros-update: run installation without-pagingGravatar Christian Hesse1-1/+1
2019-02-14capsman-download-packages: split off capsman-rolling-upgradeGravatar Christian Hesse2-8/+25
2019-02-14global-functions: detect failed package downloadsGravatar Christian Hesse1-1/+9
2019-02-13capsman-download-packages: use $CleanFilePathGravatar Christian Hesse1-4/+2
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-11gps-track: replace http-content-type with http-header-fieldrouteros-6.44beta75-3Gravatar Christian Hesse1-1/+1
This changed in 6.44beta75.
2019-02-11unattended-lte-firmware-upgrade: remove workaroundrouteros-6.44beta75-2Gravatar Christian Hesse1-2/+0
This is fixed in 6.44beta75.
2019-02-11check-lte-firmware-upgrade: remove workaroundrouteros-6.44beta75-1Gravatar Christian Hesse1-2/+0
This is fixed in 6.44beta75.
2019-02-11unattended-lte-firmware-upgrade: add missing colonGravatar Christian Hesse1-1/+1
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-08ipv6-update: simplify array accessGravatar Christian Hesse1-2/+2
2019-02-08dhcp-to-dns: rework, fix cleanup with mac-address and moreGravatar Christian Hesse1-37/+29
2019-02-08dhcp-to-dns: use mac-address if hostname is emptyGravatar Christian Hesse1-0/+3
2019-02-08dhcp-to-dns: use $CharacterReplaceGravatar Christian Hesse1-6/+3
2019-02-08global-functions: add $CharacterReplaceGravatar Christian Hesse1-0/+15
2019-02-07capsman-download-packages: upgrade CAPs one after another with delayGravatar Christian Hesse1-2/+9
2019-01-29gps-track: strip trailing binary zerosGravatar Christian Hesse1-0/+2
2019-01-29gps-track: log about coordinate-formatGravatar Christian Hesse1-1/+2
2019-01-18check-routeros-update: run email-backup on auto-updateGravatar Christian Hesse1-0/+3
2019-01-15email-backup: silence unwanted outputGravatar Christian Hesse1-1/+1