diff options
author | Tom Gundersen <teg@jklm.no> | 2015-08-29 00:18:20 +0200 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2015-08-31 21:42:33 +0200 |
commit | 9b3a67c55b7df6642a0389306c513b17c211f280 (patch) | |
tree | c0356bf32d2fc716ba9716a72c6ee4012e614f7f /man | |
parent | 61986155d273342ffaf5be4d6a4386be96f9b46b (diff) |
networkd: dhcp-server - allow configuration of the pool
The constraints we place on the pool is that it is a contiguous
sequence of addresses in the same subnet as the server address, not
including the subnet nor broadcast addresses, but possibly including
the server address itself. If the server address is included in the
pool it is (obviously) reserved and not handed out to clients.
Diffstat (limited to 'man')
-rw-r--r-- | man/systemd.network.xml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/man/systemd.network.xml b/man/systemd.network.xml index ded2c0ceff..2fb4733494 100644 --- a/man/systemd.network.xml +++ b/man/systemd.network.xml @@ -684,6 +684,23 @@ <variablelist class='network-directives'> <varlistentry> + <term><varname>PoolOffset=</varname></term> + <term><varname>PoolSize=</varname></term> + + <listitem><para>Configures the pool of addresses to hand out. The pool + is a contiguous sequence of IP addresses in the subnet configured for + the server address, which does not include the subnet nor the broadcast + address. <varname>PoolOffset=</varname> takes the offset of the pool + from the start of subnet, or zero to use the default value. + <varname>PoolSize=</varname> takes the number of IP addresses in the + pool or zero to use the default value. By default the pool starts at + the first address after the subnet address and takes up the rest of + the subnet, excluding the broadcast address. If the pool includes + the server address (the default), this is reserved and not handed + out to clients.</para></listitem> + </varlistentry> + + <varlistentry> <term><varname>DefaultLeaseTimeSec=</varname></term> <term><varname>MaxLeaseTimeSec=</varname></term> |