I must say setting a static via file is not fun.
Current server has 4 eth.
network:
ethernets:
eno1:
dhcp4: true
eno2:
dhcp4: true
eno3:
dhcp4: true
eno4:
dhcp4: true
version: 2



I'd like to set en04 to a static BUT 50-cloud-init.yaml will not accept it seems any type on indent w/o complaining. My last attempt was
network:
ethernets:
eno1:
dhcp4: true
eno2:
dhcp4: true
eno3:
dhcp4: true
version: 2
renderer: networkd
eno4:
dhcp: no
addresses: [10.0.30.10/23]
gateway4: 10.0.30.1
nameservers:
addresses: [10.0.0.21,10.0.2.21]
1-3 can stay dhcp or inactive. Just trying to make a static on 4.