Error connecting to Azure Virtual Network - Point to Site -


i followed tutorial create point-to-site connection:

https://docs.microsoft.com/en-us/azure/vpn-gateway/vpn-gateway-howto-point-to-site-resource-manager-portal

now, when try connect vpn error:

a certificate not found can used extensible authentication protocol. (error 798)

enter image description here

it doesn't work in computer generated self-signed cert. neither works in client installed pfx private key , fails in both same error.

any ideas?

ok turns out document create certs not complete here , not mentioning client cert , says how create root cert:

https://docs.microsoft.com/en-us/azure/vpn-gateway/vpn-gateway-certificates-point-to-site

here had make work:

create root cert:

makecert -sky exchange -r -n "cn=azurerootcert" -pe -a sha1 -len 2048 -ss "azurerootcert.cer" 

create client cert:

makecert.exe -n "cn=azureclientcert" -pe -sky exchange -m 96 -ss -in "azurerootcert" -is -a sha1 

then rest documented. have export root cert , upload azure , download vpn tool.


Comments

Popular posts from this blog

python - How to insert QWidgets in the middle of a Layout? -

python - serve multiple gunicorn django instances under nginx ubuntu -

module - Prestashop displayPaymentReturn hook url -