How to Configure Azure Point to Site VPN Step By Step | Azure Point to Site VPN Certificate | AZ P2S

Описание к видео How to Configure Azure Point to Site VPN Step By Step | Azure Point to Site VPN Certificate | AZ P2S

In this video I have explained how to configure Point to site VPN connection step by step by using Self-signed certificates. I have used windows 10 Powershell to generate the self signed Root as well as Client certificate,
Following commands were used to generate the certificate:

Root Certificate:
$cert = New-SelfSignedCertificate -Type Custom -KeySpec Signature `
-Subject "CN=NameofyourRootCert" -KeyExportPolicy Exportable `
-HashAlgorithm sha256 -KeyLength 2048 `
-CertStoreLocation "Cert:\CurrentUser\My" -KeyUsageProperty Sign -KeyUsage CertSign

Client Certificate:

New-SelfSignedCertificate -Type Custom -DnsName P2SChildCert -KeySpec Signature `
-Subject "CN=NameOfYourChildCert" -KeyExportPolicy Exportable `
-HashAlgorithm sha256 -KeyLength 2048 `
-CertStoreLocation "Cert:\CurrentUser\My" `
-Signer $cert -TextExtension @("2.5.29.37={text}1.3.6.1.5.5.7.3.2")

To know more about VPN Gateways:

https://docs.microsoft.com/en-us/azur...

Комментарии

Информация по комментариям в разработке