playbooks/compute/templates/interface-base-intel.j2

19 lines
340 B
Plaintext
Raw Normal View History

#
# This file is managed by Ansible, do not edit manually.
#
# loopback network interface
auto lo
iface lo inet loopback
# 1g rj45 network interface
iface eno1 inet manual
# vlan subinterfaces
{% for vlan_id, vlan_name in vlans.items() %}
auto vlan{{ vlan_id }}
iface vlan{{ vlan_id }} inet manual
vlan-raw-device eno1
{% endfor %}