Summary
Keywords
Full Transcript
Welcome to another session of Azure Administrator and in this session you will learn about how to configure point to site VPN step by step . Full Steps to configure VPN. #teachmecloud #manjeetrawat #azurevpn #azuretraining #azuresecurity #azureadministrator Create Self-Signed Certificate Power Shell Command. 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")
