Consolidate interface setup for debian and proxmox roles
This commit is contained in:
parent
8171f16f18
commit
a324da076b
|
@ -13,6 +13,13 @@
|
||||||
apt_repository:
|
apt_repository:
|
||||||
repo: 'deb http://download.proxmox.com/debian/pve {{ ansible_distribution_release }} pve-no-subscription'
|
repo: 'deb http://download.proxmox.com/debian/pve {{ ansible_distribution_release }} pve-no-subscription'
|
||||||
|
|
||||||
|
- name: Set up loopback interface
|
||||||
|
template:
|
||||||
|
dest: /etc/network/interfaces.d/loopback.intf
|
||||||
|
src: loopback.intf.j2
|
||||||
|
mode: 0644
|
||||||
|
notify: reload interfaces
|
||||||
|
|
||||||
- include_tasks: mgmt.yml
|
- include_tasks: mgmt.yml
|
||||||
|
|
||||||
- include_tasks: sdn.yml
|
- include_tasks: sdn.yml
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
{% for name in hwaddr %}
|
|
||||||
{% for addr in hwaddr[name] %}
|
|
||||||
SUBSYSTEM=="net", ACTION=="add", ATTR{address}=="{{ addr }}", NAME="{{ name }}{{ loop.index0 }}"
|
|
||||||
{% endfor %}
|
|
||||||
{% endfor %}
|
|
|
@ -1,16 +0,0 @@
|
||||||
auto lo
|
|
||||||
iface lo inet loopback
|
|
||||||
|
|
||||||
auto mgmt
|
|
||||||
iface mgmt
|
|
||||||
address 127.0.0.1/8
|
|
||||||
address ::1/128
|
|
||||||
vrf-table auto
|
|
||||||
|
|
||||||
auto {{ iface_mgmt }}
|
|
||||||
iface {{ iface_mgmt }}
|
|
||||||
vrf mgmt
|
|
||||||
address {{ ansible_host }}/{{ mgmt_gw | ipaddr('prefix') }}
|
|
||||||
gateway {{ mgmt_gw | ipaddr('address') }}
|
|
||||||
|
|
||||||
source /etc/network/interfaces.d/*
|
|
|
@ -1,5 +1,3 @@
|
||||||
source /etc/network/interfaces.d/*
|
|
||||||
|
|
||||||
# Management VRF and link.
|
# Management VRF and link.
|
||||||
auto mgmt
|
auto mgmt
|
||||||
iface mgmt
|
iface mgmt
|
||||||
|
@ -20,3 +18,5 @@ iface {{ iface.name }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
|
source /etc/network/interfaces.d/*
|
Loading…
Reference in a new issue