diff options
author | Yuxiang Zhu <vfreex@gmail.com> | 2022-06-29 16:48:58 +0800 |
---|---|---|
committer | Yuxiang Zhu <vfreex@gmail.com> | 2022-06-29 17:31:29 +0800 |
commit | 313dfa6b8a12c4eb6d72275b34b2e43b029caf90 (patch) | |
tree | 65fbd004e418200df0af41db5cdc66572edca4e0 /interface-definitions | |
parent | 2e8fdce2a94768f82758487336f6a46ab5b20ad6 (diff) | |
download | vyos-1x-313dfa6b8a12c4eb6d72275b34b2e43b029caf90.tar.gz vyos-1x-313dfa6b8a12c4eb6d72275b34b2e43b029caf90.zip |
bridge: add option to enable/disable IGMP/MLD snooping
This PR adds an config option to enable/disable IGMP/MLD snooping.
```
set interfaces bridge brN igmp snooping
```
Diffstat (limited to 'interface-definitions')
-rw-r--r-- | interface-definitions/interfaces-bridge.xml.in | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/interface-definitions/interfaces-bridge.xml.in b/interface-definitions/interfaces-bridge.xml.in index 60edf3ce2..48ee1efbc 100644 --- a/interface-definitions/interfaces-bridge.xml.in +++ b/interface-definitions/interfaces-bridge.xml.in @@ -73,12 +73,18 @@ </leafNode> <node name="igmp"> <properties> - <help>Internet Group Management Protocol (IGMP) settings</help> + <help>Internet Group Management Protocol (IGMP) and Multicast Listener Discovery (MLD) settings</help> </properties> <children> <leafNode name="querier"> <properties> - <help>Enable IGMP querier</help> + <help>Enable IGMP/MLD querier</help> + <valueless/> + </properties> + </leafNode> + <leafNode name="snooping"> + <properties> + <help>Enable IGMP/MLD snooping</help> <valueless/> </properties> </leafNode> |