IKEv2/IPSec VPN server to connect Windows clients to the network.
Hi,
I configured IKEv2/IPSec VPN server according to:
I can connect to VPN using android phone, but it fails on Windows 10.
Does anyone have configuration working with Windows 10?
- Copy Link
- Subscribe
- Bookmark
- Report Inappropriate Content
- Copy Link
- Report Inappropriate Content
@Virgo Hi, this manuals are for different VPN types. I want to use Client-to-Site VPN with IPSec server (so stack will be IKEv2/IPSec). I have multiple subnetworks and only this type allows me to select to which subnetwork given client should have access. For other VPN types I can define list of networks only per server, not per client.
- Copy Link
- Report Inappropriate Content
If you are behind the NAT, you have to modify registry to make IPSec VPN work.
2 methods (1a or 1b):
Step 1a) Open the Registry Editor (regedit.exe
) and go to the following registry key:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\PolicyAgent
Create a DWORD parameter with the name AssumeUDPEncapsulationContextOnSendRule and the value 2;
- 0 – (a default value) suggests that the server is connected to the Internet without NAT;
- 1 – the VPN server is behind a NAT device ;
- 2 — both VPN server and client are behind a NAT.
Step 1b) Open the Powershell:
Set-ItemProperty -Path "HKLM:SYSTEM\CurrentControlSet\Services\PolicyAgent" -Name "AssumeUDPEncapsulationContextOnSendRule" -Type DWORD -Value 2 –Force;
Step 2)
Restart computer.
- Copy Link
- Report Inappropriate Content
- Copy Link
- Report Inappropriate Content
Information
Helpful: 0
Views: 2255
Replies: 4
Voters 0
No one has voted for it yet.