chiark / gitweb /
systemctl: make sure status -a doesn't terminate too soon
[elogind.git] / man / systemd.socket.xml
1 <?xml version='1.0'?> <!--*-nxml-*-->
2 <?xml-stylesheet type="text/xsl" href="http://docbook.sourceforge.net/release/xsl/current/xhtml/docbook.xsl"?>
3 <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
4         "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
5
6 <!--
7   This file is part of systemd.
8
9   Copyright 2010 Lennart Poettering
10
11   systemd is free software; you can redistribute it and/or modify it
12   under the terms of the GNU Lesser General Public License as published by
13   the Free Software Foundation; either version 2.1 of the License, or
14   (at your option) any later version.
15
16   systemd is distributed in the hope that it will be useful, but
17   WITHOUT ANY WARRANTY; without even the implied warranty of
18   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19   Lesser General Public License for more details.
20
21   You should have received a copy of the GNU Lesser General Public License
22   along with systemd; If not, see <http://www.gnu.org/licenses/>.
23 -->
24
25 <refentry id="systemd.socket">
26         <refentryinfo>
27                 <title>systemd.socket</title>
28                 <productname>systemd</productname>
29
30                 <authorgroup>
31                         <author>
32                                 <contrib>Developer</contrib>
33                                 <firstname>Lennart</firstname>
34                                 <surname>Poettering</surname>
35                                 <email>lennart@poettering.net</email>
36                         </author>
37                 </authorgroup>
38         </refentryinfo>
39
40         <refmeta>
41                 <refentrytitle>systemd.socket</refentrytitle>
42                 <manvolnum>5</manvolnum>
43         </refmeta>
44
45         <refnamediv>
46                 <refname>systemd.socket</refname>
47                 <refpurpose>Socket unit configuration</refpurpose>
48         </refnamediv>
49
50         <refsynopsisdiv>
51                 <para><filename><replaceable>socket</replaceable>.socket</filename></para>
52         </refsynopsisdiv>
53
54         <refsect1>
55                 <title>Description</title>
56
57                 <para>A unit configuration file whose name ends in
58                 <literal>.socket</literal> encodes information about
59                 an IPC or network socket or a file system FIFO
60                 controlled and supervised by systemd, for socket-based
61                 activation.</para>
62
63                 <para>This man page lists the configuration options
64                 specific to this unit type. See
65                 <citerefentry><refentrytitle>systemd.unit</refentrytitle><manvolnum>5</manvolnum></citerefentry>
66                 for the common options of all unit configuration
67                 files. The common configuration items are configured
68                 in the generic [Unit] and [Install] sections. The
69                 socket specific configuration options are configured
70                 in the [Socket] section.</para>
71
72                 <para>Additional options are listed in
73                 <citerefentry><refentrytitle>systemd.exec</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
74                 which define the execution environment the
75                 <option>ExecStartPre=</option>,
76                 <option>ExecStartPost=</option>,
77                 <option>ExecStopPre=</option> and
78                 <option>ExecStopPost=</option> commands are executed
79                 in, and in
80                 <citerefentry><refentrytitle>systemd.kill</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
81                 which define the way the processes are terminated, and
82                 in
83                 <citerefentry><refentrytitle>systemd.resource-control</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
84                 which configure resource control settings for the
85                 processes of the socket.</para>
86
87                 <para>For each socket file, a matching service file
88                 must exist, describing the service to start on
89                 incoming traffic on the socket (see
90                 <citerefentry><refentrytitle>systemd.service</refentrytitle><manvolnum>5</manvolnum></citerefentry>
91                 for more information about .service files). The name
92                 of the .service unit is by default the same as the
93                 name of the .socket unit, but can be altered with the
94                 <option>Service=</option> option described below.
95                 Depending on the setting of the <option>Accept=</option>
96                 option described below, this .service unit must either
97                 be named like the .socket unit, but with the suffix
98                 replaced, unless overridden with
99                 <option>Service=</option>; or it must be a template
100                 unit named the same way. Example: a socket file
101                 <filename>foo.socket</filename> needs a matching
102                 service <filename>foo.service</filename> if
103                 <option>Accept=false</option> is set. If
104                 <option>Accept=true</option> is set, a service
105                 template file <filename>foo@.service</filename> must
106                 exist from which services are instantiated for each
107                 incoming connection.</para>
108
109                 <para>Unless <varname>DefaultDependencies=</varname>
110                 is set to <option>false</option>, socket units will
111                 implicitly have dependencies of type
112                 <varname>Requires=</varname> and
113                 <varname>After=</varname> on
114                 <filename>sysinit.target</filename> as well as
115                 dependencies of type <varname>Conflicts=</varname> and
116                 <varname>Before=</varname> on
117                 <filename>shutdown.target</filename>. These ensure
118                 that socket units pull in basic system
119                 initialization, and are terminated cleanly prior to
120                 system shutdown. Only sockets involved with early
121                 boot or late system shutdown should disable this
122                 option.</para>
123
124                 <para>Socket units will have a
125                 <varname>Before=</varname> dependency on the service
126                 which they trigger added implicitly. No implicit
127                 <varname>WantedBy=</varname> or
128                 <varname>RequiredBy=</varname> dependency from the
129                 socket to the service is added. This means that the
130                 service may be started without the socket, in which
131                 case it must be able to open sockets by itself. To
132                 prevent this, an explicit <varname>Requires=</varname>
133                 dependency may be added.</para>
134
135                 <para>Socket units may be used to implement on-demand
136                 starting of services, as well as parallelized starting
137                 of services. See the blog stories linked at the end
138                 for an introduction.</para>
139
140                 <para>Note that the daemon software configured for
141                 socket activation with socket units needs to be able
142                 to accept sockets from systemd, either via systemd's
143                 native socket passing interface (see
144                 <citerefentry><refentrytitle>sd_listen_fds</refentrytitle><manvolnum>3</manvolnum></citerefentry>
145                 for details) or via the traditional
146                 <citerefentry><refentrytitle>inetd</refentrytitle><manvolnum>8</manvolnum></citerefentry>-style
147                 socket passing (i.e. sockets passed in via standard input and
148                 output, using <varname>StandardInput=socket</varname>
149                 in the service file).</para>
150         </refsect1>
151
152         <refsect1>
153                 <title>Options</title>
154
155                 <para>Socket files must include a [Socket] section,
156                 which carries information about the socket or FIFO it
157                 supervises. A number of options that may be used in
158                 this section are shared with other unit types. These
159                 options are documented in
160                 <citerefentry><refentrytitle>systemd.exec</refentrytitle><manvolnum>5</manvolnum></citerefentry>
161                 and
162                 <citerefentry><refentrytitle>systemd.kill</refentrytitle><manvolnum>5</manvolnum></citerefentry>. The
163                 options specific to the [Socket] section of socket
164                 units are the following:</para>
165
166                 <variablelist class='unit-directives'>
167                         <varlistentry>
168                                 <term><varname>ListenStream=</varname></term>
169                                 <term><varname>ListenDatagram=</varname></term>
170                                 <term><varname>ListenSequentialPacket=</varname></term>
171                                 <listitem><para>Specifies an address
172                                 to listen on for a stream
173                                 (<constant>SOCK_STREAM</constant>), datagram (<constant>SOCK_DGRAM</constant>),
174                                 or sequential packet
175                                 (<constant>SOCK_SEQPACKET</constant>) socket, respectively. The address
176                                 can be written in various formats:</para>
177
178                                 <para>If the address starts with a
179                                 slash (<literal>/</literal>), it is read as file system
180                                 socket in the <constant>AF_UNIX</constant> socket
181                                 family.</para>
182
183                                 <para>If the address starts with an at
184                                 symbol (<literal>@</literal>), it is read as abstract
185                                 namespace socket in the
186                                 <constant>AF_UNIX</constant>
187                                 family. The <literal>@</literal> is
188                                 replaced with a
189                                 <constant>NUL</constant> character
190                                 before binding. For details, see
191                                 <citerefentry><refentrytitle>unix</refentrytitle><manvolnum>7</manvolnum></citerefentry>.</para>
192
193                                 <para>If the address string is a
194                                 single number, it is read as port
195                                 number to listen on via
196                                 IPv6. Depending on the value of
197                                 <varname>BindIPv6Only=</varname> (see below) this
198                                 might result in the service being
199                                 available via both IPv6 and IPv4 (default) or
200                                 just via IPv6.
201                                 </para>
202
203                                 <para>If the address string is a
204                                 string in the format v.w.x.y:z, it is
205                                 read as IPv4 specifier for listening
206                                 on an address v.w.x.y on a port
207                                 z.</para>
208
209                                 <para>If the address string is a
210                                 string in the format [x]:y, it is read
211                                 as IPv6 address x on a port y. Note
212                                 that this might make the service
213                                 available via IPv4, too, depending on
214                                 the <varname>BindIPv6Only=</varname>
215                                 setting (see below).
216                                 </para>
217
218                                 <para>Note that <constant>SOCK_SEQPACKET</constant>
219                                 (i.e. <varname>ListenSequentialPacket=</varname>)
220                                 is only available for <constant>AF_UNIX</constant>
221                                 sockets. <constant>SOCK_STREAM</constant>
222                                 (i.e. <varname>ListenStream=</varname>)
223                                 when used for IP sockets refers to TCP
224                                 sockets, <constant>SOCK_DGRAM</constant>
225                                 (i.e. <varname>ListenDatagram=</varname>)
226                                 to UDP.</para>
227
228                                 <para>These options may be specified
229                                 more than once in which case incoming
230                                 traffic on any of the sockets will
231                                 trigger service activation, and all
232                                 listed sockets will be passed to the
233                                 service, regardless of whether there is
234                                 incoming traffic on them or not. If
235                                 the empty string is assigned to any of
236                                 these options, the list of addresses
237                                 to listen on is reset, all prior uses
238                                 of any of these options will have no
239                                 effect.</para>
240
241                                 <para>It is also possible to have more
242                                 than one socket unit for the same
243                                 service when using
244                                 <varname>Service=</varname>, and the
245                                 service will receive all the sockets
246                                 configured in all the socket units.
247                                 Sockets configured in one unit are
248                                 passed in the order of configuration,
249                                 but no ordering between socket units
250                                 is specified.</para>
251
252                                 <para>If an IP address is used here,
253                                 it is often desirable to listen on it
254                                 before the interface it is configured
255                                 on is up and running, and even
256                                 regardless of whether it will be up and
257                                 running at any point. To deal with this,
258                                 it is recommended to set the
259                                 <varname>FreeBind=</varname> option
260                                 described below.</para></listitem>
261                         </varlistentry>
262
263                         <varlistentry>
264                                 <term><varname>ListenFIFO=</varname></term>
265                                 <listitem><para>Specifies a file
266                                 system FIFO to listen on. This expects
267                                 an absolute file system path as
268                                 argument. Behavior otherwise is very
269                                 similar to the
270                                 <varname>ListenDatagram=</varname>
271                                 directive above.</para></listitem>
272                         </varlistentry>
273
274                         <varlistentry>
275                                 <term><varname>ListenSpecial=</varname></term>
276                                 <listitem><para>Specifies a special
277                                 file in the file system to listen
278                                 on. This expects an absolute file
279                                 system path as argument. Behavior
280                                 otherwise is very similar to the
281                                 <varname>ListenFIFO=</varname>
282                                 directive above. Use this to open
283                                 character device nodes as well as
284                                 special files in
285                                 <filename>/proc</filename> and
286                                 <filename>/sys</filename>.</para></listitem>
287                         </varlistentry>
288
289                         <varlistentry>
290                                 <term><varname>ListenNetlink=</varname></term>
291                                 <listitem><para>Specifies a Netlink
292                                 family to create a socket for to
293                                 listen on. This expects a short string
294                                 referring to the <constant>AF_NETLINK</constant> family
295                                 name (such as <varname>audit</varname>
296                                 or <varname>kobject-uevent</varname>)
297                                 as argument, optionally suffixed by a
298                                 whitespace followed by a multicast
299                                 group integer. Behavior otherwise is
300                                 very similar to the
301                                 <varname>ListenDatagram=</varname>
302                                 directive above.</para></listitem>
303                         </varlistentry>
304
305                         <varlistentry>
306                                 <term><varname>ListenMessageQueue=</varname></term>
307                                 <listitem><para>Specifies a POSIX
308                                 message queue name to listen on. This
309                                 expects a valid message queue name
310                                 (i.e. beginning with /). Behavior
311                                 otherwise is very similar to the
312                                 <varname>ListenFIFO=</varname>
313                                 directive above. On Linux message
314                                 queue descriptors are actually file
315                                 descriptors and can be inherited
316                                 between processes.</para></listitem>
317                         </varlistentry>
318
319                         <varlistentry>
320                                 <term><varname>BindIPv6Only=</varname></term>
321                                 <listitem><para>Takes a one of
322                                 <option>default</option>,
323                                 <option>both</option> or
324                                 <option>ipv6-only</option>. Controls
325                                 the IPV6_V6ONLY socket option (see
326                                 <citerefentry><refentrytitle>ipv6</refentrytitle><manvolnum>7</manvolnum></citerefentry>
327                                 for details). If
328                                 <option>both</option>, IPv6 sockets
329                                 bound will be accessible via both IPv4
330                                 and IPv6. If
331                                 <option>ipv6-only</option>, they will
332                                 be accessible via IPv6 only. If
333                                 <option>default</option> (which is the
334                                 default, surprise!), the system wide
335                                 default setting is used, as controlled
336                                 by
337                                 <filename>/proc/sys/net/ipv6/bindv6only</filename>,
338                                 which in turn defaults to the
339                                 equivalent of
340                                 <option>both</option>.</para>
341                                 </listitem>
342                         </varlistentry>
343
344                         <varlistentry>
345                                 <term><varname>Backlog=</varname></term>
346                                 <listitem><para>Takes an unsigned
347                                 integer argument. Specifies the number
348                                 of connections to queue that have not
349                                 been accepted yet. This setting
350                                 matters only for stream and sequential
351                                 packet sockets. See
352                                 <citerefentry><refentrytitle>listen</refentrytitle><manvolnum>2</manvolnum></citerefentry>
353                                 for details. Defaults to SOMAXCONN
354                                 (128).</para></listitem>
355                         </varlistentry>
356
357                         <varlistentry>
358                                 <term><varname>BindToDevice=</varname></term>
359                                 <listitem><para>Specifies a network
360                                 interface name to bind this socket
361                                 to. If set, traffic will only be
362                                 accepted from the specified network
363                                 interfaces. This controls the
364                                 SO_BINDTODEVICE socket option (see
365                                 <citerefentry><refentrytitle>socket</refentrytitle><manvolnum>7</manvolnum></citerefentry>
366                                 for details). If this option is used,
367                                 an automatic dependency from this
368                                 socket unit on the network interface
369                                 device unit
370                                 (<citerefentry><refentrytitle>systemd.device</refentrytitle><manvolnum>5</manvolnum></citerefentry>
371                                 is created.</para></listitem>
372                         </varlistentry>
373
374                         <varlistentry>
375                                 <term><varname>DirectoryMode=</varname></term>
376                                 <listitem><para>If listening on a file
377                                 system socket or FIFO, the parent
378                                 directories are automatically created
379                                 if needed. This option specifies the
380                                 file system access mode used when
381                                 creating these directories. Takes an
382                                 access mode in octal
383                                 notation. Defaults to
384                                 0755.</para></listitem>
385                         </varlistentry>
386
387                         <varlistentry>
388                                 <term><varname>SocketMode=</varname></term>
389                                 <listitem><para>If listening on a file
390                                 system socket or FIFO, this option
391                                 specifies the file system access mode
392                                 used when creating the file
393                                 node. Takes an access mode in octal
394                                 notation. Defaults to
395                                 0666.</para></listitem>
396                         </varlistentry>
397
398                         <varlistentry>
399                                 <term><varname>Accept=</varname></term>
400                                 <listitem><para>Takes a boolean
401                                 argument. If true, a service instance
402                                 is spawned for each incoming
403                                 connection and only the connection
404                                 socket is passed to it. If false, all
405                                 listening sockets themselves are
406                                 passed to the started service unit,
407                                 and only one service unit is spawned
408                                 for all connections (also see
409                                 above). This value is ignored for
410                                 datagram sockets and FIFOs where a
411                                 single service unit unconditionally
412                                 handles all incoming traffic. Defaults
413                                 to <option>false</option>. For
414                                 performance reasons, it is recommended
415                                 to write new daemons only in a way
416                                 that is suitable for
417                                 <option>Accept=false</option>. A
418                                 daemon listening on an <constant>AF_UNIX</constant> socket
419                                 may, but does not need to, call
420                                 <citerefentry><refentrytitle>close</refentrytitle><manvolnum>2</manvolnum></citerefentry>
421                                 on the received socket before
422                                 exiting. However, it must not unlink
423                                 the socket from a file system. It
424                                 should not invoke
425                                 <citerefentry><refentrytitle>shutdown</refentrytitle><manvolnum>2</manvolnum></citerefentry>
426                                 on sockets it got with
427                                 <varname>Accept=false</varname>, but
428                                 it may do so for sockets it got with
429                                 <varname>Accept=true</varname> set.
430                                 Setting <varname>Accept=true</varname>
431                                 is mostly useful to allow daemons
432                                 designed for usage with
433                                 <citerefentry><refentrytitle>inetd</refentrytitle><manvolnum>8</manvolnum></citerefentry>
434                                 to work unmodified with systemd socket
435                                 activation.</para></listitem>
436                         </varlistentry>
437
438                         <varlistentry>
439                                 <term><varname>MaxConnections=</varname></term>
440                                 <listitem><para>The maximum number of
441                                 connections to simultaneously run
442                                 services instances for, when
443                                 <option>Accept=true</option> is
444                                 set. If more concurrent connections
445                                 are coming in, they will be refused
446                                 until at least one existing connection
447                                 is terminated. This setting has no
448                                 effect on sockets configured with
449                                 <option>Accept=false</option> or datagram
450                                 sockets. Defaults to
451                                 64.</para></listitem>
452                         </varlistentry>
453
454                         <varlistentry>
455                                 <term><varname>KeepAlive=</varname></term>
456                                 <listitem><para>Takes a boolean
457                                 argument. If true, the TCP/IP stack
458                                 will send a keep alive message after
459                                 2h (depending on the configuration of
460                                 <filename>/proc/sys/net/ipv4/tcp_keepalive_time</filename>)
461                                 for all TCP streams accepted on this
462                                 socket. This controls the SO_KEEPALIVE
463                                 socket option (see
464                                 <citerefentry><refentrytitle>socket</refentrytitle><manvolnum>7</manvolnum></citerefentry>
465                                 and the <ulink
466                                 url="http://www.tldp.org/HOWTO/html_single/TCP-Keepalive-HOWTO/">TCP
467                                 Keepalive HOWTO</ulink> for details.)
468                                 Defaults to
469                                 <option>false</option>.</para></listitem>
470                         </varlistentry>
471
472                         <varlistentry>
473                                 <term><varname>Priority=</varname></term>
474                                 <listitem><para>Takes an integer
475                                 argument controlling the priority for
476                                 all traffic sent from this
477                                 socket. This controls the SO_PRIORITY
478                                 socket option (see
479                                 <citerefentry><refentrytitle>socket</refentrytitle><manvolnum>7</manvolnum></citerefentry>
480                                 for details.).</para></listitem>
481                         </varlistentry>
482
483                         <varlistentry>
484                                 <term><varname>ReceiveBuffer=</varname></term>
485                                 <term><varname>SendBuffer=</varname></term>
486                                 <listitem><para>Takes an integer
487                                 argument controlling the receive or
488                                 send buffer sizes of this socket,
489                                 respectively. This controls the
490                                 SO_RCVBUF and SO_SNDBUF socket options
491                                 (see
492                                 <citerefentry><refentrytitle>socket</refentrytitle><manvolnum>7</manvolnum></citerefentry>
493                                 for details.). The usual suffixes K,
494                                 M, G are supported and are understood
495                                 to the base of 1024.</para></listitem>
496                         </varlistentry>
497
498                         <varlistentry>
499                                 <term><varname>IPTOS=</varname></term>
500                                 <listitem><para>Takes an integer
501                                 argument controlling the IP
502                                 Type-Of-Service field for packets
503                                 generated from this socket. This
504                                 controls the IP_TOS socket option (see
505                                 <citerefentry><refentrytitle>ip</refentrytitle><manvolnum>7</manvolnum></citerefentry>
506                                 for details.). Either a numeric string
507                                 or one of <option>low-delay</option>,
508                                 <option>throughput</option>,
509                                 <option>reliability</option> or
510                                 <option>low-cost</option> may be
511                                 specified.</para></listitem>
512                         </varlistentry>
513
514                         <varlistentry>
515                                 <term><varname>IPTTL=</varname></term>
516                                 <listitem><para>Takes an integer
517                                 argument controlling the IPv4
518                                 Time-To-Live/IPv6 Hop-Count field for
519                                 packets generated from this
520                                 socket. This sets the
521                                 IP_TTL/IPV6_UNICAST_HOPS socket
522                                 options (see
523                                 <citerefentry><refentrytitle>ip</refentrytitle><manvolnum>7</manvolnum></citerefentry>
524                                 and
525                                 <citerefentry><refentrytitle>ipv6</refentrytitle><manvolnum>7</manvolnum></citerefentry>
526                                 for details.)</para></listitem>
527                         </varlistentry>
528
529                         <varlistentry>
530                                 <term><varname>Mark=</varname></term>
531                                 <listitem><para>Takes an integer
532                                 value. Controls the firewall mark of
533                                 packets generated by this socket. This
534                                 can be used in the firewall logic to
535                                 filter packets from this socket. This
536                                 sets the SO_MARK socket option. See
537                                 <citerefentry><refentrytitle>iptables</refentrytitle><manvolnum>8</manvolnum></citerefentry>
538                                 for details.</para></listitem>
539                         </varlistentry>
540
541                         <varlistentry>
542                                 <term><varname>ReusePort=</varname></term>
543                                 <listitem><para>Takes a boolean
544                                 value. If true, allows multiple <citerefentry><refentrytitle>bind</refentrytitle><manvolnum>2</manvolnum></citerefentry>s
545                                 to this TCP or UDP port.  This
546                                 controls the SO_REUSEPORT socket
547                                 option.  See
548                                 <citerefentry><refentrytitle>socket</refentrytitle><manvolnum>7</manvolnum></citerefentry>
549                                 for details.</para></listitem>
550                         </varlistentry>
551
552                         <varlistentry>
553                                 <term><varname>SmackLabel=</varname></term>
554                                 <term><varname>SmackLabelIPIn=</varname></term>
555                                 <term><varname>SmackLabelIPOut=</varname></term>
556                                 <listitem><para>Takes a string
557                                 value. Controls the extended
558                                 attributes
559                                 <literal>security.SMACK64</literal>,
560                                 <literal>security.SMACK64IPIN</literal>
561                                 and
562                                 <literal>security.SMACK64IPOUT</literal>,
563                                 respectively, i.e. the security label
564                                 of the FIFO, or the security label for
565                                 the incoming or outgoing connections
566                                 of the socket, respectively. See
567                                 <ulink
568                                 url="https://www.kernel.org/doc/Documentation/security/Smack.txt">Smack.txt</ulink>
569                                 for details.</para></listitem>
570                         </varlistentry>
571
572                         <varlistentry>
573                                 <term><varname>PipeSize=</varname></term>
574                                 <listitem><para>Takes an size in
575                                 bytes. Controls the pipe buffer size
576                                 of FIFOs configured in this socket
577                                 unit. See
578                                 <citerefentry><refentrytitle>fcntl</refentrytitle><manvolnum>2</manvolnum></citerefentry>
579                                 for details. The usual suffixes K, M,
580                                 G are supported and are understood to
581                                 the base of 1024.</para></listitem>
582                         </varlistentry>
583
584                         <varlistentry>
585                                 <term><varname>MessageQueueMaxMessages=</varname>,
586                                 <varname>MessageQueueMessageSize=</varname></term>
587                                 <listitem><para>These two settings
588                                 take integer values and control the
589                                 mq_maxmsg field or the mq_msgsize field, respectively, when
590                                 creating the message queue. Note that
591                                 either none or both of these variables
592                                 need to be set. See
593                                 <citerefentry><refentrytitle>mq_setattr</refentrytitle><manvolnum>3</manvolnum></citerefentry>
594                                 for details.</para></listitem>
595                         </varlistentry>
596
597                         <varlistentry>
598                                 <term><varname>FreeBind=</varname></term>
599                                 <listitem><para>Takes a boolean
600                                 value. Controls whether the socket can
601                                 be bound to non-local IP
602                                 addresses. This is useful to configure
603                                 sockets listening on specific IP
604                                 addresses before those IP addresses
605                                 are successfully configured on a
606                                 network interface. This sets the
607                                 IP_FREEBIND socket option. For
608                                 robustness reasons it is recommended
609                                 to use this option whenever you bind a
610                                 socket to a specific IP
611                                 address. Defaults to <option>false</option>.</para></listitem>
612                         </varlistentry>
613
614                         <varlistentry>
615                                 <term><varname>Transparent=</varname></term>
616                                 <listitem><para>Takes a boolean
617                                 value. Controls the IP_TRANSPARENT
618                                 socket option. Defaults to
619                                 <option>false</option>.</para></listitem>
620                         </varlistentry>
621
622                         <varlistentry>
623                                 <term><varname>Broadcast=</varname></term>
624                                 <listitem><para>Takes a boolean
625                                 value. This controls the SO_BROADCAST
626                                 socket option, which allows broadcast
627                                 datagrams to be sent from this
628                                 socket. Defaults to
629                                 <option>false</option>.</para></listitem>
630                         </varlistentry>
631
632                         <varlistentry>
633                                 <term><varname>PassCredentials=</varname></term>
634                                 <listitem><para>Takes a boolean
635                                 value. This controls the SO_PASSCRED
636                                 socket option, which allows <constant>AF_UNIX</constant> sockets to
637                                 receive the credentials of the sending
638                                 process in an ancillary message.
639                                 Defaults to
640                                 <option>false</option>.</para></listitem>
641                         </varlistentry>
642
643                         <varlistentry>
644                                 <term><varname>PassSecurity=</varname></term>
645                                 <listitem><para>Takes a boolean
646                                 value. This controls the SO_PASSSEC
647                                 socket option, which allows <constant>AF_UNIX</constant>
648                                 sockets to receive the security
649                                 context of the sending process in an
650                                 ancillary message. Defaults to
651                                 <option>false</option>.</para></listitem>
652                         </varlistentry>
653
654                         <varlistentry>
655                                 <term><varname>TCPCongestion=</varname></term>
656                                 <listitem><para>Takes a string
657                                 value. Controls the TCP congestion
658                                 algorithm used by this socket. Should
659                                 be one of "westwood", "veno", "cubic",
660                                 "lp" or any other available algorithm
661                                 supported by the IP stack. This
662                                 setting applies only to stream
663                                 sockets.</para></listitem>
664                         </varlistentry>
665
666                         <varlistentry>
667                                 <term><varname>ExecStartPre=</varname></term>
668                                 <term><varname>ExecStartPost=</varname></term>
669                                 <listitem><para>Takes one or more
670                                 command lines, which are executed
671                                 before or after the listening
672                                 sockets/FIFOs are created and
673                                 bound, respectively. The first token of the command
674                                 line must be an absolute filename,
675                                 then followed by arguments for the
676                                 process. Multiple command lines may be
677                                 specified following the same scheme as
678                                 used for
679                                 <varname>ExecStartPre=</varname> of
680                                 service unit files.</para></listitem>
681                         </varlistentry>
682
683                         <varlistentry>
684                                 <term><varname>ExecStopPre=</varname></term>
685                                 <term><varname>ExecStopPost=</varname></term>
686                                 <listitem><para>Additional commands
687                                 that are executed before or after
688                                 the listening sockets/FIFOs are closed
689                                 and removed, respectively. Multiple command lines
690                                 may be specified following the same
691                                 scheme as used for
692                                 <varname>ExecStartPre=</varname> of
693                                 service unit files.</para></listitem>
694                         </varlistentry>
695
696                         <varlistentry>
697                                 <term><varname>TimeoutSec=</varname></term>
698                                 <listitem><para>Configures the time to
699                                 wait for the commands specified in
700                                 <varname>ExecStartPre=</varname>,
701                                 <varname>ExecStartPost=</varname>,
702                                 <varname>ExecStopPre=</varname> and
703                                 <varname>ExecStopPost=</varname> to
704                                 finish. If a command does not exit
705                                 within the configured time, the socket
706                                 will be considered failed and be shut
707                                 down again. All commands still running,
708                                 will be terminated forcibly via
709                                 <constant>SIGTERM</constant>, and after another delay of
710                                 this time with <constant>SIGKILL</constant>. (See
711                                 <option>KillMode=</option> in <citerefentry><refentrytitle>systemd.kill</refentrytitle><manvolnum>5</manvolnum></citerefentry>.)
712                                 Takes a unit-less value in seconds, or
713                                 a time span value such as "5min
714                                 20s". Pass 0 to disable the timeout
715                                 logic. Defaults to <varname>TimeoutStartSec=</varname> from the
716                                 manager configuration file.</para></listitem>
717                         </varlistentry>
718
719                         <varlistentry>
720                                 <term><varname>Service=</varname></term>
721                                 <listitem><para>Specifies the service
722                                 unit name to activate on incoming
723                                 traffic. This setting is only allowed
724                                 for sockets with
725                                 <varname>Accept=no</varname>. It
726                                 defaults to the service that bears the
727                                 same name as the socket (with the
728                                 suffix replaced). In most cases, it
729                                 should not be necessary to use this
730                                 option.</para></listitem>
731                         </varlistentry>
732
733                 </variablelist>
734
735                 <para>Check
736                 <citerefentry><refentrytitle>systemd.exec</refentrytitle><manvolnum>5</manvolnum></citerefentry>
737                 and
738                 <citerefentry><refentrytitle>systemd.kill</refentrytitle><manvolnum>5</manvolnum></citerefentry>
739                 for more settings.</para>
740
741         </refsect1>
742
743         <refsect1>
744                   <title>See Also</title>
745                   <para>
746                           <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
747                           <citerefentry><refentrytitle>systemctl</refentrytitle><manvolnum>8</manvolnum></citerefentry>,
748                           <citerefentry><refentrytitle>systemd.unit</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
749                           <citerefentry><refentrytitle>systemd.exec</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
750                           <citerefentry><refentrytitle>systemd.kill</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
751                           <citerefentry><refentrytitle>systemd.resource-control</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
752                           <citerefentry><refentrytitle>systemd.service</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
753                           <citerefentry><refentrytitle>systemd.directives</refentrytitle><manvolnum>7</manvolnum></citerefentry>
754                   </para>
755
756                   <para>
757                           For more extensive descriptions see the "systemd for Developers" series:
758                           <ulink url="http://0pointer.de/blog/projects/socket-activation.html">Socket Activation</ulink>,
759                           <ulink url="http://0pointer.de/blog/projects/socket-activation2.html">Socket Activation, part II</ulink>,
760                           <ulink url="http://0pointer.de/blog/projects/inetd.html">Converting inetd Services</ulink>,
761                           <ulink url="http://0pointer.de/blog/projects/socket-activated-containers.html">Socket Activated Internet Services and OS Containers</ulink>.
762                   </para>
763         </refsect1>
764
765 </refentry>