1
0
mirror of https://github.com/eworm-de/routeros-scripts.git synced 2024-05-11 05:55:19 +00:00

55 Commits

Author SHA1 Message Date
d4c9d1c577 README: add logo 2021-04-28 13:58:14 +02:00
9ab20bb927 global-config-overlay: remove magic
This allows to drop the ignore flag.
2021-03-04 12:13:20 +01:00
73eb92fb72 We have a Telegram group! 2021-02-22 10:34:09 +01:00
292176e910 README: swap stars and forks 2021-02-21 21:59:36 +01:00
d5afc79eed global: drop script 'global-wait'
All scripts wait for the global functions on their own now.
2021-02-18 21:45:38 +01:00
776f072415 README: fix typo 2021-02-18 11:30:04 +01:00
c4c139d5a6 README: drop Let's Encrypt Authority X3 2020-12-18 20:32:29 +01:00
9f6b877aef README: also import Let's Encrypt certificate "R3" 2020-12-17 22:14:25 +01:00
f2e16a92d1 README: optional scheduler to update scripts automatically 2020-11-01 22:20:02 +01:00
ae5570325b ospf-to-leds: introduce script to visualize ospf state via leds 2020-10-23 14:17:33 +02:00
1c4531d536 README: link to global-config 2020-10-15 22:50:12 +02:00
b769077746 global-config: do not define mail addresses by default 2020-10-15 22:45:27 +02:00
f1236065ad fix typo: botton -> button 2020-08-13 13:07:40 +02:00
6bce0a4b6a add 'log-forward', drop 'early-errors' 2020-07-15 12:41:29 +02:00
e19f40f1eb README: be more explicit on file name 2020-07-14 17:02:46 +02:00
f4d6e07dbb global-config: dropped $ScriptUpdatesIgnore, use ignore flag in comment 2020-07-14 17:02:41 +02:00
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
5666006527 README: warn about deprecated commands in presentation 2020-05-04 14:14:42 +02:00
07603f1c7b README: expect recent RouterOS
RouterOS 6.43 can be considered obsolete these days.
2020-05-04 14:08:49 +02:00
c8770efd72 add script 'early-erros' 2020-04-19 00:11:01 +02:00
4d0b3b0780 add links GitHub batches 2020-03-30 16:30:25 +02:00
cc69e5ada7 add GitHub batches from shields.io
https://shields.io/category/social
2020-03-30 16:18:47 +02:00
c6389f5d2c README: add section 'Available Scripts' and link documentation 2020-03-27 22:12:49 +01:00
0d6bdd4eb1 README: unify markup 2020-03-26 07:53:44 +01:00
5f46ef7635 completely replace script-updates with $ScriptInstallUpdate 2020-03-23 14:01:20 +01:00
f16056ef8b convert initial commands from script to page
This is not intended for installation...
2020-03-20 12:51:28 +01:00
1e72f03e5e README: update instructions to use $ScriptInstallUpdate 2020-01-29 22:14:56 +01:00
c93c6e1934 README: fix typo and wording 2019-11-05 00:28:30 +01:00
1cee36a911 introduce global-config-overlay 2019-09-12 21:29:41 +02:00
c7c5da2eca README: add just one scheduler for global scripts 2019-09-11 12:36:47 +02:00
c7563d4ffd add info about past contributions 2019-08-30 13:43:35 +02:00
914e535eea README: add contribute section, including donate option 2019-08-30 13:43:35 +02:00
05f2d03ad9 use shorter url for my repository 2019-08-30 13:43:21 +02:00
e479f3b01a README: add valid script to scheduler 2019-08-30 11:03:43 +02:00
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
6388a97f31 README: add hint on features for specific scripts 2019-04-01 10:42:57 +02:00
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
39d1027d69 link the presentation from MUM Europe 2019 in Vienna 2019-03-12 21:00:39 +01:00
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
7d06a7e8c2 global-{config,functions}: move variables, make independent 2019-01-03 16:09:03 +01:00
99e92340bc README: add link to scroll up 2019-01-02 21:04:54 +01:00
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
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
be68c739a8 README: add initial commands for copy and paste 2018-12-18 21:47:47 +01:00
5a6650b40e README: do not print the certificates but count them 2018-10-16 16:31:59 +02:00
f111669673 README: download certificates from repository 2018-10-16 16:31:57 +02:00
4e02260ad7 README: now that we need three scripts... download and add in loop 2018-10-09 21:36:14 +02:00
9c3f3b9f20 add global-functions 2018-10-09 14:15:34 +02:00
74d59641e6 README: add more general certificate information 2018-09-14 20:40:21 +02:00
8b1ed433ed README: rename and verify certificates 2018-09-14 10:39:46 +02:00