1 .TH IPSEC.CONF 5 "2010-10-19" "@IPSEC_VERSION@" "strongSwan"
3 ipsec.conf \- IPsec configuration and connections
8 specifies most configuration and control information for the
9 strongSwan IPsec subsystem.
10 The major exception is secrets for authentication;
12 .IR ipsec.secrets (5).
13 Its contents are not security-sensitive.
15 The file is a text file, consisting of one or more
17 White space followed by
19 followed by anything to the end of the line
20 is a comment and is ignored,
21 as are empty lines which are not within a section.
25 and a file name, separated by white space,
26 is replaced by the contents of that file,
27 preceded and followed by empty lines.
28 If the file name is not a full pathname,
29 it is considered to be relative to the directory containing the
31 Such inclusions can be nested.
32 Only a single filename may be supplied, and it may not contain white space,
33 but it may include shell wildcards (see
40 The intention of the include facility is mostly to permit keeping
41 information on connections, or sets of connections,
42 separate from the main configuration file.
43 This permits such connection descriptions to be changed,
44 copied to the other security gateways involved, etc.,
45 without having to constantly extract them from the configuration
46 file and then insert them back into it.
49 parameter (described below) which permits splitting a single logical
50 section (e.g. a connection description) into several actual sections.
53 begins with a line of the form:
60 indicates what type of section follows, and
62 is an arbitrary name which distinguishes the section from others
64 Names must start with a letter and may contain only
65 letters, digits, periods, underscores, and hyphens.
66 All subsequent non-empty lines
67 which begin with white space are part of the section;
68 comments within a section must begin with white space too.
69 There may be only one section of a given type with a given name.
71 Lines within the section are generally of the form
73 \ \ \ \ \ \fIparameter\fB=\fIvalue\fR
75 (note the mandatory preceding white space).
76 There can be white space on either side of the
78 Parameter names follow the same syntax as section names,
79 and are specific to a section type.
80 Unless otherwise explicitly specified,
81 no parameter name may appear more than once in a section.
85 stands for the system default value (if any) of the parameter,
86 i.e. it is roughly equivalent to omitting the parameter line entirely.
89 may contain white space only if the entire
91 is enclosed in double quotes (\fB"\fR);
94 cannot itself contain a double quote,
95 nor may it be continued across more than one line.
97 Numeric values are specified to be either an ``integer''
98 (a sequence of digits) or a ``decimal number''
99 (sequence of digits optionally followed by `.' and another sequence of digits).
101 There is currently one parameter which is available in any type of
105 the value is a section name;
106 the parameters of that section are appended to this section,
107 as if they had been written as part of it.
108 The specified section must exist, must follow the current one,
109 and must have the same section type.
110 (Nesting is permitted,
111 and there may be more than one
114 although it is forbidden to append the same section more than once.)
118 specifies defaults for sections of the same type.
119 For each parameter in it,
120 any section of that type which does not have a parameter of the same name
121 gets a copy of the one from the
124 There may be multiple
126 sections of a given type,
127 but only one default may be supplied for any specific parameter name,
130 sections of a given type must precede all non-\c
132 sections of that type.
134 sections may not contain the
138 Currently there are three types of sections:
141 section specifies general configuration information for IPsec, a
143 section specifies an IPsec connection, while a
145 section specifies special properties of a certification authority.
150 .IR "connection specification" ,
151 defining a network connection to be made using IPsec.
152 The name given is arbitrary, and is used to identify the connection.
153 Here's a simple example:
161 leftsubnet=10.1.0.0/16
163 rightsubnet=10.1.0.0/16
169 A note on terminology: There are two kinds of communications going on:
170 transmission of user IP packets, and gateway-to-gateway negotiations for
171 keying, rekeying, and general control.
172 The path to control the connection is called 'ISAKMP SA' in IKEv1
173 and 'IKE SA' in the IKEv2 protocol. That what is being negotiated, the kernel
174 level data path, is called 'IPsec SA' or 'Child SA'.
175 strongSwan currently uses two separate keying daemons. \fIpluto\fP handles
176 all IKEv1 connections, \fIcharon\fP is the daemon handling the IKEv2
179 To avoid trivial editing of the configuration file to suit it to each system
180 involved in a connection,
181 connection specifications are written in terms of
186 rather than in terms of local and remote.
187 Which participant is considered
192 for every connection description an attempt is made to figure out whether
193 the local endpoint should act as the
197 endpoint. This is done by matching the IP addresses defined for both endpoints
198 with the IP addresses assigned to local network interfaces. If a match is found
199 then the role (left or right) that matches is going to be considered local.
200 If no match is found during startup,
203 This permits using identical connection specifications on both ends.
204 There are cases where there is no symmetry; a good convention is to
207 for the local side and
209 for the remote side (the first letters are a good mnemonic).
211 Many of the parameters relate to one participant or the other;
214 are listed here, but every parameter whose name begins with
219 whose description is the same but with
225 Parameters are optional unless marked '(required)'.
226 .SS "CONN PARAMETERS"
227 Unless otherwise noted, for a connection to work,
228 in general it is necessary for the two ends to agree exactly
229 on the values of these parameters.
231 .BR aaa_identity " = <id>"
232 defines the identity of the AAA backend used during IKEv2 EAP authentication.
233 This is required if the EAP client uses a method that verifies the server
234 identity (such as EAP-TLS), but it does not match the IKEv2 gateway identity.
237 includes conn section
240 .BR auth " = " esp " | ah"
241 whether authentication should be done as part of
242 ESP encryption, or separately using the AH protocol;
243 acceptable values are
248 The IKEv2 daemon currently supports ESP only.
250 .BR authby " = " pubkey " | rsasig | ecdsasig | psk | eap | never | xauth..."
251 how the two security gateways should authenticate each other;
252 acceptable values are
256 for pre-shared secrets,
258 (the default) for public key signatures as well as the synonyms
260 for RSA digital signatures and
262 for Elliptic Curve DSA signatures.
264 can be used if negotiation is never to be attempted or accepted (useful for
266 Digital signatures are superior in every way to shared secrets.
267 IKEv1 additionally supports the values
271 that will enable eXtended AUTHentication (XAUTH) in addition to IKEv1 main mode
272 based on shared secrets or digital RSA signatures, respectively.
273 IKEv2 additionally supports the value
275 which indicates an initiator to request EAP authentication. The EAP method
276 to use is selected by the server (see
278 This parameter is deprecated for IKEv2 connections, as two peers do not need
279 to agree on an authentication method. Use the
281 parameter instead to define authentication methods in IKEv2.
283 .BR auto " = " ignore " | add | route | start"
284 what operation, if any, should be done automatically at IPsec startup;
285 currently-accepted values are
293 loads a connection without starting it.
295 loads a connection and installs kernel traps. If traffic is detected between
299 , a connection is established.
301 loads a connection and brings it up immediatly.
303 ignores the connection. This is equal to delete a connection from the config
305 Relevant only locally, other end need not agree on it
306 (but in general, for an intended-to-be-permanent connection,
309 to ensure that any reboot causes immediate renegotiation).
311 .BR compress " = yes | " no
312 whether IPComp compression of content is proposed on the connection
313 (link-level compression does not work on encrypted data,
314 so to be effective, compression must be done \fIbefore\fR encryption);
315 acceptable values are
319 (the default). A value of
321 causes IPsec to propose both compressed and uncompressed,
322 and prefer compressed.
325 prevents IPsec from proposing compression;
326 a proposal to compress will still be accepted.
328 .BR dpdaction " = " none " | clear | hold | restart"
329 controls the use of the Dead Peer Detection protocol (DPD, RFC 3706) where
330 R_U_THERE notification messages (IKEv1) or empty INFORMATIONAL messages (IKEv2)
331 are periodically sent in order to check the
332 liveliness of the IPsec peer. The values
337 all activate DPD. If no activity is detected, all connections with a dead peer
338 are stopped and unrouted
340 put in the hold state
344 For IKEv1, the default is
346 which disables the active sending of R_U_THERE notifications.
347 Nevertheless pluto will always send the DPD Vendor ID during connection set up
348 in order to signal the readiness to act passively as a responder if the peer
349 wants to use DPD. For IKEv2,
351 does't make sense, since all messages are used to detect dead peers. If specified,
352 it has the same meaning as the default
355 .BR dpddelay " = " 30s " | <time>"
356 defines the period time interval with which R_U_THERE messages/INFORMATIONAL
357 exchanges are sent to the peer. These are only sent if no other traffic is
358 received. In IKEv2, a value of 0 sends no additional INFORMATIONAL
359 messages and uses only standard messages (such as those to rekey) to detect
362 .BR dpdtimeout " = " 150s " | <time>"
363 defines the timeout interval, after which all connections to a peer are deleted
364 in case of inactivity. This only applies to IKEv1, in IKEv2 the default
365 retransmission timeout applies, as every exchange is used to detect dead peers.
367 .IR strongswan.conf (5)
368 for a description of the IKEv2 retransmission timeout.
370 .BR inactivity " = <time>"
371 defines the timeout interval, after which a CHILD_SA is closed if it did
372 not send or receive any traffic. Currently supported in IKEv2 connections only.
374 .BR eap " = md5 | mschapv2 | radius | ... | <type> | <type>-<vendor>
375 defines the EAP type to propose as server if the client requests EAP
376 authentication. Currently supported values are
386 for the EAP-RADIUS proxy and
388 for EAP-SIM. Additionally, IANA assigned EAP method numbers are accepted, or a
389 definition in the form
391 (e.g. eap=7-12345) can be used to specify vendor specific EAP types.
392 This parameter is deprecated in the favour of
395 To forward EAP authentication to a RADIUS server using the EAP-RADIUS plugin,
399 .BR eap_identity " = <id>"
400 defines the identity the client uses to reply to a EAP Identity request.
401 If defined on the EAP server, the defined identity will be used as peer
402 identity during EAP authentication. The special value
404 uses the EAP Identity method to ask the client for an EAP identity. If not
405 defined, the IKEv2 identity will be used as EAP identity.
407 .BR esp " = <cipher suites>"
408 comma-separated list of ESP encryption/authentication algorithms to be used
409 for the connection, e.g.
412 .BR encryption-integrity[-dhgroup][-esnmodes] .
416 is specified, CHILD_SA setup and rekeying include a separate diffe hellman
417 exchange (IKEv2 only). Valid
423 Specifying both negotiates Extended Sequence number support with the peer,
427 .BR forceencaps " = yes | " no
428 force UDP encapsulation for ESP packets even if no NAT situation is detected.
429 This may help to surmount restrictive firewalls. In order to force the peer to
430 encapsulate packets, NAT detection payloads are faked (IKEv2 only).
432 .BR ike " = <cipher suites>"
433 comma-separated list of IKE/ISAKMP SA encryption/authentication algorithms
435 .BR aes128-sha1-modp2048 .
437 .BR encryption-integrity-dhgroup .
438 In IKEv2, multiple algorithms and proposals may be included, such as
439 .B aes128-aes256-sha1-modp1536-modp2048,3des-sha1-md5-modp1024.
441 .BR ikelifetime " = " 3h " | <time>"
442 how long the keying channel of a connection (ISAKMP or IKE SA)
443 should last before being renegotiated. Also see EXPIRY/REKEY below.
445 .BR installpolicy " = " yes " | no"
446 decides whether IPsec policies are installed in the kernel by the IKEv2
447 charon daemon for a given connection. Allows peaceful cooperation e.g. with
448 the Mobile IPv6 daemon mip6d who wants to control the kernel policies.
449 Acceptable values are
454 .BR keyexchange " = " ike " | ikev1 | ikev2"
455 method of key exchange;
456 which protocol should be used to initialize the connection. Connections marked with
458 are initiated with pluto, those marked with
460 with charon. An incoming request from the remote peer is handled by the correct
461 daemon, unaffected from the
463 setting. Starting with strongSwan 4.5 the default value
467 whereas in older strongSwan releases
471 .BR keyingtries " = " %forever " | <number>"
472 how many attempts (a whole number or \fB%forever\fP) should be made to
473 negotiate a connection, or a replacement for one, before giving up
476 The value \fB%forever\fP
477 means 'never give up'.
478 Relevant only locally, other end need not agree on it.
484 .BR left " = <ip address> | <fqdn> | %defaultroute | " %any
486 the IP address of the left participant's public-network interface
487 or one of several magic values.
491 will be filled in automatically with the local address
492 of the default-route interface (as determined at IPsec startup time and
493 during configuration update).
503 in front of a fully-qualified domain name or an IP address will implicitly set
505 If the domain name cannot be resolved into an IP address at IPsec startup or
512 In case of an IKEv2 connection, the value
514 for the local endpoint signifies an address to be filled in (by automatic
515 keying) during negotiation. If the local peer initiates the connection setup
516 the routing table will be queried to determine the correct local IP address.
517 In case the local peer is responding to a connection setup then any IP address
518 that is assigned to a local interface will be accepted.
522 for the local endpoint is not supported by the IKEv1 pluto daemon.
526 is used for the remote endpoint it literally means any IP address.
528 Please note that with the usage of wildcards multiple connection descriptions
529 might match a given incoming connection attempt. The most specific description
530 is used in that case.
532 .BR leftallowany " = yes | " no
535 , making it behave as
537 although a concrete IP address has been assigned.
538 Recommended for dynamic IP addresses that can be resolved by DynDNS at IPsec
539 startup or update time.
540 Acceptable values are
546 .BR leftauth " = <auth method>"
547 Authentication method to use locally (left) or require from the remote (right)
549 This parameter is supported in IKEv2 only. Acceptable values are
551 for public key authentication (RSA/ECDSA),
553 for pre-shared key authentication and
555 to (require the) use of the Extensible Authentication Protocol.
556 To require a trustchain public key strength for the remote side, specify the
557 key type followed by the strength in bits (for example
563 an optional EAP method can be appended. Currently defined methods are
571 Alternatively, IANA assigned EAP method numbers are accepted. Vendor specific
572 EAP methods are defined in the form
574 .RB "(e.g. " eap-7-12345 ).
576 .BR leftauth2 " = <auth method>"
579 but defines an additional authentication exchange. IKEv2 supports multiple
580 authentication rounds using "Multiple Authentication Exchanges" defined
581 in RFC4739. This allows, for example, separated authentication
582 of host and user (IKEv2 only).
584 .BR leftca " = <issuer dn> | %same"
585 the distinguished name of a certificate authority which is required to
586 lie in the trust path going from the left participant's certificate up
587 to the root certification authority.
589 .BR leftca2 " = <issuer dn> | %same"
592 but for the second authentication round (IKEv2 only).
594 .BR leftcert " = <path>"
595 the path to the left participant's X.509 certificate. The file can be encoded
596 either in PEM or DER format. OpenPGP certificates are supported as well.
597 Both absolute paths or paths relative to \fI/etc/ipsec.d/certs\fP
598 are accepted. By default
602 to the distinguished name of the certificate's subject and
604 to the distinguished name of the certificate's issuer.
605 The left participant's ID can be overridden by specifying a
607 value which must be certified by the certificate, though.
609 .BR leftcert2 " = <path>"
612 but for the second authentication round (IKEv2 only).
614 .BR leftcertpolicy " = <OIDs>"
615 Comma separated list of certificate policy OIDs the peers certificate must have.
616 OIDs are specified using the numerical dotted representation (IKEv2 only).
618 .BR leftfirewall " = yes | " no
619 whether the left participant is doing forwarding-firewalling
620 (including masquerading) using iptables for traffic from \fIleftsubnet\fR,
621 which should be turned off (for traffic to the other subnet)
622 once the connection is established;
623 acceptable values are
628 May not be used in the same connection description with
630 Implemented as a parameter to the default \fBipsec _updown\fR script.
632 Relevant only locally, other end need not agree on it.
634 If one or both security gateways are doing forwarding firewalling
635 (possibly including masquerading),
636 and this is specified using the firewall parameters,
637 tunnels established with IPsec are exempted from it
638 so that packets can flow unchanged through the tunnels.
639 (This means that all subnets connected in this manner must have
640 distinct, non-overlapping subnet address blocks.)
641 This is done by the default \fBipsec _updown\fR script (see
644 In situations calling for more control,
645 it may be preferable for the user to supply his own
648 which makes the appropriate adjustments for his system.
650 .BR leftgroups " = <group list>"
651 a comma separated list of group names. If the
653 parameter is present then the peer must be a member of at least one
654 of the groups defined by the parameter. Group membership must be certified
655 by a valid attribute certificate stored in \fI/etc/ipsec.d/acerts/\fP thas has
656 been issued to the peer by a trusted Authorization Authority stored in
657 \fI/etc/ipsec.d/aacerts/\fP.
659 Attribute certificates are not supported in IKEv2 yet.
661 .BR lefthostaccess " = yes | " no
662 inserts a pair of INPUT and OUTPUT iptables rules using the default
663 \fBipsec _updown\fR script, thus allowing access to the host itself
664 in the case where the host's internal interface is part of the
665 negotiated client subnet.
666 Acceptable values are
673 how the left participant should be identified for authentication;
676 Can be an IP address or a fully-qualified domain name preceded by
678 (which is used as a literal string and not resolved).
680 .BR leftid2 " = <id>"
681 identity to use for a second authentication for the left participant
682 (IKEv2 only); defaults to
685 .BR leftikeport " = <port>"
686 UDP port the left participant uses for IKE communication. Currently supported in
687 IKEv2 connections only. If unspecified, port 500 is used with the port floating
688 to 4500 if a NAT is detected or MOBIKE is enabled. Specifying a local IKE port
689 different from the default additionally requires a socket implementation that
690 listens to this port.
692 .BR leftnexthop " = %direct | %defaultroute | <ip address> | <fqdn>"
693 this parameter is usually not needed any more because the NETKEY IPsec stack
694 does not require explicit routing entries for the traffic to be tunneled. If
696 is used with IKEv1 then
698 must still be set in order for the source routes to work properly.
700 .BR leftprotoport " = <protocol>/<port>"
701 restrict the traffic selector to a single protocol and/or port.
703 .B leftprotoport=tcp/http
705 .B leftprotoport=6/80
709 .BR leftrsasigkey " = " %cert " | <raw rsa public key>"
710 the left participant's
711 public key for RSA signature authentication,
712 in RFC 2537 format using
717 means the same as not specifying a value (useful to override a default).
721 means that the key is extracted from a certificate.
722 The identity used for the left participant
723 must be a specific host, not
725 or another magic value.
727 if two connection descriptions
728 specify different public keys for the same
730 confusion and madness will ensue.
732 .BR leftsendcert " = never | no | " ifasked " | always | yes"
741 .BR ifasked " (the default),"
742 the latter meaning that the peer must send a certificate request payload in
743 order to get a certificate in return.
745 .BR leftsourceip " = %config | %cfg | %modeconfig | %modecfg | <ip address>"
746 The internal source IP to use in a tunnel, also known as virtual IP. If the
747 value is one of the synonyms
753 an address is requested from the peer. In IKEv2, a statically defined address
754 is also requested, since the server may change it.
756 .BR rightsourceip " = %config | <network>/<netmask> | %poolname"
757 The internal source IP to use in a tunnel for the remote peer. If the
760 on the responder side, the initiator must propose an address which is then
761 echoed back. Also supported are address pools expressed as
762 \fInetwork\fB/\fInetmask\fR
763 or the use of an external IP address pool using %\fIpoolname\fR,
764 where \fIpoolname\fR is the name of the IP address pool used for the lookup.
766 .BR leftsubnet " = <ip subnet>"
767 private subnet behind the left participant, expressed as
768 \fInetwork\fB/\fInetmask\fR;
769 if omitted, essentially assumed to be \fIleft\fB/32\fR,
770 signifying that the left end of the connection goes to the left participant
771 only. When using IKEv2, the configured subnet of the peers may differ, the
772 protocol narrows it to the greatest common subnet. Further, IKEv2 supports
773 multiple subnets separated by commas. IKEv1 only interprets the first subnet
774 of such a definition.
776 .BR leftsubnetwithin " = <ip subnet>"
777 the peer can propose any subnet or single IP address that fits within the
779 .BR leftsubnetwithin.
780 Not relevant for IKEv2, as subnets are narrowed.
782 .BR leftupdown " = <path>"
783 what ``updown'' script to run to adjust routing and/or firewalling
784 when the status of the connection
786 .BR "ipsec _updown" ).
787 May include positional parameters separated by white space
788 (although this requires enclosing the whole string in quotes);
789 including shell metacharacters is unwise.
793 Relevant only locally, other end need not agree on it. IKEv2 uses the updown
794 script to insert firewall rules only, since routing has been implemented
795 directly into charon.
797 .BR lifebytes " = <number>"
798 the number of bytes transmitted over an IPsec SA before it expires (IKEv2
801 .BR lifepackets " = <number>"
802 the number of packets transmitted over an IPsec SA before it expires (IKEv2
805 .BR lifetime " = " 1h " | <time>"
806 how long a particular instance of a connection
807 (a set of encryption/authentication keys for user packets) should last,
808 from successful negotiation to expiry;
809 acceptable values are an integer optionally followed by
812 or a decimal number followed by
818 in minutes, hours, or days respectively)
823 Normally, the connection is renegotiated (via the keying channel)
824 before it expires (see
826 The two ends need not exactly agree on
828 although if they do not,
829 there will be some clutter of superseded connections on the end
830 which thinks the lifetime is longer. Also see EXPIRY/REKEY below.
832 .BR marginbytes " = <number>"
833 how many bytes before IPsec SA expiry (see
835 should attempts to negotiate a replacement begin (IKEv2 only).
837 .BR marginpackets " = <number>"
838 how many packets before IPsec SA expiry (see
840 should attempts to negotiate a replacement begin (IKEv2 only).
842 .BR margintime " = " 9m " | <time>"
843 how long before connection expiry or keying-channel expiry
845 negotiate a replacement
846 begin; acceptable values as for
850 Relevant only locally, other end need not agree on it. Also see EXPIRY/REKEY
853 .BR mark " = <value>[/<mask>]"
854 sets an XFRM mark in the inbound and outbound
855 IPsec SAs and policies. If the mask is missing then a default
860 .BR mark_in " = <value>[/<mask>]"
861 sets an XFRM mark in the inbound IPsec SA and
862 policy. If the mask is missing then a default mask of
866 .BR mark_out " = <value>[/<mask>]"
867 sets an XFRM mark in the outbound IPsec SA and
868 policy. If the mask is missing then a default mask of
872 .BR mobike " = " yes " | no"
873 enables the IKEv2 MOBIKE protocol defined by RFC 4555. Accepted values are
879 the IKEv2 charon daemon will not actively propose MOBIKE as initiator and
880 ignore the MOBIKE_SUPPORTED notify as responder.
882 .BR modeconfig " = push | " pull
883 defines which mode is used to assign a virtual IP.
889 Currently relevant for IKEv1 only since IKEv2 always uses the configuration
890 payload in pull mode. Cisco VPN gateways usually operate in
894 .BR pfs " = " yes " | no"
895 whether Perfect Forward Secrecy of keys is desired on the connection's
897 (with PFS, penetration of the key-exchange protocol
898 does not compromise keys negotiated earlier);
899 acceptable values are
904 IKEv2 always uses PFS for IKE_SA rekeying whereas for CHILD_SA rekeying
905 PFS is enforced by defining a Diffie-Hellman modp group in the
909 .BR pfsgroup " = <modp group>"
910 defines a Diffie-Hellman group for perfect forward secrecy in IKEv1 Quick Mode
911 differing from the DH group used for IKEv1 Main Mode (IKEv1 only).
913 .BR reauth " = " yes " | no"
914 whether rekeying of an IKE_SA should also reauthenticate the peer. In IKEv1,
915 reauthentication is always done. In IKEv2, a value of
917 rekeys without uninstalling the IPsec SAs, a value of
919 (the default) creates a new IKE_SA from scratch and tries to recreate
922 .BR rekey " = " yes " | no"
923 whether a connection should be renegotiated when it is about to expire;
924 acceptable values are
929 The two ends need not agree, but while a value of
931 prevents pluto/charon from requesting renegotiation,
932 it does not prevent responding to renegotiation requested from the other end,
935 will be largely ineffective unless both ends agree on it.
937 .BR rekeyfuzz " = " 100% " | <percentage>"
938 maximum percentage by which
943 should be randomly increased to randomize rekeying intervals
944 (important for hosts with many connections);
945 acceptable values are an integer,
946 which may exceed 100,
952 after this random increase,
955 (where TYPE is one of
962 will suppress randomization.
963 Relevant only locally, other end need not agree on it. Also see EXPIRY/REKEY
970 .BR reqid " = <number>"
971 sets the reqid for a given connection to a pre-configured fixed value.
974 number of bytes to pad ESP payload data to. Traffic Flow Confidentiality
975 is currently supported in IKEv2 and applies to outgoing packets only. The
978 fills up ESP packets with padding to have the size of the MTU.
980 .BR type " = " tunnel " | transport | transport_proxy | passthrough | drop"
981 the type of the connection; currently the accepted values
985 signifying a host-to-host, host-to-subnet, or subnet-to-subnet tunnel;
987 signifying host-to-host transport mode;
988 .BR transport_proxy ,
989 signifying the special Mobile IPv6 transport proxy mode;
991 signifying that no IPsec processing should be done at all;
993 signifying that packets should be discarded; and
995 signifying that packets should be discarded and a diagnostic ICMP returned
997 is currently not supported by the NETKEY stack of the Linux 2.6 kernel).
998 The IKEv2 daemon charon currently supports
1003 connection types, only.
1005 .BR xauth " = " client " | server"
1006 specifies the role in the XAUTH protocol if activated by
1009 .B authby=xauthrsasig.
1016 .SS "CONN PARAMETERS: IKEv2 MEDIATION EXTENSION"
1017 The following parameters are relevant to IKEv2 Mediation Extension
1020 .BR mediation " = yes | " no
1021 whether this connection is a mediation connection, ie. whether this
1022 connection is used to mediate other connections. Mediation connections
1023 create no child SA. Acceptable values are
1028 .BR mediated_by " = <name>"
1029 the name of the connection to mediate this connection through. If given,
1030 the connection will be mediated through the named mediation connection.
1031 The mediation connection must set
1034 .BR me_peerid " = <id>"
1035 ID as which the peer is known to the mediation server, ie. which the other
1036 end of this connection uses as its
1038 on its connection to the mediation server. This is the ID we request the
1039 mediation server to mediate us with. If
1043 of this connection will be used as peer ID.
1046 This are optional sections that can be used to assign special
1047 parameters to a Certification Authority (CA).
1049 .BR also " = <name>"
1053 .BR auto " = " ignore " | add"
1054 currently can have either the value
1059 .BR cacert " = <path>"
1060 defines a path to the CA certificate either relative to
1061 \fI/etc/ipsec.d/cacerts\fP or as an absolute path.
1063 .BR crluri " = <uri>"
1064 defines a CRL distribution point (ldap, http, or file URI)
1070 .BR crluri2 " = <uri>"
1071 defines an alternative CRL distribution point (ldap, http, or file URI)
1073 .BR ldaphost " = <hostname>"
1074 defines an ldap host. Currently used by IKEv1 only.
1076 .BR ocspuri " = <uri>"
1077 defines an OCSP URI.
1083 .BR ocspuri2 " = <uri>"
1084 defines an alternative OCSP URI. Currently used by IKEv2 only.
1086 .BR certuribase " = <uri>"
1087 defines the base URI for the Hash and URL feature supported by IKEv2.
1088 Instead of exchanging complete certificates, IKEv2 allows to send an URI
1089 that resolves to the DER encoded certificate. The certificate URIs are built
1090 by appending the SHA1 hash of the DER encoded certificates to this base URI.
1091 .SH "CONFIG SECTIONS"
1092 At present, the only
1094 section known to the IPsec software is the one named
1096 which contains information used when the software is being started.
1105 crlcheckinterval=10m
1110 Parameters are optional unless marked ``(required)''.
1111 The currently-accepted
1116 section affecting both daemons are:
1118 .BR cachecrls " = yes | " no
1119 certificate revocation lists (CRLs) fetched via http or ldap will be cached in
1120 \fI/etc/ipsec.d/crls/\fR under a unique file name derived from the certification
1121 authority's public key.
1126 (the default). Only relevant for IKEv1, as CRLs are always cached in IKEv2.
1128 .BR charonstart " = " yes " | no"
1129 whether to start the IKEv2 charon daemon or not.
1132 if starter was compiled with IKEv2 support.
1134 .BR plutostart " = " yes " | no"
1135 whether to start the IKEv1 pluto daemon or not.
1138 if starter was compiled with IKEv1 support.
1140 .BR strictcrlpolicy " = yes | ifuri | " no
1141 defines if a fresh CRL must be available in order for the peer authentication
1142 based on RSA signatures to succeed.
1143 IKEv2 additionally recognizes
1147 if at least one CRL URI is defined and to
1151 .BR uniqueids " = " yes " | no | replace | keep"
1152 whether a particular participant ID should be kept unique,
1153 with any new (automatically keyed)
1154 connection using an ID from a different IP address
1155 deemed to replace all old ones using that ID;
1156 acceptable values are
1161 Participant IDs normally \fIare\fR unique,
1162 so a new (automatically-keyed) connection using the same ID is
1163 almost invariably intended to replace an old one.
1164 The IKEv2 daemon also accepts the value
1166 wich is identical to
1170 to reject new IKE_SA setups and keep the duplicate established earlier.
1174 parameters are used by the IKEv1 Pluto daemon only:
1176 .BR crlcheckinterval " = " 0s " | <time>"
1177 interval in seconds. CRL fetching is enabled if the value is greater than zero.
1178 Asynchronous, periodic checking for fresh CRLs is currently done by the
1179 IKEv1 Pluto daemon only.
1181 .BR keep_alive " = " 20s " | <time>"
1182 interval in seconds between NAT keep alive packets, the default being 20 seconds.
1184 .BR nat_traversal " = yes | " no
1185 activates NAT traversal by accepting source ISAKMP ports different from udp/500 and
1186 being able of floating to udp/4500 if a NAT situation is detected.
1192 Used by IKEv1 only, NAT traversal is always being active in IKEv2.
1194 .BR nocrsend " = yes | " no
1195 no certificate request payloads will be sent.
1197 .BR pkcs11initargs " = <args>"
1198 non-standard argument string for PKCS#11 C_Initialize() function;
1199 required by NSS softoken.
1201 .BR pkcs11module " = <args>"
1202 defines the path to a dynamically loadable PKCS #11 library.
1204 .BR pkcs11keepstate " = yes | " no
1205 PKCS #11 login sessions will be kept during the whole lifetime of the keying
1206 daemon. Useful with pin-pad smart card readers.
1213 .BR pkcs11proxy " = yes | " no
1214 Pluto will act as a PKCS #11 proxy accessible via the whack interface.
1221 .BR plutodebug " = " none " | <debug list> | all"
1222 how much pluto debugging output should be logged.
1226 means no debugging output (the default).
1230 Otherwise only the specified types of output
1231 (a quoted list, names without the
1234 separated by white space) are enabled;
1235 for details on available debugging types, see
1238 .BR plutostderrlog " = <file>"
1239 Pluto will not use syslog, but rather log to stderr, and redirect stderr
1242 .BR postpluto " = <command>"
1243 shell command to run after starting pluto
1244 (e.g., to remove a decrypted copy of the
1247 It's run in a very simple way;
1248 complexities like I/O redirection are best hidden within a script.
1249 Any output is redirected for logging,
1250 so running interactive commands is difficult unless they use
1252 or equivalent for their interaction.
1255 .BR prepluto " = <command>"
1256 shell command to run before starting pluto
1257 (e.g., to decrypt an encrypted copy of the
1260 It's run in a very simple way;
1261 complexities like I/O redirection are best hidden within a script.
1262 Any output is redirected for logging,
1263 so running interactive commands is difficult unless they use
1265 or equivalent for their interaction.
1268 .BR virtual_private " = <networks>"
1269 defines private networks using a wildcard notation.
1273 parameters are used by the IKEv2 charon daemon only:
1275 .BR charondebug " = <debug list>"
1276 how much charon debugging output should be logged.
1277 A comma separated list containing type level/pairs may
1279 .B dmn 3, ike 1, net -1.
1280 Acceptable values for types are
1281 .B dmn, mgr, ike, chd, job, cfg, knl, net, enc, lib
1282 and the level is one of
1283 .B -1, 0, 1, 2, 3, 4
1284 (for silent, audit, control, controlmore, raw, private).
1285 For more flexibility see LOGGER CONFIGURATION in
1286 .IR strongswan.conf (5).
1288 .SH IKEv2 EXPIRY/REKEY
1289 The IKE SAs and IPsec SAs negotiated by the daemon can be configured to expire
1290 after a specific amount of time. For IPsec SAs this can also happen after a
1291 specified number of transmitted packets or transmitted bytes. The following
1292 settings can be used to configure this:
1294 l r l r,- - - -,lB s lB s,a r a r.
1295 Setting Default Setting Default
1297 ikelifetime 3h lifebytes -
1302 IKE SAs as well as IPsec SAs can be rekeyed before they expire. This can be
1303 configured using the following settings:
1305 l r l r,- - - -,lB s lB s,a r a r.
1306 Setting Default Setting Default
1307 IKE and IPsec SA IPsec SA
1308 margintime 9m marginbytes -
1312 To avoid collisions the specified margins are increased randomly before
1313 subtracting them from the expiration limits (see formula below). This is
1324 Randomization can be disabled by setting
1325 .BR rekeyfuzz " to " 0% .
1327 The following formula is used to calculate the rekey time of IPsec SAs:
1330 rekeytime = lifetime - (margintime + random(0, margintime * rekeyfuzz))
1333 It applies equally to IKE SAs and byte and packet limits for IPsec SAs.
1335 Let's consider the default configuration:
1343 From the formula above follows that the rekey time lies between:
1346 rekeytime_min = 1h - (9m + 9m) = 42m
1347 rekeytime_max = 1h - (9m + 0m) = 51m
1350 Thus, the daemon will attempt to rekey the IPsec SA at a random time
1351 between 42 and 51 minutes after establishing the SA. Or, in other words,
1352 between 9 and 18 minutes before the SA expires.
1355 Since the rekeying of an SA needs some time, the margin values must not be
1359 .B margin... + margin... * rekeyfuzz
1360 must not exceed the original limit. For example, specifying
1362 in the default configuration is a bad idea as there is a chance that the rekey
1363 time equals zero and, thus, rekeying gets disabled.
1367 /etc/ipsec.d/aacerts
1369 /etc/ipsec.d/cacerts
1374 strongswan.conf(5), ipsec.secrets(5), ipsec(8), pluto(8)
1376 Originally written for the FreeS/WAN project by Henry Spencer.
1377 Updated and extended for the strongSwan project <http://www.strongswan.org> by
1378 Tobias Brunner, Andreas Steffen and Martin Willi.
1381 If conns are to be added before DNS is available, \fBleft=\fP\fIFQDN\fP