2019-06-24 11:30:36 +00:00
|
|
|
#!rsc
|
|
|
|
# RouterOS script: certificate-renew-issued
|
2020-01-01 16:00:39 +00:00
|
|
|
# Copyright (c) 2019-2020 Christian Hesse <mail@eworm.de>
|
2019-06-24 11:30:36 +00:00
|
|
|
#
|
|
|
|
# renew locally issued certificates
|
|
|
|
|
2020-03-20 07:49:09 +00:00
|
|
|
:global CertIssuedExportPass;
|
|
|
|
|
2020-03-20 07:56:13 +00:00
|
|
|
:global LogPrintExit;
|
2020-03-20 07:49:09 +00:00
|
|
|
:global MkDir;
|
|
|
|
|
2019-06-24 11:30:36 +00:00
|
|
|
:foreach Cert in=[ / certificate find where issued expires-after<3w ] do={
|
|
|
|
:local CertVal [ / certificate get $Cert ];
|
|
|
|
/ certificate issued-revoke $Cert;
|
|
|
|
/ certificate set name=($CertVal->"name" . "-revoked-" . [ / system clock get date ]) $Cert;
|
|
|
|
/ certificate add name=($CertVal->"name") common-name=($CertVal->"common-name") \
|
|
|
|
key-usage=($CertVal->"key-usage") subject-alt-name=($CertVal->"subject-alt-name");
|
|
|
|
/ certificate sign ($CertVal->"name") ca=($CertVal->"ca");
|
2020-03-20 07:49:09 +00:00
|
|
|
:if ([ :typeof ($CertIssuedExportPass->($CertVal->"common-name")) ] = "str") do={
|
|
|
|
$MkDir "cert-issued";
|
|
|
|
/ certificate export-certificate ($CertVal->"name") type=pkcs12 \
|
|
|
|
file-name=("cert-issued/" . $CertVal->"common-name") \
|
|
|
|
export-passphrase=($CertIssuedExportPass->($CertVal->"common-name"));
|
2020-03-20 07:56:13 +00:00
|
|
|
$LogPrintExit info ("Issued a new certificate for \"" . $CertVal->"common-name" . \
|
|
|
|
"\", exported to \"cert-issued/" . $CertVal->"common-name" . ".p12\".") false;
|
|
|
|
} else={
|
|
|
|
$LogPrintExit info ("Issued a new certificate for \"" . $CertVal->"common-name" . "\".") false;
|
2020-03-20 07:49:09 +00:00
|
|
|
}
|
2019-06-24 11:30:36 +00:00
|
|
|
}
|