windows-itpro-docs/windows/security/operating-system-security/network-security/vpn/how-to-configure-diffie-hellman-protocol-over-ikev2-vpn-connections.md
Paolo Matarazzo 5a35f61aa6 moved files
2023-05-22 17:24:04 -04:00

1.6 KiB

title, description, ms.date, ms.topic
title description ms.date ms.topic
How to configure Diffie Hellman protocol over IKEv2 VPN connections Learn how to update the Diffie Hellman configuration of VPN servers and clients by running VPN cmdlets to secure connections. 09/23/2021 how-to

How to configure Diffie Hellman protocol over IKEv2 VPN connections

In IKEv2 VPN connections, the default configuration for Diffie Hellman group is Group 2, which is not secure for IKE exchanges.

To secure the connections, update the configuration of VPN servers and clients by running VPN cmdlets.

VPN server

For VPN servers that run Windows Server 2012 R2 or later, you need to run Set-VpnServerConfiguration to configure the tunnel type. This makes all IKE exchanges on IKEv2 tunnel use the secure configuration.

Set-VpnServerConfiguration -TunnelType IKEv2 -CustomPolicy

On an earlier version of Windows Server, run Set-VpnServerIPsecConfiguration. Since Set-VpnServerIPsecConfiguration doesn't have -TunnelType, the configuration applies to all tunnel types on the server.

Set-VpnServerIPsecConfiguration -CustomPolicy

VPN client

For VPN client, you need to configure each VPN connection. For example, run Set-VpnConnectionIPsecConfiguration (version 4.0) and specify the name of the connection:

Set-VpnConnectionIPsecConfiguration -ConnectionName <String>