mirror of
https://github.com/ansible-collections/community.routeros.git
synced 2025-06-21 09:35:45 +02:00
Add 'interface 6to4' path, allows manage 6to4 tunnels like HE (#342)
This commit is contained in:
parent
575af30d88
commit
388366542d
4 changed files with 23 additions and 0 deletions
|
@ -226,6 +226,25 @@ def join_path(path):
|
|||
# 3. All bold attributes go into the `primary_keys` list -- this is not always true!
|
||||
|
||||
PATHS = {
|
||||
('interface', '6to4'): APIData(
|
||||
unversioned=VersionedAPIData(
|
||||
fully_understood=True,
|
||||
primary_keys=('name', ),
|
||||
fields={
|
||||
'clamp-tcp-mss': KeyInfo(default=True),
|
||||
'comment': KeyInfo(can_disable=True, remove_value=''),
|
||||
'disabled': KeyInfo(default=False),
|
||||
'dont-fragment': KeyInfo(default=False),
|
||||
'dscp': KeyInfo(default='inherit'),
|
||||
'ipsec-secret': KeyInfo(can_disable=True),
|
||||
'keepalive': KeyInfo(default='10s,10', can_disable=True),
|
||||
'local-address': KeyInfo(default='0.0.0.0'),
|
||||
'mtu': KeyInfo(default='auto'),
|
||||
'name': KeyInfo(),
|
||||
'remote-address': KeyInfo(required=True),
|
||||
}
|
||||
),
|
||||
),
|
||||
('interface', 'bonding'): APIData(
|
||||
unversioned=VersionedAPIData(
|
||||
fully_understood=True,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue