- 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.
35 lines
1.0 KiB
Plaintext
35 lines
1.0 KiB
Plaintext
<doc>
|
|
Quasar configuration parser.
|
|
|
|
The system group supports Assembly-based and Engine-based firmware blocks. The
|
|
interfaces group parses the management Ethernet address, while bulkinterfaces
|
|
collects per-port descriptions that the Python model merges into interface
|
|
records.
|
|
</doc>
|
|
<vars>
|
|
default_system = {
|
|
"model": "",
|
|
"serial_number": "",
|
|
"version": ""
|
|
}
|
|
</vars>
|
|
|
|
<group name="system" default="default_system">
|
|
# Component Version {{ _start_ }}
|
|
# Assembly {{ version }}
|
|
# Product Name {{ model | ORPHRASE }}
|
|
# Product Serial Number {{ serial_number }}
|
|
|
|
# Subsystem Version {{ _start_ }}
|
|
# Engine {{ version }}
|
|
# Product Name {{ model | ORPHRASE }}
|
|
# Product Serial Number {{ serial_number }}
|
|
</group>
|
|
|
|
<group name="interfaces">
|
|
{{ ignore("\\s*") }}config {{ interface }} ipv4 address {{ ip_address }}/{{ mask }} gateway {{ gateway }} {{ ignore }}
|
|
</group>
|
|
|
|
<group name="bulkinterfaces.{{ interface }}">
|
|
{{ ignore("\\s*") }}config interface {{ interface | _start_ }} description {{ description | ORPHRASE | strip('"')}}
|
|
</group> |