add jinja files

This commit is contained in:
amar kantas
2023-04-19 14:29:23 +02:00
parent 44fb59af52
commit 2a564bba38
3 changed files with 49 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{%- for interface in interfaces %}
{%- if "g2/0" == interface.name %}
interface {{ interface.name }}
no shutdown
exit
{%- elif "3/0" == interface.name %}
interface {{ interface.name }}
no shutdown
exit
{%- else %}
interface {{ interface.name }}
encapsulation dot1Q {{interface.vlan_id}}
description "{{ interface.description | default("**NO DESCRIPTION**") }}"
ip address {{ interface.ip }} {{ interface.mask }}
exit
{% endif %}
{%- endfor %}