mirror of
https://git.eworm.de/cgit/routeros-scripts
synced 2025-06-22 17:53:31 +02:00
README: add initial commands for copy and paste
This commit is contained in:
parent
f97b45b5b8
commit
be68c739a8
2 changed files with 28 additions and 0 deletions
19
initial-commands
Normal file
19
initial-commands
Normal file
|
@ -0,0 +1,19 @@
|
|||
#!rsc
|
||||
# RouterOS script: initial-commands
|
||||
# Copyright (c) 2018 Christian Hesse <mail@eworm.de>
|
||||
|
||||
{
|
||||
/ 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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue