Configuration du VPN IKEv2 sur Windows

En bref

Configurez un VPN IKEv2 sur Windows : commandes PowerShell et étapes via l'interface, chiffrement GCMAES256/SHA384, ECP384, split tunneling et sauvegarde des identifiants

Pas envie de monter le serveur vous-même ? Obtenir un serveur prêt
Configuration du VPN IKEv2 sur Windows

Configurer le VPN IKEv2 sur Windows avec PowerShell

Vous devrez exécuter quelques commandes dans PowerShell

$Response = Invoke-WebRequest -UseBasicParsing -Uri https://valid-isrgrootx1.letsencrypt.org

Cette commande règle la gestion des certificats

Puis, créez une nouvelle connexion

Add-VpnConnection -Name "{VPN_ID}.vpn.how" -ServerAddress "{VPN_ID}.vpn.how" -TunnelType IKEv2 -EncryptionLevel Maximum -AuthenticationMethod EAP -RememberCredential

Configurez cette connexion

Set-VpnConnectionIPsecConfiguration -ConnectionName "{VPN_ID}.vpn.how" -AuthenticationTransformConstants GCMAES256 -CipherTransformConstants GCMAES256 -EncryptionMethod GCMAES256 -IntegrityCheckMethod SHA384 -DHGroup ECP384 -PfsGroup ECP384 -Force

Set-VpnConnection -Name "{VPN_ID}.vpn.how" -SplitTunneling $True

Où {VPN_ID} est l’identifiant unique de votre serveur VPN

Configurer le VPN IKEv2 sur Windows via l’interface graphique

Configuration du VPN IKEv2 sur Windows

Dans l’onglet VPN, cliquez sur Ajouter une connexion VPN.

Ajouter une connexion VPN

Entrez :

  1. Choisissez Windows (intégré)
  2. Un nom quelconque pour la connexion
  3. L’adresse du serveur VPN IKEv2
  4. IKEv2
  5. Sélectionnez Nom d’utilisateur et mot de passe
  6. Votre identifiant VPN
  7. Votre mot de passe VPN
  8. Cochez Mémoriser mes informations de connexion

identifiants VPN

Connectez-vous au VPN IKEv2.


Partager cet article :