Files
Automatisation-Reseau/TP_03/templates/vlan_router.j2
2023-04-19 14:29:23 +02:00

20 lines
481 B
Django/Jinja

{%- 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 %}