mirror of
https://github.com/ansible-collections/community.routeros.git
synced 2025-06-21 09:35:45 +02:00
Add support for the "ipv6 nd prefix" path (#303)
Upstream documentation: https://help.mikrotik.com/docs/display/ROS/IPv6+Neighbor+Discovery#IPv6NeighborDiscovery-Prefix
This commit is contained in:
parent
ba806c0593
commit
64ee613a0d
4 changed files with 20 additions and 0 deletions
|
@ -3697,6 +3697,22 @@ PATHS = {
|
|||
},
|
||||
),
|
||||
),
|
||||
('ipv6', 'nd', 'prefix'): APIData(
|
||||
unversioned=VersionedAPIData(
|
||||
fully_understood=True,
|
||||
fields={
|
||||
'6to4-interface': KeyInfo(default='none'),
|
||||
'autonomous': KeyInfo(),
|
||||
'comment': KeyInfo(can_disable=True, remove_value=''),
|
||||
'disabled': KeyInfo(default=False),
|
||||
'interface': KeyInfo(required=True),
|
||||
'on-link': KeyInfo(default=True),
|
||||
'preferred-lifetime': KeyInfo(),
|
||||
'prefix': KeyInfo(),
|
||||
'valid-lifetime': KeyInfo(),
|
||||
},
|
||||
),
|
||||
),
|
||||
('ipv6', 'nd', 'prefix', 'default'): APIData(
|
||||
unversioned=VersionedAPIData(
|
||||
single_value=True,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue