mirror of
https://github.com/ansible-collections/community.routeros.git
synced 2025-06-24 18:58:41 +02:00
Support "mode" in IPv4 neighbor discovery configuration (#198)
RouterOS 7.7 added a `mode` parameter to the IPv4 neighbor discovery configuration. Changelog: https://forum.mikrotik.com/viewtopic.php?t=192427 Signed-off-by: Michael Hanselmann <public@hansmi.ch>
This commit is contained in:
parent
e4a21311a1
commit
1aa41ad375
2 changed files with 3 additions and 0 deletions
2
changelogs/fragments/198-ip-nd-mode.yml
Normal file
2
changelogs/fragments/198-ip-nd-mode.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
minor_changes:
|
||||||
|
- api_info, api_modify - add support for the ``mode`` property in ``ip neighbor discovery-settings`` introduced in RouterOS 7.7 (https://github.com/ansible-collections/community.routeros/pull/198).
|
|
@ -1020,6 +1020,7 @@ PATHS = {
|
||||||
fields={
|
fields={
|
||||||
'discover-interface-list': KeyInfo(),
|
'discover-interface-list': KeyInfo(),
|
||||||
'lldp-med-net-policy-vlan': KeyInfo(default='disabled'),
|
'lldp-med-net-policy-vlan': KeyInfo(default='disabled'),
|
||||||
|
'mode': KeyInfo(default='tx-and-rx'),
|
||||||
'protocol': KeyInfo(default='cdp,lldp,mndp'),
|
'protocol': KeyInfo(default='cdp,lldp,mndp'),
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue