- Revised the project description in `pyproject.toml` to better reflect the functionality of the `oxipy` client. - Improved the README.md by adding detailed explanations of the project structure, installation instructions, and usage examples. - Updated documentation files to enhance clarity and organization, including sections on extending models and writing TTP templates. - Adjusted various TTP templates to ensure consistency and accuracy in the parsing of device configurations.
38 lines
993 B
Plaintext
38 lines
993 B
Plaintext
<doc>
|
|
Eltex configuration parser.
|
|
|
|
The system group reads software version data and the serial group extracts
|
|
serial numbers from the unit table. The interfaces group parses interface IP
|
|
settings. The vlans group supports named VLAN interfaces and compressed VLAN
|
|
lists.
|
|
</doc>
|
|
<vars>
|
|
default_system = {
|
|
"model": "",
|
|
"serial_number": "",
|
|
"version": ""
|
|
}
|
|
</vars>
|
|
|
|
<group name="system" default="default_system">
|
|
Active-image: {{ ignore }} {{ _start_ }}
|
|
! Version: {{ version }}
|
|
</group>
|
|
<group name="serial" method="table">
|
|
! Unit MAC address Hardware version Serial number
|
|
! {{ unit | exclude("-") }} {{ mac_address }} {{ hardware_version }} {{ serial_number }}
|
|
</group>
|
|
|
|
<group name="interfaces">
|
|
interface {{ interface | ORPHRASE }}
|
|
ip address {{ ip_address }} {{ mask | to_cidr }}
|
|
</group>
|
|
|
|
<group name="vlans">
|
|
interface vlan {{ vlan_id | _start_ }}
|
|
name {{ name }}
|
|
|
|
vlan {{ _db_ | _start_ }}
|
|
vlan {{ vlan_ids | joinmatches(',') | unrange("-", ",") | split(",")}}
|
|
</group>
|