mirror of
https://github.com/ansible-collections/community.routeros.git
synced 2025-06-26 03:38:41 +02:00
Support "mld-version" and "multicast-querier" on bridge interfaces (#315)
Signed-off-by: Michael Hanselmann <public@hansmi.ch>
This commit is contained in:
parent
89b34bdd79
commit
1942b3ddbb
2 changed files with 5 additions and 1 deletions
|
@ -0,0 +1,2 @@
|
||||||
|
minor_changes:
|
||||||
|
- api_info, api_modify - add support for the ``mld-version`` and ``multicast-querier`` properties in ``interface bridge`` (https://github.com/ansible-collections/community.routeros/pull/315).
|
|
@ -274,11 +274,13 @@ PATHS = {
|
||||||
'disabled': KeyInfo(default=False),
|
'disabled': KeyInfo(default=False),
|
||||||
'ether-type': KeyInfo(default='0x8100'),
|
'ether-type': KeyInfo(default='0x8100'),
|
||||||
'fast-forward': KeyInfo(default=True),
|
'fast-forward': KeyInfo(default=True),
|
||||||
'frame-types': KeyInfo(default='admit-all'),
|
|
||||||
'forward-delay': KeyInfo(default='15s'),
|
'forward-delay': KeyInfo(default='15s'),
|
||||||
|
'frame-types': KeyInfo(default='admit-all'),
|
||||||
'igmp-snooping': KeyInfo(default=False),
|
'igmp-snooping': KeyInfo(default=False),
|
||||||
'max-message-age': KeyInfo(default='20s'),
|
'max-message-age': KeyInfo(default='20s'),
|
||||||
|
'mld-version': KeyInfo(default=1),
|
||||||
'mtu': KeyInfo(default='auto'),
|
'mtu': KeyInfo(default='auto'),
|
||||||
|
'multicast-querier': KeyInfo(default=False),
|
||||||
'name': KeyInfo(),
|
'name': KeyInfo(),
|
||||||
'priority': KeyInfo(default='0x8000'),
|
'priority': KeyInfo(default='0x8000'),
|
||||||
'protocol-mode': KeyInfo(default='rstp'),
|
'protocol-mode': KeyInfo(default='rstp'),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue