Azure VPN Point to site
Nos últimos meses o termo “acesso remoto” esteve em alta. Você sabia que é possível criar uma conexão VPN para permitir que funcionários em Home Office possam acessar seus recursos no Azure? Assista a esse vídeo e aprenda como é fácil trabalhar com VPN no Azure.
Para reproduzir o laboratório você precisará desses comandos
Comando para gerar o certificado auto assinado
$cert = New-SelfSignedCertificate -Type Custom -KeySpec Signature ` -Subject “CN=CertificadoPrincipal” -KeyExportPolicy Exportable ` -HashAlgorithm sha256 -KeyLength 2048 ` -CertStoreLocation “Cert:\CurrentUser\My” -KeyUsageProperty Sign -KeyUsage CertSi
Comando para gerar o certificado do cliente VPN
New-SelfSignedCertificate -Type Custom -DnsName P2SChildCert -KeySpec Signature ` -Subject “CN=Certificadocliente” -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”)
Perfeito e didático.