Bind Certificate to IP:Port
Using Netsh command, you can bind a certificate to IP and Port to create SSL enabled web communications. Once netsh binding has been set up, https web traffic will be enabled for the given IP: Port.
1 | # Setup Netsh binding: |
key | Description |
---|---|
ipport | IP address and port for the given binding |
appid | GUID user to identify the owning application |
certhash | The thumbprint of the certificate used in the binding |
List bound SSLCert for a give IP:Port
Use the Netsh command to show the bound certificate for a give IP port:
1 | $ netsh http show sslcert ipport=0.0.0.0:8888 |