diff options
author | Susant Sahani <ssahani@redhat.com> | 2019-04-30 11:23:39 +0200 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2019-05-03 06:11:52 +0200 |
commit | c2c2793f39352c554b05ebf299374ed02290d816 (patch) | |
tree | 49dd9c0cf6b3b257117137a4048c2b0635fba6e8 /test/fuzz | |
parent | netword: fdb fix coding style (diff) | |
download | systemd-c2c2793f39352c554b05ebf299374ed02290d816.tar.xz systemd-c2c2793f39352c554b05ebf299374ed02290d816.zip |
networkd: Add support to configure destination address for bridge FDB
Closes #5145.
Example conf:
```
[Match]
Name=vxlan1309
[BridgeFDB]
MACAddress=00:00:00:00:00:00
Destination=10.0.0.2
[BridgeFDB]
MACAddress=00:00:00:00:00:00
Destination=10.0.0.4
[BridgeFDB]
MACAddress=00:00:00:00:00:00
Destination=10.0.0.5
```
Diffstat (limited to 'test/fuzz')
-rw-r--r-- | test/fuzz/fuzz-network-parser/directives.network | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/fuzz/fuzz-network-parser/directives.network b/test/fuzz/fuzz-network-parser/directives.network index cd2031150f..fd3256e784 100644 --- a/test/fuzz/fuzz-network-parser/directives.network +++ b/test/fuzz/fuzz-network-parser/directives.network @@ -32,6 +32,7 @@ MACAddress= [BridgeFDB] VLANId= MACAddress= +Destination= [DHCP] UseDomains= UseRoutes= |