- 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.
34 lines
822 B
Plaintext
34 lines
822 B
Plaintext
<doc>
|
|
H3C configuration parser.
|
|
|
|
The system group reads boot image version and board model data. The interfaces
|
|
group parses interface IP settings. The vlans groups parse both named VLANs and
|
|
range-style VLAN declarations.
|
|
</doc>
|
|
<vars>
|
|
default_system = {
|
|
"model": "",
|
|
"serial_number": "",
|
|
"version": ""
|
|
}
|
|
</vars>
|
|
|
|
<group name="system" default="default_system">
|
|
# Boot image version: {{ version }}, Release {{ release }}
|
|
# {{ mpu }} Slot {{ slot }}:
|
|
# BOARD TYPE: {{ model }}
|
|
</group>
|
|
|
|
<group name="interfaces">
|
|
interface {{ interface }}
|
|
ip address {{ ip_address }} {{ mask | to_cidr }}
|
|
</group>
|
|
|
|
<group name="vlans">
|
|
vlan {{ vlan_id }}
|
|
name {{ name }}
|
|
description {{ description }}
|
|
</group>
|
|
<group name="vlans">
|
|
vlan {{ vlans_id | ORPHRASE | contains(" to ") | unrange(" to ", ",") | split(",") }}
|
|
</group> |