Files
Automatisation-Reseau/TP-02/templates/vlan_router.j2
2025-11-13 09:34:59 +01:00

9 lines
256 B
Django/Jinja

hostname {{ hostname }}
{% for interface in interfaces %}
interface {{ interface.name }}
description {{ interface.description }}
ip address {{ interface.ip }} {{ interface.mask }}
encapsulation dot1Q {{ interface.vlan_id }}
no shutdown
{% endfor %}
end