I'm trying to configure a static IP and I keep getting this error when I try and execute the changes:
Invalid YAML: mapping values are not allowed in this context:
network:
^
I've edited my /etc/netplan/00-installer-config.yaml to:
network:
version: 2
ethernets:
eno1:
dhcp4: false
addresses: [192.168.20.6/24]
gateway4: 192.168.20.2
nameservers:
addresses: [8.8.8.8,8.8.4.4,192.168.20.2]
I used this guide for this configuration, but I've also followed a bunch of other guides and each time with same result.
All the other questions I've read that are related to this issue have been some problem to do with incorrect indentation or spacing, but I can't see where I'm going wrong. I've followed a few different examples, and have rewritten the file several times to try and make sure I'm not missing a stray spaces but I'm getting the same result every time.
--debugto thenetplan applycommand provide any useful information? – steeldriver Jul 04 '20 at 12:26--debugstill gave me the same error message but made me go back and look at thenetworkline. I was missing the#to comment the developer credit which I didn't notice because I was so focussed on looking for spaces that I didn't notice it :/ – Sebr Jul 04 '20 at 20:13