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's gravatar image

rmcduff
11
accept rate: 0%


Hi rmcduff,

Here is a link that should help you. https://www2.poweradmin.com/help/sslhints/

Thanks
Quinn

Please make sure to mark your questions accepted when you have your answer by clicking the gray checkmark to the left of the answer.

link

answered 15 Jan '21, 17:09

Quinn's gravatar image

Quinn ♦♦
14.4k3925
accept rate: 35%

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]
input_password = PrivatePW000
output_password = PrivatePW000
distinguished_name = req_distinguished_name
req_extensions = v3_req
prompt = no
[req_distinguished_name]
C = Country Code
ST = State
L = City
O = Organization
OU = Org Unit
CN = FQDN of server
[v3_req]
keyUsage = keyEncipherment, dataEncipherment
extendedKeyUsage = serverAuth
subjectAltName = @alt_names
[alt_names]
DNS.1 = example.yourdomain.com
DNS.2 = example

link

answered 03 Nov '21, 10:38

frocephus's gravatar image

frocephus
313
accept rate: 0%

edited 03 Nov '21, 11:30

Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Tags:

×7
×3

Asked: 15 Jan '21, 14:01

Seen: 2,154 times

Last updated: 03 Nov '21, 11:30