summaryrefslogtreecommitdiffstats
path: root/usr.sbin/sasyncd/sasyncd.conf.5
blob: 7ca4f001b27fcca0bd819aa96a3e089b1742172e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
.\" $OpenBSD: sasyncd.conf.5,v 1.19 2020/02/10 13:18:22 schwarze Exp $
.\"
.\" Copyright (c) 2005 H�kan Olsson.  All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\"
.\" 1. Redistributions of source code must retain the above copyright
.\"    notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\"    notice, this list of conditions and the following disclaimer in the
.\"    documentation and/or other materials provided with the distribution.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.\"
.\" This code was written under funding by Multicom Security AB.
.\"
.\" Manual page for sasyncd.conf
.\"
.Dd $Mdocdate: February 10 2020 $
.Dt SASYNCD.CONF 5
.Os
.Sh NAME
.Nm sasyncd.conf
.Nd configuration file for sasyncd
.Sh DESCRIPTION
.Nm
is the configuration file for the
.Xr sasyncd 8
daemon.
.Pp
The current line can be extended over multiple lines using a backslash
.Pq Sq \e .
Comments can be put anywhere in the file using a hash mark
.Pq Sq # ,
and extend to the end of the current line.
Care should be taken when commenting out multi-line text:
the comment is effective until the end of the entire block.
.Pp
Since the file contains the shared secret key used to encrypt data
between this host and the others,
.Pa /etc/sasyncd.conf
must be owned either by
.Dq root
or the
.Dq _isakmpd
pseudo user and be readable only by this owner, e.g.\&
.Bd -literal -offset indent
# chown root /etc/sasyncd.conf
# chmod 0600 /etc/sasyncd.conf
.Ed
.Pp
The following configuration settings are understood:
.Bl -tag -width Ds
.It Xo
.Ic interface
.Ar interface
.Xc
Specify which
.Xr carp 4
interface
.Xr sasyncd 8
should track master/slave state on.
.It Xo
.Ic group
.Ar group
.Xc
Specify on which interface group
.Xr sasyncd 8
should increase the demote counter.
This has the effect of suppressing
.Xr carp 4
preemption while initial
.Xr sasyncd 8
state is established.
The default is to use the
.Dq carp
group.
.Pp
For more information on interface groups,
see the
.Ic group
keyword in
.Xr ifconfig 8 .
.It Ic flushmode sync | startup | never
Controls how the
.Xr sasyncd 8
master host handles SADB_FLUSH messages to its slaves.
.Pp
.Bl -tag -width "startupXX" -offset indent -compact
.It Ic sync
Pass any SADB_FLUSH messages along.
For example, in this mode
.Xr sasyncd 8
will synchronize an
.Ic ipsecctl -F
command to all connected slaves.
For more information, see
.Xr ipsecctl 8 .
.It Ic startup
Send a SADB_FLUSH message to the slaves as they connect, and act as
.Ic sync
afterwards.
This is the default.
.It Ic never
Never send SADB_FLUSH messages.
.El
.It Xo
.Ic listen on Ar address
.Op Ar family
.Op Ic port Ar port
.Xc
Specify a local IP address, hostname, or interface the
.Xr sasyncd 8
daemon should listen on.
The default is to listen on all local addresses.
When using an interface name,
.Ar family
may be given as
.Dq inet
or
.Dq inet6
to only bind using the specified address family.
Finally,
.Ar port
can be used to specify which TCP port
.Xr sasyncd 8
should listen to.
The default is to listen to port 500.
.It Ic mode master | slave
Force the daemon to run as master or slave.
Normally only intended for debugging use.
.It Ic mode skipslave
Prevent the daemon from syncing SA or SPD messages where the source or
destination address is one of the configured peers.
Intended to permit IPsec
.Xr pfsync 4
protection.
This mode is experimental.
.It Ic peer Ar address
Specify a
.Xr sasyncd 8
peer IP address or hostname.
May be specified multiple times.
For example:
.Bd -literal -offset indent
peer 10.0.0.2
peer 10.0.0.3
peer 10.0.0.4
.Ed
.It Ic sharedkey Ar key
The shared AES key used to encrypt messages between
.Xr sasyncd 8
hosts.
This configuration setting is required and must be either 16, 24 or 32
bytes long (corresponding to AES using a 128, 192 or 256 bit key).
.It Ic control isakmpd | iked | all | none
By default,
.Xr sasyncd 8
tracks its local master/slave mode and toggles the passive mode of
.Xr isakmpd 8
accordingly.
This option can be changed to control
.Xr iked 8
instead,
to control all supported daemons at the same time,
or to turn it off to synchronize SAs only.
.El
.Sh FILES
.Bl -tag -width /etc/examples/sasyncd.conf -compact
.It Pa /etc/sasyncd.conf
.It Pa /etc/examples/sasyncd.conf
.El
.Sh SEE ALSO
.Xr chmod 1 ,
.Xr carp 4 ,
.Xr chown 8 ,
.Xr ipsecctl 8 ,
.Xr sasyncd 8
.Sh HISTORY
The
.Nm
file format first appeared in
.Ox 3.8 .