Commit graph

93 commits

Author SHA1 Message Date
Christian Hesse f1236065ad fix typo: botton -> button 2020-08-13 13:07:40 +02:00
Christian Hesse 6bce0a4b6a add 'log-forward', drop 'early-errors' 2020-07-15 12:41:29 +02:00
Christian Hesse e19f40f1eb README: be more explicit on file name 2020-07-14 17:02:46 +02:00
Christian Hesse f4d6e07dbb global-config: dropped $ScriptUpdatesIgnore, use ignore flag in comment 2020-07-14 17:02:41 +02:00
Christian Hesse 71ad56aacc explicitly name the license
Copyright (C) 2013-2020 Christian Hesse <mail@eworm.de>

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

https://www.gnu.org/licenses/#GPL
https://www.gnu.org/licenses/gpl.html
https://www.gnu.org/licenses/gpl.md
2020-06-19 22:17:42 +02:00
Christian Hesse 5666006527 README: warn about deprecated commands in presentation 2020-05-04 14:14:42 +02:00
Christian Hesse 07603f1c7b README: expect recent RouterOS
RouterOS 6.43 can be considered obsolete these days.
2020-05-04 14:08:49 +02:00
Christian Hesse c8770efd72 add script 'early-erros' 2020-04-19 00:11:01 +02:00
Christian Hesse 4d0b3b0780 add links GitHub batches 2020-03-30 16:30:25 +02:00
Christian Hesse cc69e5ada7 add GitHub batches from shields.io
https://shields.io/category/social
2020-03-30 16:18:47 +02:00
Christian Hesse c6389f5d2c README: add section 'Available Scripts' and link documentation 2020-03-27 22:12:49 +01:00
Christian Hesse 0d6bdd4eb1 README: unify markup 2020-03-26 07:53:44 +01:00
Christian Hesse 5f46ef7635 completely replace script-updates with $ScriptInstallUpdate 2020-03-23 14:01:20 +01:00
Christian Hesse f16056ef8b convert initial commands from script to page
This is not intended for installation...
2020-03-20 12:51:28 +01:00
Christian Hesse 1e72f03e5e README: update instructions to use $ScriptInstallUpdate 2020-01-29 22:14:56 +01:00
Christian Hesse c93c6e1934 README: fix typo and wording 2019-11-05 00:28:30 +01:00
Christian Hesse 1cee36a911 introduce global-config-overlay 2019-09-12 21:29:41 +02:00
Christian Hesse c7c5da2eca README: add just one scheduler for global scripts 2019-09-11 12:36:47 +02:00
Christian Hesse c7563d4ffd add info about past contributions 2019-08-30 13:43:35 +02:00
Christian Hesse 914e535eea README: add contribute section, including donate option 2019-08-30 13:43:35 +02:00
Christian Hesse 05f2d03ad9 use shorter url for my repository 2019-08-30 13:43:21 +02:00
Christian Hesse e479f3b01a README: add valid script to scheduler 2019-08-30 11:03:43 +02:00
Christian Hesse 42834e9de1 global-functions: $CertificateAvailable: fetch by CommonName
Now that we have a proper $UrlEncode function... Fetch certificates
by CommonName.

Also remove the PEM after import.
2019-04-30 16:52:53 +02:00
Christian Hesse 6388a97f31 README: add hint on features for specific scripts 2019-04-01 10:42:57 +02:00
Christian Hesse 53b3d71f57 README: drop hint on old branch
Now that release channel 'long-term' is at 6.43.x...
2019-04-01 10:42:57 +02:00
Christian Hesse 39d1027d69 link the presentation from MUM Europe 2019 in Vienna 2019-03-12 21:00:39 +01:00
Christian Hesse 870f00bb36 global: 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*
2019-01-04 12:35:34 +01:00
Christian Hesse 7d06a7e8c2 global-{config,functions}: move variables, make independent 2019-01-03 16:09:03 +01:00
Christian Hesse 99e92340bc README: add link to scroll up 2019-01-02 21:04:54 +01:00
Christian Hesse f4673928ef global-functions: make $CertificateAvailable work on CommonName
This should prevent endless certificate switching for Let's Encrypt
cross-signed intermediate certificates.
2018-12-20 22:21:00 +01:00
Christian Hesse abdc9b0cbd README: add Root CA certificate DST Root CA X3
This is used by Let's Encrypt to cross-sign.
2018-12-20 17:25:23 +01:00
Christian Hesse be68c739a8 README: add initial commands for copy and paste 2018-12-18 21:47:47 +01:00
Christian Hesse 5a6650b40e README: do not print the certificates but count them 2018-10-16 16:31:59 +02:00
Christian Hesse f111669673 README: download certificates from repository 2018-10-16 16:31:57 +02:00
Christian Hesse 4e02260ad7 README: now that we need three scripts... download and add in loop 2018-10-09 21:36:14 +02:00
Christian Hesse 9c3f3b9f20 add global-functions 2018-10-09 14:15:34 +02:00
Christian Hesse 74d59641e6 README: add more general certificate information 2018-09-14 20:40:21 +02:00
Christian Hesse 8b1ed433ed README: rename and verify certificates 2018-09-14 10:39:46 +02:00
Christian Hesse 5fff04ed0e fix typos 2018-09-13 22:25:38 +02:00
Christian Hesse a51750a27f README: fetch into config without file 2018-09-03 17:31:22 +02:00
Christian Hesse 0acc2bbda7 README: always quote url on command line 2018-08-31 13:01:01 +02:00
Christian Hesse 0d03e8b1e9 add basic instructions to README 2018-08-24 22:43:19 +02:00
Christian Hesse 1d99dc38ff initial commit 2018-07-03 20:46:57 +02:00