IP: 5.5.5.5 is not in the cert's list #1
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Getting this error
Error [ERR_TLS_CERT_ALTNAME_INVALID]: Hostname/IP does not match certificate's altnames: IP: 5.5.5.5 is not in the cert's list:
Added
-addext "subjectAltName=IP:5.5.5.5"
toopenssl req
in https://git.coolaj86.com/coolaj86/nodejs-self-signed-certificate-example/src/branch/master/make-root-ca-and-certificates.sh Still getting same errorIt worked. had to add the below in client nodejs code
That's not working. That's entirely crippling the security of your system, guaranteeing that an attacker can use any forged certificate.
You disabled SSL, essentially.
So the below code almost disables SSL?
Why do I get IP is not in the cert's list error although I did add -
addext "subjectAltName=IP:5.5.5.5
?