Project

General

Profile

strongSwan User Documentation » History » Version 17

Martin Willi, 05.09.2007 09:14
added configuration examples

1 5 Martin Willi
= strongSwan User Documentation =
2 2 Martin Willi
3 2 Martin Willi
== Features ==
4 17 Martin Willi
 * [wiki:VirtualIp Virtual IP] via mode-config (IKEv1) or configuration payload (IKEv2)
5 17 Martin Willi
 * [wiki:NatTraversal NAT Traversal]
6 17 Martin Willi
 * [wiki:MobIke MOBIKE]
7 1 Martin Willi
8 1 Martin Willi
== Configuration ==
9 17 Martin Willi
 * [wiki:IpsecConf ipsec.conf]
10 17 Martin Willi
 * [wiki:IpsecSecrets ipsec.secrets]
11 17 Martin Willi
 * [wiki:IpsecDirectory ipsec.d]
12 1 Martin Willi
13 17 Martin Willi
== Configuration Examples ==
14 17 Martin Willi
Dozens of both simple and advanced VPN scenarios:
15 17 Martin Willi
 * [http://www.strongswan.org/uml/testresults4/ikev1 IKEv1] examples
16 17 Martin Willi
 * [http://www.strongswan.org/uml/testresults4/ikev2 IKEv2] examples
17 17 Martin Willi
 * [http://www.strongswan.org/uml/testresults4/ipv6 IPv6] examples
18 17 Martin Willi
   
19 15 Martin Willi
== Interoperability ==
20 15 Martin Willi
21 15 Martin Willi
 * [wiki:WindowsVista Windows Vista]
22 15 Martin Willi
23 15 Martin Willi
== FAQ ==
24 15 Martin Willi
25 6 Martin Willi
'''Q:''' ''I'm trying to set up a VPN tunnel with a ZyXELL/Linksys/X router but the other side keeps on telling me "no proposal chosen" when strongSwan initiates the connection.''
26 9 Martin Willi
27 6 Martin Willi
'''A:''' Make sure that the peer supports all the algorithms (including the key lengths) which strongSwan proposes for IKE and ESP. In terms of IKE, the proposal consists of the following parts: Encryption algorithm, hash algorithm (PRF) and DH group. In terms of ESP the proposal includes the following: Encryption algorithm, hash algorithm, pfs group (DH group) and '''compression algorithm'''. There are lots of IPSec implementations out there that do '''not''' support compression or have implemented it erronously. So the first thing to try in this situation is to switch compression off on the peer. strongSwan's default setting is
28 6 Martin Willi
{{{
29 1 Martin Willi
compress=no
30 7 Tobias Brunner
}}} 
31 7 Tobias Brunner
See also Chapter [http://www.strongswan.org/docs/readme4.htm#section_14.1 14.1 Authentication and encryption algorithms] of the strongSwan documentation. It has good information about the relevant parameters.