| Update July 2017. For an overview over all existing Virtual private network (VPN)-related articles in the OpenWrt wiki, please visit vpn.overview |
This page is about strongswan. The old racoon documentation can be found here.
Most of the racoon information is relevant (sort-of).
The basic context of the "road warrior" configuration:
Examples would be a phone or laptop that wants to VPN into a private home network. Note that Strongswan's IKEv2 with MOBIKE lets you leave VPN up ALL the time on a phone with near zero battery drain or perceptible performance hit. The benefits of this cannot be overstated for the roadwarrior.
This configuration uses TWO authentication mechanisms: certificates and a username/password challenge (EAP) for an added layer of security. This is an IKEv2 setup. Everything else in my opinion is obsolete and should not be used. IKEv2 is built-in to Windows 7 and Blackberry. It's added to Android using the Strongswan client.
Tested on OpenWrt Barrier Breaker r37092-r39879 through to the current (July 2017) Openwrt Designated Driver 50107 on WNDR3700v2.
To make sure Strongswan runs, you can type
/etc/init.d/ipsec start
For testing, you will want to run logread in a scrolling window as follows:
logread && logread -f
We're going to edit the following:
charon {
load_modular=yes
dns1 = 10.0.0.1
nbns1 = 10.0.0.1
plugins {
include strongswan.d/charon/*.conf
}
}
include strongswan.d/*.conf
Note that in earlier versions of StrongSwan (5.1.1 or earlier), you may find that charon plugins are not loading dynamically. You can spot by changing charondebug in ipsec.conf to check. If you must use an older version, try explicitly telling charon which plugins you want by adding "load = …" to charon like this:
charon {
load = aes des sha1 sha2 md5 pem pkcs1 gmp random nonce x509 revocation hmac stroke kernel-netlink socket-default updown attr farp dhcp
.....
The above issue seems to have been resolved in 5.1.2 according to the
Wiki here.
Replace the IP addresses with the appropriate values for your INTERNAL network. In this and other examples, I expect your private internal network to be 10.0.0.0/24.
"dns1" entry tells charon (the IKEv2 service) where to go for dns - typically the openwrt host.
"nbns1" entry tells charon where to go for netbios name services if you want to use windows file sharing.
Note that this is a certificate-based configuration with an additional username/password challenge. It REQUIRES you to put certificates on the server and clients, as well as have clients supply username and password.
config setup conn %default keyexchange=ikev2 conn roadwarrior left=%any leftauth=pubkey leftcert=serverCert.pem leftid=yourdomain.dyndns.org leftsubnet=0.0.0.0/0,::/0 right=%any rightsourceip=10.0.1.0/24 rightauth=pubkey rightcert=clientCert.pem rightauth2=eap-mschapv2 auto=addExplanation: The notion of "left" and "right" is explained in the strongswan documentation, but briefly, "left" here is the "Local" (Left = Local) or private net you want access to, and "right" is the "Remote" (Right = Remote) or client side.
config setup block is needed but can be emptyconn %default block provides default settings if you plan on adding more profiles.conn roadwarrior is our roadwarrior configuration.leftauth = pubkey tells the host to use certificates.leftid = the FQDN you put in the cert as subjectAltName (see "–san" option when you make your certs below). Note that it could be anything as long as it matches. Use of dyndns (in example) is advised if your gateway is also assigned a dynamic address.leftsubnet = the scope of VPN. 0.0.0.0/0 is a full tunnel, meaning ALL traffic will go through the VPN. You can put 10.0.0.0/24 if you want your client to use the VPN to reach ONLY those addresses and your private net is 10.0.0.0/24. The full tunnel option is more secure because it prevents a client from acting as a bridge.right = %any - lets any peer IP connect. (remote user)rightsourceIP = The pool of internal addresses to use for the VPN clients. Note that if you have only ONE client connecting, you could use 10.0.1.100/32 as an example, which means that only 1 host can connect and it will be given the address 10.0.1.100. You may want to assign IPs from a subnet which doesn't overlap neither your home nor your guest's LAN.rightcert = the cert the client needsrightauth = pubkey Tells the client to use certificates.rightauth2 = eap-mschapv2 tells the client to use a second challenge: username and password.
If you want to issue personal certificates to your clients then you should verify the signing CA's identity instead of the client certificates itself. To achieve this, use the rightca="C=US, O=xxx, CN=xxxx" directive instead of rightcert, where xxx and xxxx are what you choose in the next steps at Making Keys. More information on this: strongSwan documentation
With the above configuration, you will need to also install caCert.pem on your clients in addition to the client cert - see 'Making Keys' section below.
: RSA serverKey.pem remoteusername : EAP "secretpassword"The first line defines the key to use and the second line is for the username/password challenge (EAP). Replace
remoteusername and secretpassword with the values you want.
To make keys, run this script:
#!/bin/sh ipsec pki --gen --outform pem > caKey.pem ipsec pki --self --in caKey.pem --dn "C=US, O=xxx, CN=xxxx" --ca --outform pem > caCert.pem ipsec pki --gen --outform pem > serverKey.pem ipsec pki --pub --in serverKey.pem | ipsec pki --issue --cacert caCert.pem --cakey caKey.pem --dn "C=US, O=xxx, CN=yourdomain.dyndns.org" --san="yourdomain.dyndns.org" --flag serverAuth --flag ikeIntermediate --outform pem > serverCert.pem ipsec pki --gen --outform pem > clientKey.pem ipsec pki --pub --in clientKey.pem | ipsec pki --issue --cacert caCert.pem --cakey caKey.pem --dn "C=US, O=xxx, CN=client" --san="client" --outform pem > clientCert.pem openssl pkcs12 -export -inkey clientKey.pem -in clientCert.pem -name "client" -certfile caCert.pem -caname "xxxx" -out clientCert.p12 # where to put them... mv caCert.pem /etc/ipsec.d/cacerts/ mv serverCert.pem /etc/ipsec.d/certs/ mv serverKey.pem /etc/ipsec.d/private/ mv clientCert.pem /etc/ipsec.d/certs/ mv clientKey.pem /etc/ipsec.d/private/ mv caKey.pem /etc/ipsec.d/private/
Now install clientCert.p12 and caCert.pem on the clients. Note that caCert.pem has been included already in the clientCert.p12 if you used the above commands, however depending on the client platform you may be required to install the CA certificate separately.
Add the following to your firewall configuration. You can use Luci for this.
config rule
option src 'wan'
option name 'IPSec ESP'
option proto 'esp'
option target 'ACCEPT'
config rule
option src 'wan'
option name 'IPSec IKE'
option proto 'udp'
option dest_port '500'
option target 'ACCEPT'
config rule
option src 'wan'
option name 'IPSec NAT-T'
option proto 'udp'
option dest_port '4500'
option target 'ACCEPT'
config rule
option src 'wan'
option name 'Auth Header'
option proto 'ah'
option target 'ACCEPT'
Explanation:
Basically you're opening up the ports/protocols on the WAN zone that strongswan needs to accept traffic from a client. You can also create a custom zone called "VPN" if you want to get fancy.
You will also need additional forwarding rules in firewall.user. Note that strongswan mentions the leftfirewall=yes setting in ipsec.conf which used to add the iptables entries using the _updown script in /usr/libexec/ipsec/_updown but this has been deprecated and doesn't do anything.
firewall.user:
iptables -I INPUT -m policy --dir in --pol ipsec --proto esp -j ACCEPT iptables -I FORWARD -m policy --dir in --pol ipsec --proto esp -j ACCEPT iptables -I FORWARD -m policy --dir out --pol ipsec --proto esp -j ACCEPT iptables -I OUTPUT -m policy --dir out --pol ipsec --proto esp -j ACCEPT
For testing, I used a Blackberry Z10 with NATIVE Ikev2 support (LOVE your Blackberry), an android phone with the StrongSwan Client, Windows 7 and 10 machines using native IKEv2, and a Blackberry DTek running Android with Dtek.
You can email clientCert.p12 and caCert.pem to the mobile clients.
BlackBerry allows you to specify Perfect Forward Secrecy. You will want/need this. This should be standard. If you have problems, try adding the following lines to the ipsec.conf file in the conn roadwarrior section:
esp=aes-aes256-sha-modp1024,aes256-sha512-modp4096 ike=aes-aes256-sha-modp1024,aes256-sha512-modp4096
What this does is specify what cipher suites to use, including the Diffie Hellman Groups; you can read about these settings in the strongswan IKEv2 cipher suite documentation. Previously (before Strongswan 5.xxx), you'd use the pfs=yes statement. This has been deprecated.
Import your certificates into the Berry first, then add a VPN profile with the following settings:
The rest can be left to defaults.
If you receive Authentication Error you can try to use distuingished name (DN) of your server's certificate instead of the FQDN for the leftid property. It is "C=US, O=xxx, CN=yourdomain.dyndns.org" in the example above, but you can find out yours using the command below and looking for the "Subject" field
openssl x509 -in /etc/ipsec.d/certs/serverCert.pem -text -noout
In windows, import your client and CA certificates into Local Machine storage, not Current User. If you followed this tutorial the CA certificate is already in bundle with the client cert into the clientCert.p12 package, just take care of importing, again, into Local Machine and keep selected the option to automatically choose appropriate certificate store. At the end of the export you should have the CA into "Trusted Root Certification Authorities\Certificates" store and the client cert into "My\Certificates" store.
Follow these instructions to setup the Windows VPN connection: https://supportforums.cisco.com/docs/DOC-24022
In Android, go to "Settings > Security" to import.
In the Strongswan client, specify "IKEv2 Certificate + EAP" as the type of VPN, pick "client" for your certificate you just imported, and specify the username/password combo you added to /etc/ipsec.secrets. Keep an eye on the logfile (see above) during initial login to spot any issues. If all goes well, you can use your router as a VPN gateway for any mobile device, tablet, or laptop.
Blackberry supports IKEv2 natively.
Versions of iOS prior to iOS 9, like Android, only support IKEv1. This setup is not recommended. For versions of iOS prior to iOS 9, you will need to use an app to use IKEv2. Cisco's Anyconnect may work, but has not been tested.
Beginning with iOS 9, IKEv2 connections are natively supported. However, iOS9 only supports the use of certificates or username/password, but not both. Therefore, the native IKEv2 implementation in iOS 9 will not work with this example. You will have to either alter the configuration above to support client certificates only or to support username/password only. If you wish to use both certificates and username/passwords together for iOS 9 clients of your IPsec VPN, you will have to use a third-party application. Cisco's Anyconnect may work, but has not been tested.