diff options
author | Susant Sahani <ssahani@vmware.com> | 2019-10-04 21:40:51 +0200 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2019-10-14 14:32:48 +0200 |
commit | c16c780804714551ac2a777096865de5228fe6ff (patch) | |
tree | d3911a517681a05379561af3a7da3a263b9d6e20 /man/systemd.network.xml | |
parent | network: ndisc: do not drop all prefixes when a prefix matches a blacklist (diff) | |
download | systemd-c16c780804714551ac2a777096865de5228fe6ff.tar.xz systemd-c16c780804714551ac2a777096865de5228fe6ff.zip |
network: introduce ip nexthop routing
Used to manipulate entries in the kernel's nexthop tables.
Example:
```
[NextHop]
Id=3
Gateway=192.168.5.1
```
Diffstat (limited to 'man/systemd.network.xml')
-rw-r--r-- | man/systemd.network.xml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/man/systemd.network.xml b/man/systemd.network.xml index 657ba66245..a9a9b13d42 100644 --- a/man/systemd.network.xml +++ b/man/systemd.network.xml @@ -1150,6 +1150,29 @@ </listitem> </varlistentry> </variablelist> + </refsect1> + + <refsect1> + <title>[NextHop] Section Options</title> + <para>The <literal>[NextHop]</literal> section accepts the + following keys. Specify several <literal>[NextHop]</literal> + sections to configure several nexthop. Nexthop is used to manipulate entries in the kernel's nexthop + tables.</para> + + <variablelist class='network-directives'> + <varlistentry> + <term><varname>Gateway=</varname></term> + <listitem> + <para>As in the <literal>[Network]</literal> section. This is mandatory.</para> + </listitem> + </varlistentry> + <varlistentry> + <term><varname>Id=</varname></term> + <listitem> + <para>The id of the nexthop (an unsigned integer). If unspecified or '0' then automatically chosen by kernel.</para> + </listitem> + </varlistentry> + </variablelist> </refsect1> <refsect1> |