mirror of
https://github.com/ansible-collections/community.routeros.git
synced 2025-06-24 10:48:49 +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
2
changelogs/fragments/303-add-ipv6-nd-prefix.yml
Normal file
2
changelogs/fragments/303-add-ipv6-nd-prefix.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
minor_changes:
|
||||||
|
- api_info, api_modify - add support for the ``ipv6 nd prefix`` path (https://github.com/ansible-collections/community.routeros/pull/303).
|
|
@ -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(
|
('ipv6', 'nd', 'prefix', 'default'): APIData(
|
||||||
unversioned=VersionedAPIData(
|
unversioned=VersionedAPIData(
|
||||||
single_value=True,
|
single_value=True,
|
||||||
|
|
|
@ -174,6 +174,7 @@ options:
|
||||||
- ipv6 firewall nat
|
- ipv6 firewall nat
|
||||||
- ipv6 firewall raw
|
- ipv6 firewall raw
|
||||||
- ipv6 nd
|
- ipv6 nd
|
||||||
|
- ipv6 nd prefix
|
||||||
- ipv6 nd prefix default
|
- ipv6 nd prefix default
|
||||||
- ipv6 route
|
- ipv6 route
|
||||||
- ipv6 settings
|
- ipv6 settings
|
||||||
|
|
|
@ -183,6 +183,7 @@ options:
|
||||||
- ipv6 firewall nat
|
- ipv6 firewall nat
|
||||||
- ipv6 firewall raw
|
- ipv6 firewall raw
|
||||||
- ipv6 nd
|
- ipv6 nd
|
||||||
|
- ipv6 nd prefix
|
||||||
- ipv6 nd prefix default
|
- ipv6 nd prefix default
|
||||||
- ipv6 route
|
- ipv6 route
|
||||||
- ipv6 settings
|
- ipv6 settings
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue