- Introduced a new method `_validate_template_groups` in `BaseDevice` to ensure TTP templates declare all required and optional sections. - Updated `_REQUIRED_SECTIONS` and added `_OPTIONAL_SECTIONS` to improve template validation. - Modified the `vlans` method in `Mikrotik` to streamline raw data handling and added debug print statements for clarity. - Revised the Mikrotik TTP template to include structured variable definitions and improved group handling for interfaces and VLANs.
48 lines
1.9 KiB
Plaintext
48 lines
1.9 KiB
Plaintext
<doc>
|
|
some templates
|
|
</doc>
|
|
<vars>
|
|
default_system = {
|
|
"model": "",
|
|
"serial_number": ""
|
|
}
|
|
default_interfaces = {
|
|
"disabled": "False"
|
|
}
|
|
default_vlans = {
|
|
"disabled": "False",
|
|
"mtu": None
|
|
}
|
|
</vars>
|
|
|
|
<group name="system" default="default_system">
|
|
# version: {{ version }}{{ ignore('.*') }}
|
|
# model = {{ model }}
|
|
# serial number = {{ serial_number }}
|
|
</group>
|
|
|
|
<group name="interfaces" default="default_interfaces">
|
|
/ip address
|
|
## not disabled and no comment
|
|
add address={{ ip | _start_ }}/{{ mask }} interface={{ interface }} network={{ network }}
|
|
## not disabled and comment with/without quotes
|
|
add address={{ ip | _start_ }}/{{ mask }} comment={{ comment | ORPHRASE | exclude("disabled=") | strip('"')}} interface={{ interface }} network={{ network }}
|
|
## disabled no comment
|
|
add address={{ ip | _start_ }}/{{ mask }} disabled={{ disabled | replace("yes","True") | strip('"')}} interface={{ interface }} network={{ network }}
|
|
## disabled with comment with/without quotes
|
|
add address={{ ip | _start_ }}/{{ mask }} comment={{ comment | ORPHRASE | exclude("disabled=") | strip('"') }} disabled={{ disabled }} interface={{ interface }} network={{ network }}
|
|
</group>
|
|
|
|
<group name="vlans">
|
|
/interface vlan {{ _start_ }}
|
|
## not disabled and no comment
|
|
add interface={{ interface }} name={{ name | ORPHRASE }} vlan-id={{ vlan_id }}
|
|
## not disabled and comment with/without quotes
|
|
add comment={{ comment | ORPHRASE | exclude("disabled=") | strip('"')}} interface={{ interface }} name={{ name | ORPHRASE }} vlan-id={{ vlan_id }}
|
|
## disabled with comment with/without quotes
|
|
add comment={{ comment | ORPHRASE | exclude("disabled=") | strip('"')}} disabled={{ disabled }} interface={{ interface }} name={{ name | ORPHRASE }} vlan-id={{ vlan_id }}
|
|
## disabled no comment
|
|
add interface={{ interface }} name={{ name | ORPHRASE }} vlan-id={{ vlan_id }} disabled={{ disabled }}
|
|
</group>
|
|
|