2015-11-27 17:36:03 +00:00
# IKEv2 VPN Server on Docker
2015-01-25 13:12:20 +00:00
2015-11-27 17:01:13 +00:00
Recipe to build [`gaomd/ikev2-vpn-server` ](https://registry.hub.docker.com/u/gaomd/ikev2-vpn-server/ ) Docker image.
2015-01-25 14:36:32 +00:00
2015-05-03 15:59:39 +00:00
## 1. Start the IKEv2 VPN Server
2015-01-25 14:36:32 +00:00
2015-11-27 17:01:13 +00:00
docker run -d --name ikev2-vpn-server --privileged -p 500:500/udp -p 4500:4500/udp gaomd/ikev2-vpn-server:0.2.2
2015-01-25 14:36:32 +00:00
2015-10-27 16:01:09 +00:00
## 2. Generate a .mobileconfig file for iOS / OS X
2015-01-25 14:36:32 +00:00
2015-05-03 16:05:41 +00:00
*Replace `vpn1.example.com` with your own domain name and make sure it resolves to you server's IP address.*
2015-01-25 14:36:32 +00:00
2015-11-27 17:01:13 +00:00
docker run -i -t --rm --volumes-from ikev2-vpn-server -e "HOST=vpn1.example.com" gaomd/ikev2-vpn-server:0.2.2 generate-mobileconfig > ikev2-vpn.mobileconfig
2015-01-25 14:36:32 +00:00
2015-10-27 16:01:09 +00:00
This command generates an `ikev2-vpn.mobileconfig` file, transfer it to your local computer via SSH tunnel (`scp`) or any other secure methods.
2015-01-25 14:36:32 +00:00
2015-11-27 17:22:01 +00:00
## 3. Install .mobileconfig
2015-10-27 16:01:09 +00:00
- **iOS 9 or later**: AirDrop the `.mobileconfig` file to your iOS 9 device, finish the **Install Profile** screen;
2015-11-27 17:42:05 +00:00
- **iOS 8 or later**: Send an E-mail to your iOS device with the `.mobileconfig` file as attachment, then tap the attachment to bring up then finish the **Install Profile** screen;
- **OS X 10.11 El Capitan or later**: Double click the `.mobileconfig` file to start the *profile installation* wizard.
2015-10-27 16:01:09 +00:00
*IKEv2 protocol requires iOS 8 or later, Mac OS X 10.11 El Capitan is supported as well.*