Hello Everyone, what is the windows server version used in the SDWAN labs?
Hi,
Please check out this thread:
Let me know if this does not answer your question.
Cheers,
I can’t tell you what server version he used but I was able to recreate the certificate server by using a linux machine with openssl.
I didn’t save the guide but below are the commands used to create the certificates using openssl on linux,
Create CA Key
openssl genrsa -out ROOTCA.key 2048
Create ROOTCA pem
openssl req -x509 -new -nodes -key ROOTCA.key -sha256 -days 2000 -subj “/C=AU/ST=NSW/L=NSW/O=KBITS_ssosa209/CN=vmanage.lab” -out ROOTCA.pem
Create CRT from CSR
openssl x509 -req -in vmanage_csr.csr -CA ROOTCA.pem -CAkey ROOTCA.key -CAcreateserial -out vmanage.crt -days 2000 -sha256