2022-08-26 20:52:23 +02:00
|
|
|
{{ ansible_managed | comment }}
|
|
|
|
|
|
|
|
{% for name, iface in ifupdown2__interfaces.items() %}
|
2022-08-27 04:46:16 +02:00
|
|
|
auto {{ name }}
|
2022-08-26 20:52:23 +02:00
|
|
|
iface {{ name }}
|
|
|
|
{% for address in iface.addresses %}
|
|
|
|
address {{ address | ipaddr }}
|
|
|
|
{% endfor %}
|
2022-08-27 04:10:11 +02:00
|
|
|
{% for gateway in iface.gateways | default([]) %}
|
2022-08-26 20:52:23 +02:00
|
|
|
gateway {{ gateway | ipaddr }}
|
|
|
|
{% endfor %}
|
2022-08-27 04:10:11 +02:00
|
|
|
|
2022-08-26 20:52:23 +02:00
|
|
|
{% endfor %}
|