Timotej Lazar
63ab087645
Set standardized interface names (mgmt0… for L2 management interfaces and lan0… for L3 data interfaces speaking BGP). ASN is stored as a custom field in netbox but that might change.
6 lines
168 B
Django/Jinja
6 lines
168 B
Django/Jinja
{% for iface in hostvars[inventory_hostname].interfaces | selectattr('name', 'match', '^lan') %}
|
|
auto {{ iface.name }}
|
|
iface {{ iface.name }}
|
|
mtu 9216
|
|
|
|
{% endfor %} |