From be68c739a840d19f59e76e82ed257c61596ff61a Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Mon, 17 Dec 2018 23:15:23 +0100 Subject: README: add initial commands for copy and paste --- initial-commands | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 initial-commands (limited to 'initial-commands') diff --git a/initial-commands b/initial-commands new file mode 100644 index 0000000..37b7415 --- /dev/null +++ b/initial-commands @@ -0,0 +1,19 @@ +#!rsc +# RouterOS script: initial-commands +# Copyright (c) 2018 Christian Hesse + +{ + / tool fetch "https://git.eworm.de/cgit.cgi/routeros-scripts/plain/certs/731d3d9cfaa061487a1d71445a42f67df0afca2a6c2d2f98ff7b3ce112b1f568.pem" dst-path=letsencrypt.pem; + :delay 1s; + / certificate import file-name=letsencrypt.pem passphrase=""; + / certificate set name="ISRG-Root-X1" [ find where fingerprint="96bcec06264976f37460779acf28c5a7cfe8a3c0aae11a8ffcee05c0bddf08c6" ]; + / certificate set name="Let-s-Encrypt-Authority-X3" [ find where fingerprint="731d3d9cfaa061487a1d71445a42f67df0afca2a6c2d2f98ff7b3ce112b1f568" ]; + :if ([ / certificate print count-only where fingerprint="96bcec06264976f37460779acf28c5a7cfe8a3c0aae11a8ffcee05c0bddf08c6" or fingerprint="731d3d9cfaa061487a1d71445a42f67df0afca2a6c2d2f98ff7b3ce112b1f568" ] != 2) do={ + :error "Anything is wrong with your certificates!"; + } + :foreach script in={ "global-config"; "global-functions"; "script-updates" } do={ + / system script add name=$script source=([ / tool fetch check-certificate=yes-without-crl ("https://git.eworm.de/cgit.cgi/routeros-scripts/plain/" . $script) output=user as-value]->"data"); + } + / system script run global-config; + / system scheduler add name=global-config start-time=startup on-event=global-config; +} -- cgit v1.2.3-54-g00ecf