hosts: vmhost1: Switch to systemd-networkd
Using *systemd-networkd* to configure network interfaces on *vmhost0* is working really well. It is decidedly more stable than *dhcpcd* was, and certainly easier to work with than NetworkManager. Let's go ahead and switch *vmhost1* as well.ntfy
parent
d3592f1162
commit
6c705f54af
|
@ -1,12 +1,47 @@
|
|||
dhcpcd_nodev: true
|
||||
dhcpcd_allow_interfaces:
|
||||
- enp5s0
|
||||
- bond1
|
||||
dhcpcd_interfaces:
|
||||
- name: bond1
|
||||
config:
|
||||
- noipv4
|
||||
- static ip6_address=fd68:c2d2:500e:3ea3:8d5f:c3b0:a73c:55d6/64
|
||||
storage_iface: bond1
|
||||
storage_net_address: fd68:c2d2:500e:3ea3:8d5f:c3b0:a73c:55d6/64
|
||||
|
||||
networkd_networks:
|
||||
- name: 30-enp5s0
|
||||
Match:
|
||||
Name: enp5s0
|
||||
Network:
|
||||
Address: 172.30.0.19/26
|
||||
Gateway: 172.30.0.1
|
||||
DNS: 172.30.0.4
|
||||
|
||||
- name: 35-enp6s0f0
|
||||
Match:
|
||||
Name: enp6s0f0
|
||||
Network:
|
||||
Description: Storage NIC bonded port 0
|
||||
Bond: bond1
|
||||
DHCP: 'no'
|
||||
LinkLocalAddressing: 'no'
|
||||
- name: 35-enp6s0f1
|
||||
Match:
|
||||
Name: enp6s0f1
|
||||
Network:
|
||||
Description: Storage NIC bonded port 0
|
||||
Bond: bond1
|
||||
DHCP: 'no'
|
||||
LinkLocalAddressing: 'no'
|
||||
|
||||
- name: 35-enp7s0f0
|
||||
Match:
|
||||
Name: enp7s0f0
|
||||
Network:
|
||||
Description: VM NIC bonded port 0
|
||||
Bond: bond0
|
||||
DHCP: 'no'
|
||||
LinkLocalAddressing: 'no'
|
||||
- name: 35-enp7s0f1
|
||||
Match:
|
||||
Name: enp7s0f1
|
||||
Network:
|
||||
Description: VM NIC bonded port 1
|
||||
Bond: bond0
|
||||
DHCP: 'no'
|
||||
LinkLocalAddressing: 'no'
|
||||
|
||||
samba_interfaces:
|
||||
- enp5s0
|
||||
|
|
|
@ -22,6 +22,7 @@ koji0.pyrocufflink.blue
|
|||
|
||||
[networkd]
|
||||
vmhost0.pyrocufflink.blue
|
||||
vmhost1.pyrocufflink.blue
|
||||
|
||||
[pyrocufflink]
|
||||
koji0.pyrocufflink.blue
|
||||
|
|
Loading…
Reference in New Issue