Azure (Beginners to Professional) Part-11, Create Point-to-Site Azure VPN Gateway (Certificate Auth)

Описание к видео Azure (Beginners to Professional) Part-11, Create Point-to-Site Azure VPN Gateway (Certificate Auth)

Microsoft Azure (Step by Step for Beginners to Professional).
This video is about:
How to Create Virtual network connectivity
Generate certificate for VPN Point-to-Site authentication
Configure Point-to-Site Gateway
VPN gateways

Previous Part  Azure (Beginners to Professional):
   • Azure (Beginners to Professional) Par...  

Next Part  Azure (Beginners to Professional):
   • Azure (Beginners to Professional) Par...  

Complete Play List for Azure (Beginners to Professional):
   • Azure (Beginners to Professionals)  


#Create the root cert
$cert = New-SelfSignedCertificate -Type Custom -KeySpec Signature `
-Subject "CN=SPLP2SRootCert" -KeyExportPolicy Exportable `
-HashAlgorithm sha256 -KeyLength 2048 `
-CertStoreLocation "Cert:\CurrentUser\My" `
-KeyUsageProperty Sign -KeyUsage CertSign

#Create Client Cert
New-SelfSignedCertificate -Type Custom -DnsName P2SChildCert -KeySpec Signature `
-Subject "CN=SPLP2SClientCert1" -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")

Комментарии

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