Azure/VPN

From SETV Springfield Technical Wiki
Revision as of 07:36, 12 March 2017 by Setvadmin (talk | contribs) (Created page with "Step-by-set on how to set up VPNs in Azure == Point-to-Site == For roaming and individual users, connect a machine to the Vnet using a certificated VPN Profile. === Create S...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Step-by-set on how to set up VPNs in Azure

Point-to-Site

For roaming and individual users, connect a machine to the Vnet using a certificated VPN Profile.

Create Self-Signed Root Certificate

You need to use PowerShell to create the certificates.

  1. Run PowerShell as Admin
  2. Run this command clanging "P25RootCert" to a a static name
   $cert = New-SelfSignedCertificate -Type Custom -KeySpec Signature `
   -Subject "CN=P2SRootCert" -KeyExportPolicy Exportable `  -HashAlgorithm sha256 -KeyLength 2048 `
  -CertStoreLocation "Cert:\CurrentUser\My" -KeyUsageProperty Sign -KeyUsage CertSign