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

preview_player
Показать описание
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:

Рекомендации по теме
Комментарии
Автор

Awesome Video, great work! I used your video as I was having issues, with your video I clearly saw my mistake. Keep it up!

i.tcentral
Автор

Good Explaination and i am doing the practical on my lab ang i am taking RDP of virtual server

rohitdhakate
Автор

Very too good explanation sir thanks a lot 👏🤝

hanumanthay
Автор

Very good explanation. Thank you for doing this. I was able to connect to my Azure environment. Just one suggestion, not sure if you mentioned, when using powershell login as an administrator.

williamleveson-gower
Автор

Thanks for your sharing, it help much

NguyenDung-SA
Автор

such a beautiful explanation, i just want to know why there are so many less videos in azure? why arent you guys uploading more such stuff?

asmitabagchi
Автор

172.16.31.0 - i hope is the laptop Private IP from which you are trying to connect to azure. Please help clarify it

raghavendrakalwa
Автор

can a Site-2-Site VPN and a Point-2-Site VPN use the same public IP-Address in azure?

fbifido
Автор

Thanks for the video. Any chance you'll make a video on using the openvpn client?

boedilllard
Автор

gr8 video....But i have a question....I think you have installed Root certifcates on powershell of VM WS01 and Client certificates on Powershell of your Local laptop???? Am i right....Is this like Because i am confused as you installed both certificates on your Local help.

MuhammadWaqas-grgg
Автор

Please make same video but authentication type should be azure active directory

VipulKumarOfficial
Автор

Thanks for the this, May I know what was the address space in the current situation

sivakrishnavavilapalli
Автор

Dear,
if i have more than 1 client machine is goint to connect vpn, then do i need to make root and client certitifate from each machine? pease advice

MuhammadAli-mnxf
Автор

Hi…thanks again..do I need to download a root and child certificate for each client computer I want to connect to azure?

funmitoadeyemi
Автор

Do I need to remove the public IP from the Azure VM?

funmitoadeyemi
Автор

This is a wonderful video. However, I would like to know where did you get the IP address of the " Address pool" ? is it the IP address of the remote user who wants to connect?

JOUDALAKAY
Автор

Thank you. Can you tell me why it's recommended to use Enterprise CA?

rajd
Автор

Areyou assuming that you already created a VM?

TaskForcecod
Автор

Hello can you provide poweshell command for creating certificate

nileshjejurkar
Автор

Hi I get  a parmeter cannot be found to matches Parameter "Type"

Tt-wmze