1 .TH IPSEC.CONF 5 "2011-12-14" "@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 previously used two separate keying daemons, \fIpluto\fP and
176 \fIcharon\fP. This manual does not discuss \fIpluto\fP options anymore, but
177 only \fIcharon\fP that since strongSwan 5.0 supports both IKEv1 and 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 authby " = " pubkey " | rsasig | ecdsasig | psk | never | xauthpsk | xauthrsasig"
241 how the two security gateways should authenticate each other;
242 acceptable values are
246 for pre-shared secrets,
248 (the default) for public key signatures as well as the synonyms
250 for RSA digital signatures and
252 for Elliptic Curve DSA signatures.
254 can be used if negotiation is never to be attempted or accepted (useful for
256 Digital signatures are superior in every way to shared secrets.
257 IKEv1 additionally supports the values
261 that will enable eXtended AUTHentication (XAUTH) in addition to IKEv1 main mode
262 based on shared secrets or digital RSA signatures, respectively.
263 This parameter is deprecated, as two peers do not need to agree on an
264 authentication method in IKEv2. Use the
266 parameter instead to define authentication methods.
268 .BR auto " = " ignore " | add | route | start"
269 what operation, if any, should be done automatically at IPsec startup;
270 currently-accepted values are
278 loads a connection without starting it.
280 loads a connection and installs kernel traps. If traffic is detected between
284 , a connection is established.
286 loads a connection and brings it up immediately.
288 ignores the connection. This is equal to delete a connection from the config
290 Relevant only locally, other end need not agree on it
291 (but in general, for an intended-to-be-permanent connection,
294 to ensure that any reboot causes immediate renegotiation).
296 .BR compress " = yes | " no
297 whether IPComp compression of content is proposed on the connection
298 (link-level compression does not work on encrypted data,
299 so to be effective, compression must be done \fIbefore\fR encryption);
300 acceptable values are
304 (the default). A value of
306 causes IPsec to propose both compressed and uncompressed,
307 and prefer compressed.
310 prevents IPsec from proposing compression;
311 a proposal to compress will still be accepted. IPComp is currently not supported
314 .BR dpdaction " = " none " | clear | hold | restart"
315 controls the use of the Dead Peer Detection protocol (DPD, RFC 3706) where
316 R_U_THERE notification messages (IKEv1) or empty INFORMATIONAL messages (IKEv2)
317 are periodically sent in order to check the
318 liveliness of the IPsec peer. The values
323 all activate DPD. If no activity is detected, all connections with a dead peer
324 are stopped and unrouted
326 put in the hold state
332 which disables the active sending of DPD messages.
334 .BR dpddelay " = " 30s " | <time>"
335 defines the period time interval with which R_U_THERE messages/INFORMATIONAL
336 exchanges are sent to the peer. These are only sent if no other traffic is
337 received. In IKEv2, a value of 0 sends no additional INFORMATIONAL
338 messages and uses only standard messages (such as those to rekey) to detect
341 .BR closeaction " = " none " | clear | hold | restart"
342 defines the action to take if the remote peer unexpectedly closes a CHILD_SA.
343 A closeaction should not be
344 used if the peer uses reauthentication or uniquids checking, as these events
345 might trigger a closeaction when not desired. Closeactions are currently
346 not supported with IKEv1.
348 .BR inactivity " = <time>"
349 defines the timeout interval, after which a CHILD_SA is closed if it did
350 not send or receive any traffic.
352 .BR eap_identity " = <id>"
353 defines the identity the client uses to reply to a EAP Identity request.
354 If defined on the EAP server, the defined identity will be used as peer
355 identity during EAP authentication. The special value
357 uses the EAP Identity method to ask the client for an EAP identity. If not
358 defined, the IKEv2 identity will be used as EAP identity.
360 .BR esp " = <cipher suites>"
361 comma-separated list of ESP encryption/authentication algorithms to be used
362 for the connection, e.g.
365 .BR encryption-integrity[-dhgroup][-esnmode] .
368 .BR aes128-sha1,3des-sha1 .
369 The daemon adds its extensive default proposal to this default
370 or the configured value. To restrict it to the configured proposal an
373 can be added at the end.
376 As a responder the daemon accepts the first supported proposal received from
377 the peer. In order to restrict a responder to only accept specific cipher
378 suites, the strict flag
380 exclamation mark) can be used, e.g: aes256-sha512-modp4096!
384 is specified, CHILD_SA/Quick Mode setup and rekeying include a separate
385 Diffie-Hellman exchange. Valid values for
391 Specifying both negotiates Extended Sequence Number support with the peer,
395 .BR forceencaps " = yes | " no
396 force UDP encapsulation for ESP packets even if no NAT situation is detected.
397 This may help to surmount restrictive firewalls. In order to force the peer to
398 encapsulate packets, NAT detection payloads are faked.
400 .BR ike " = <cipher suites>"
401 comma-separated list of IKE/ISAKMP SA encryption/authentication algorithms
403 .BR aes128-sha1-modp2048 .
405 .BR encryption-integrity-dhgroup .
406 In IKEv2, multiple algorithms and proposals may be included, such as
407 aes128-aes256-sha1-modp1536-modp2048,3des-sha1-md5-modp1024.
410 .B aes128-sha1-modp2048,3des-sha1-modp1536 .
411 The daemon adds its extensive default proposal to this
412 default or the configured value. To restrict it to the configured proposal an
415 can be added at the end.
418 As a responder the daemon accepts the first supported proposal received from
419 the peer. In order to restrict a responder to only accept specific cipher
420 suites, the strict flag
422 exclamation mark) can be used, e.g: aes256-sha512-modp4096!
424 .BR ikelifetime " = " 3h " | <time>"
425 how long the keying channel of a connection (ISAKMP or IKE SA)
426 should last before being renegotiated. Also see EXPIRY/REKEY below.
428 .BR installpolicy " = " yes " | no"
429 decides whether IPsec policies are installed in the kernel by the charon daemon
430 for a given connection. Allows peaceful cooperation e.g. with
431 the Mobile IPv6 daemon mip6d who wants to control the kernel policies.
432 Acceptable values are
437 .BR keyexchange " = " ike " | ikev1 | ikev2"
438 method of key exchange;
439 which protocol should be used to initialize the connection. Connections marked with
441 use IKEv2 when initiating, but accept any protocol version when responding.
443 .BR keyingtries " = " 3 " | <number> | %forever"
444 how many attempts (a whole number or \fB%forever\fP) should be made to
445 negotiate a connection, or a replacement for one, before giving up
448 The value \fB%forever\fP
449 means 'never give up'.
450 Relevant only locally, other end need not agree on it.
456 .BR left " = <ip address> | <fqdn> | %defaultroute | " %any
458 the IP address of the left participant's public-network interface
459 or one of several magic values.
463 will be filled in automatically with the local address
464 of the default-route interface (as determined at IPsec startup time and
465 during configuration update).
476 for the local endpoint signifies an address to be filled in (by automatic
477 keying) during negotiation. If the local peer initiates the connection setup
478 the routing table will be queried to determine the correct local IP address.
479 In case the local peer is responding to a connection setup then any IP address
480 that is assigned to a local interface will be accepted.
485 is used for the remote endpoint it literally means any IP address.
487 Please note that with the usage of wildcards multiple connection descriptions
488 might match a given incoming connection attempt. The most specific description
489 is used in that case.
491 .BR leftauth " = <auth method>"
492 Authentication method to use locally (left) or require from the remote (right)
494 Acceptable values are
496 for public key authentication (RSA/ECDSA),
498 for pre-shared key authentication,
500 to (require the) use of the Extensible Authentication Protocol in IKEv2, and
502 for IKEv1 eXtended Authentication.
503 To require a trustchain public key strength for the remote side, specify the
504 key type followed by the strength in bits (for example
510 an optional EAP method can be appended. Currently defined methods are
519 Alternatively, IANA assigned EAP method numbers are accepted. Vendor specific
520 EAP methods are defined in the form
522 .RB "(e.g. " eap-7-12345 ).
525 a XAuth authentication backend can be specified, such as
531 Hybrid authentication is used. For traditional XAuth authentication, define
535 .BR leftauth2 " = <auth method>"
538 but defines an additional authentication exchange. In IKEv1, only XAuth can be
539 used in the second authentication round. IKEv2 supports multiple complete
540 authentication rounds using "Multiple Authentication Exchanges" defined
541 in RFC4739. This allows, for example, separated authentication
544 .BR leftca " = <issuer dn> | %same"
545 the distinguished name of a certificate authority which is required to
546 lie in the trust path going from the left participant's certificate up
547 to the root certification authority.
549 .BR leftca2 " = <issuer dn> | %same"
552 but for the second authentication round (IKEv2 only).
554 .BR leftcert " = <path>"
555 the path to the left participant's X.509 certificate. The file can be encoded
556 either in PEM or DER format. OpenPGP certificates are supported as well.
557 Both absolute paths or paths relative to \fI/etc/ipsec.d/certs\fP
558 are accepted. By default
562 to the distinguished name of the certificate's subject and
564 to the distinguished name of the certificate's issuer.
565 The left participant's ID can be overridden by specifying a
567 value which must be certified by the certificate, though.
569 .BR leftcert2 " = <path>"
572 but for the second authentication round (IKEv2 only).
574 .BR leftcertpolicy " = <OIDs>"
575 Comma separated list of certificate policy OIDs the peers certificate must have.
576 OIDs are specified using the numerical dotted representation (IKEv2 only).
578 .BR leftfirewall " = yes | " no
579 whether the left participant is doing forwarding-firewalling
580 (including masquerading) using iptables for traffic from \fIleftsubnet\fR,
581 which should be turned off (for traffic to the other subnet)
582 once the connection is established;
583 acceptable values are
588 May not be used in the same connection description with
590 Implemented as a parameter to the default \fBipsec _updown\fR script.
592 Relevant only locally, other end need not agree on it.
594 If one or both security gateways are doing forwarding firewalling
595 (possibly including masquerading),
596 and this is specified using the firewall parameters,
597 tunnels established with IPsec are exempted from it
598 so that packets can flow unchanged through the tunnels.
599 (This means that all subnets connected in this manner must have
600 distinct, non-overlapping subnet address blocks.)
601 This is done by the default \fBipsec _updown\fR script.
603 In situations calling for more control,
604 it may be preferable for the user to supply his own
607 which makes the appropriate adjustments for his system.
609 .BR leftgroups " = <group list>"
610 a comma separated list of group names. If the
612 parameter is present then the peer must be a member of at least one
613 of the groups defined by the parameter.
615 .BR lefthostaccess " = yes | " no
616 inserts a pair of INPUT and OUTPUT iptables rules using the default
617 \fBipsec _updown\fR script, thus allowing access to the host itself
618 in the case where the host's internal interface is part of the
619 negotiated client subnet.
620 Acceptable values are
627 how the left participant should be identified for authentication;
630 Can be an IP address or a fully-qualified domain name preceded by
632 (which is used as a literal string and not resolved).
634 .BR leftid2 " = <id>"
635 identity to use for a second authentication for the left participant
636 (IKEv2 only); defaults to
639 .BR leftikeport " = <port>"
640 UDP port the left participant uses for IKE communication.
641 If unspecified, port 500 is used with the port floating
642 to 4500 if a NAT is detected or MOBIKE is enabled. Specifying a local IKE port
643 different from the default additionally requires a socket implementation that
644 listens to this port.
646 .BR leftnexthop " = %direct | %defaultroute | <ip address> | <fqdn>"
647 this parameter is usually not needed any more because the NETKEY IPsec stack
648 does not require explicit routing entries for the traffic to be tunneled. If
650 is used with IKEv1 then
652 must still be set in order for the source routes to work properly.
654 .BR leftprotoport " = <protocol>/<port>"
655 restrict the traffic selector to a single protocol and/or port.
657 .B leftprotoport=tcp/http
659 .B leftprotoport=6/80
663 .BR leftsendcert " = never | no | " ifasked " | always | yes"
672 .BR ifasked " (the default),"
673 the latter meaning that the peer must send a certificate request payload in
674 order to get a certificate in return.
676 .BR leftsourceip " = %config | %cfg | %modeconfig | %modecfg | <ip address>"
677 The internal source IP to use in a tunnel, also known as virtual IP. If the
678 value is one of the synonyms
684 an address is requested from the peer.
686 .BR rightsourceip " = %config | <network>/<netmask> | %poolname"
687 The internal source IP to use in a tunnel for the remote peer. If the
690 on the responder side, the initiator must propose an address which is then
691 echoed back. Also supported are address pools expressed as
692 \fInetwork\fB/\fInetmask\fR
693 or the use of an external IP address pool using %\fIpoolname\fR,
694 where \fIpoolname\fR is the name of the IP address pool used for the lookup.
696 .BR leftsubnet " = <ip subnet>"
697 private subnet behind the left participant, expressed as
698 \fInetwork\fB/\fInetmask\fR;
699 if omitted, essentially assumed to be \fIleft\fB/32\fR,
700 signifying that the left end of the connection goes to the left participant
701 only. Configured subnet of the peers may differ, the protocol narrows it to
702 the greatest common subnet. In IKEv1, this may lead to problems with other
703 implementations, make sure to configure identical subnets in such
704 configurations. IKEv2 supports multiple subnets separated by commas, IKEv1 only
705 interprets the first subnet of such a definition.
707 .BR leftupdown " = <path>"
708 what ``updown'' script to run to adjust routing and/or firewalling
709 when the status of the connection
711 .BR "ipsec _updown" ).
712 May include positional parameters separated by white space
713 (although this requires enclosing the whole string in quotes);
714 including shell metacharacters is unwise.
715 Relevant only locally, other end need not agree on it. Charon uses the updown
716 script to insert firewall rules only, since routing has been implemented
717 directly into the daemon.
719 .BR lifebytes " = <number>"
720 the number of bytes transmitted over an IPsec SA before it expires.
722 .BR lifepackets " = <number>"
723 the number of packets transmitted over an IPsec SA before it expires.
725 .BR lifetime " = " 1h " | <time>"
726 how long a particular instance of a connection
727 (a set of encryption/authentication keys for user packets) should last,
728 from successful negotiation to expiry;
729 acceptable values are an integer optionally followed by
732 or a decimal number followed by
738 in minutes, hours, or days respectively)
743 Normally, the connection is renegotiated (via the keying channel)
744 before it expires (see
746 The two ends need not exactly agree on
748 although if they do not,
749 there will be some clutter of superseded connections on the end
750 which thinks the lifetime is longer. Also see EXPIRY/REKEY below.
752 .BR marginbytes " = <number>"
753 how many bytes before IPsec SA expiry (see
755 should attempts to negotiate a replacement begin.
757 .BR marginpackets " = <number>"
758 how many packets before IPsec SA expiry (see
760 should attempts to negotiate a replacement begin.
762 .BR margintime " = " 9m " | <time>"
763 how long before connection expiry or keying-channel expiry
765 negotiate a replacement
766 begin; acceptable values as for
770 Relevant only locally, other end need not agree on it. Also see EXPIRY/REKEY
773 .BR mark " = <value>[/<mask>]"
774 sets an XFRM mark in the inbound and outbound
775 IPsec SAs and policies. If the mask is missing then a default
780 .BR mark_in " = <value>[/<mask>]"
781 sets an XFRM mark in the inbound IPsec SA and
782 policy. If the mask is missing then a default mask of
786 .BR mark_out " = <value>[/<mask>]"
787 sets an XFRM mark in the outbound IPsec SA and
788 policy. If the mask is missing then a default mask of
792 .BR mobike " = " yes " | no"
793 enables the IKEv2 MOBIKE protocol defined by RFC 4555. Accepted values are
799 the charon daemon will not actively propose MOBIKE as initiator and
800 ignore the MOBIKE_SUPPORTED notify as responder.
802 .BR modeconfig " = push | " pull
803 defines which mode is used to assign a virtual IP.
809 Push mode is currently not supported in charon, hence this parameter has no
812 .BR reauth " = " yes " | no"
813 whether rekeying of an IKE_SA should also reauthenticate the peer. In IKEv1,
814 reauthentication is always done. In IKEv2, a value of
816 rekeys without uninstalling the IPsec SAs, a value of
818 (the default) creates a new IKE_SA from scratch and tries to recreate
821 .BR rekey " = " yes " | no"
822 whether a connection should be renegotiated when it is about to expire;
823 acceptable values are
828 The two ends need not agree, but while a value of
830 prevents charon from requesting renegotiation,
831 it does not prevent responding to renegotiation requested from the other end,
834 will be largely ineffective unless both ends agree on it.
836 .BR rekeyfuzz " = " 100% " | <percentage>"
837 maximum percentage by which
842 should be randomly increased to randomize rekeying intervals
843 (important for hosts with many connections);
844 acceptable values are an integer,
845 which may exceed 100,
851 after this random increase,
854 (where TYPE is one of
861 will suppress randomization.
862 Relevant only locally, other end need not agree on it. Also see EXPIRY/REKEY
869 .BR reqid " = <number>"
870 sets the reqid for a given connection to a pre-configured fixed value.
873 number of bytes to pad ESP payload data to. Traffic Flow Confidentiality
874 is currently supported in IKEv2 and applies to outgoing packets only. The
877 fills up ESP packets with padding to have the size of the MTU.
879 .BR type " = " tunnel " | transport | transport_proxy | passthrough | drop"
880 the type of the connection; currently the accepted values
884 signifying a host-to-host, host-to-subnet, or subnet-to-subnet tunnel;
886 signifying host-to-host transport mode;
887 .BR transport_proxy ,
888 signifying the special Mobile IPv6 transport proxy mode;
890 signifying that no IPsec processing should be done at all;
892 signifying that packets should be discarded.
894 .BR xauth " = " client " | server"
895 specifies the role in the XAuth protocol if activated by
898 .B authby=xauthrsasig.
905 .BR xauth_identity " = <id>"
906 defines the identity/username the client uses to reply to an XAuth request.
907 If not defined, the IKEv1 identity will be used as XAuth identity.
909 .SS "CONN PARAMETERS: IKEv2 MEDIATION EXTENSION"
910 The following parameters are relevant to IKEv2 Mediation Extension
913 .BR mediation " = yes | " no
914 whether this connection is a mediation connection, ie. whether this
915 connection is used to mediate other connections. Mediation connections
916 create no child SA. Acceptable values are
921 .BR mediated_by " = <name>"
922 the name of the connection to mediate this connection through. If given,
923 the connection will be mediated through the named mediation connection.
924 The mediation connection must set
927 .BR me_peerid " = <id>"
928 ID as which the peer is known to the mediation server, ie. which the other
929 end of this connection uses as its
931 on its connection to the mediation server. This is the ID we request the
932 mediation server to mediate us with. If
936 of this connection will be used as peer ID.
939 These are optional sections that can be used to assign special
940 parameters to a Certification Authority (CA). Because the daemons
941 automatically import CA certificates from \fI/etc/ipsec.d/cacerts\fP,
942 there is no need to explicitly add them with a CA section, unless you
943 want to assign special parameters (like a CRL) to a CA.
949 .BR auto " = " ignore " | add"
950 currently can have either the value
955 .BR cacert " = <path>"
956 defines a path to the CA certificate either relative to
957 \fI/etc/ipsec.d/cacerts\fP or as an absolute path.
959 .BR crluri " = <uri>"
960 defines a CRL distribution point (ldap, http, or file URI)
966 .BR crluri2 " = <uri>"
967 defines an alternative CRL distribution point (ldap, http, or file URI)
970 .BR ocspuri " = <uri>"
977 .BR ocspuri2 " = <uri>"
978 defines an alternative OCSP URI.
980 .BR certuribase " = <uri>"
981 defines the base URI for the Hash and URL feature supported by IKEv2.
982 Instead of exchanging complete certificates, IKEv2 allows to send an URI
983 that resolves to the DER encoded certificate. The certificate URIs are built
984 by appending the SHA1 hash of the DER encoded certificates to this base URI.
985 .SH "CONFIG SECTIONS"
988 section known to the IPsec software is the one named
990 which contains information used when the software is being started.
991 The currently-accepted
998 .BR strictcrlpolicy " = yes | ifuri | " no
999 defines if a fresh CRL must be available in order for the peer authentication
1000 based on RSA signatures to succeed.
1001 IKEv2 additionally recognizes
1005 if at least one CRL URI is defined and to
1009 .BR uniqueids " = " yes " | no | replace | keep"
1010 whether a particular participant ID should be kept unique,
1011 with any new (automatically keyed)
1012 connection using an ID from a different IP address
1013 deemed to replace all old ones using that ID;
1014 acceptable values are
1019 Participant IDs normally \fIare\fR unique,
1020 so a new (automatically-keyed) connection using the same ID is
1021 almost invariably intended to replace an old one.
1022 The daemon also accepts the value
1024 which is identical to
1028 to reject new IKE_SA setups and keep the duplicate established earlier.
1030 .BR charondebug " = <debug list>"
1031 how much charon debugging output should be logged.
1032 A comma separated list containing type/level-pairs may
1034 .B dmn 3, ike 1, net -1.
1035 Acceptable values for types are
1036 .B dmn, mgr, ike, chd, job, cfg, knl, net, asn, enc, lib, tls, tnc, imc, imv, pts
1037 and the level is one of
1038 .B -1, 0, 1, 2, 3, 4
1039 (for silent, audit, control, controlmore, raw, private). By default, the level
1042 for all types. For more flexibility see LOGGER CONFIGURATION in
1043 .IR strongswan.conf (5).
1046 The IKE SAs and IPsec SAs negotiated by the daemon can be configured to expire
1047 after a specific amount of time. For IPsec SAs this can also happen after a
1048 specified number of transmitted packets or transmitted bytes. The following
1049 settings can be used to configure this:
1051 l r l r,- - - -,lB s lB s,a r a r.
1052 Setting Default Setting Default
1054 ikelifetime 3h lifebytes -
1059 IKE SAs as well as IPsec SAs can be rekeyed before they expire. This can be
1060 configured using the following settings:
1062 l r l r,- - - -,lB s lB s,a r a r.
1063 Setting Default Setting Default
1064 IKE and IPsec SA IPsec SA
1065 margintime 9m marginbytes -
1069 To avoid collisions the specified margins are increased randomly before
1070 subtracting them from the expiration limits (see formula below). This is
1081 Randomization can be disabled by setting
1082 .BR rekeyfuzz " to " 0% .
1084 The following formula is used to calculate the rekey time of IPsec SAs:
1087 rekeytime = lifetime - (margintime + random(0, margintime * rekeyfuzz))
1090 It applies equally to IKE SAs and byte and packet limits for IPsec SAs.
1092 Let's consider the default configuration:
1100 From the formula above follows that the rekey time lies between:
1103 rekeytime_min = 1h - (9m + 9m) = 42m
1104 rekeytime_max = 1h - (9m + 0m) = 51m
1107 Thus, the daemon will attempt to rekey the IPsec SA at a random time
1108 between 42 and 51 minutes after establishing the SA. Or, in other words,
1109 between 9 and 18 minutes before the SA expires.
1112 Since the rekeying of an SA needs some time, the margin values must not be
1116 .B margin... + margin... * rekeyfuzz
1117 must not exceed the original limit. For example, specifying
1119 in the default configuration is a bad idea as there is a chance that the rekey
1120 time equals zero and, thus, rekeying gets disabled.
1124 /etc/ipsec.d/aacerts
1126 /etc/ipsec.d/cacerts
1131 strongswan.conf(5), ipsec.secrets(5), ipsec(8)
1133 Originally written for the FreeS/WAN project by Henry Spencer.
1134 Updated and extended for the strongSwan project <http://www.strongswan.org> by
1135 Tobias Brunner, Andreas Steffen and Martin Willi.
1138 If conns are to be added before DNS is available, \fBleft=\fP\fIFQDN\fP