alpine: configure network interfaces

This commit is contained in:
Timotej Lazar 2024-06-25 00:40:13 +02:00
parent c42f9ae1f9
commit f1f9d6fa34
3 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,17 @@
auto lo
iface lo inet loopback
{% for iface in interfaces | selectattr('enabled') %}
auto {{ iface.name }}
iface {{ iface.name }} inet static
{% for ip in iface.ip_addresses %}
address {{ ip.address }}
{% set subnet = ip.address | ipaddr('subnet') %}
{% set prefix = prefixes | selectattr('prefix', '==', subnet) | first %}
{% set gateway = prefix.custom_fields.gateway.address %}
{% if gateway is defined %}
gateway {{ gateway | ipaddr('address') }}
{% endif %}
{% endfor %}
{% endfor %}