Everytime we access PA Monitor from our desktop browser, it will show a cert error or not secure. how can i clear this up? asked 15 Jan '21, 14:01 rmcduff |
Hi rmcduff, Here is a link that should help you. https://www2.poweradmin.com/help/sslhints/ Thanks Please make sure to mark your questions accepted when you have your answer by clicking the gray checkmark to the left of the answer. answered 15 Jan '21, 17:09 Quinn ♦♦ |
Fought with this a bit using our internal CA. This link is helpful: https://www.poweradmin.com/help/pa-server-monitor-8-3/report_other_ssl_cert.aspx Following along in the create your own new certificate section: New step 4 The Client.cnf file failed to include the SANs for us, so cert errors would result. If you save the text at the bottom as Client.cnf in the NewCert folder after updating it with your information, the CSR will contain the SANs listed in the DNS.1, DNS.2 boxes (make sure not to leave any trailing spaces in the Client.cnf file.) After step 8 Get Base 64 certnew.cer file from https://YOUR_SUBCA_FQDN/certsrv/ Copy certnew.cer into NewCert folder Convert .cer to .pem "C:Program FilesPA Server Monitoropenssl.exe" x509 -in certnew.cer -outform PEM -out SIGNED_CLIENT_CERT.pem (back slashes in path are missing) [req] answered 03 Nov '21, 10:38 frocephus |