diff options
author | Santa Wiryaman <swiryaman@starry.com> | 2021-05-04 00:48:26 +0200 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2022-02-09 09:37:37 +0100 |
commit | 97f27f8a1690cdf32f34edd43121eeda6452676a (patch) | |
tree | c193aa656355438da976ce7986b16efffc915507 /man/systemd.network.xml | |
parent | ci: validate actions and fix actionlint warnings (diff) | |
download | systemd-97f27f8a1690cdf32f34edd43121eeda6452676a.tar.xz systemd-97f27f8a1690cdf32f34edd43121eeda6452676a.zip |
Add support for `isolated` parameter
Add the "Isolated" parameter in the *.network file, e.g.,
[Bridge]
Isolated=true|false
When the Isolated parameter is true, traffic coming out of this port
will only be forward to other ports whose Isolated parameter is false.
When Isolated is not specified, the port uses the kernel default
setting (false).
The "Isolated" parameter was introduced in Linux 4.19.
See man bridge(8) for more details.
But even though the kernel and bridge/iproute2 recognize the "Isolated"
parameter, systemd-networkd did not have a way to set it.
Diffstat (limited to 'man/systemd.network.xml')
-rw-r--r-- | man/systemd.network.xml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/man/systemd.network.xml b/man/systemd.network.xml index 74f416cf39..52d017bb78 100644 --- a/man/systemd.network.xml +++ b/man/systemd.network.xml @@ -2961,6 +2961,15 @@ Token=prefixstable:2002:da8:1::</programlisting></para> </listitem> </varlistentry> <varlistentry> + <term><varname>Isolated=</varname></term> + <listitem> + <para>Takes a boolean. Configures whether this port is isolated or not. Within a bridge, + isolated ports can only communicate with non-isolated ports. When set to true, this port can only + communicate with other ports whose Isolated setting is false. When set to false, this port + can communicate with any other ports. When unset, the kernel's default will be used.</para> + </listitem> + </varlistentry> + <varlistentry> <term><varname>UseBPDU=</varname></term> <listitem> <para>Takes a boolean. Configures whether STP Bridge Protocol Data Units will be |