Ubuntu – Netplan error, error on nameserver

17.10netplannetworkingserver

I'm trying to setup a Ubuntu server and running in to a problem setting up a static IP.

My OS is as below:

Distributor ID: Ubuntu
Description:    Ubuntu 17.10
Release:        17.10
Codename:       artful

My 01-netcfg.yaml is below:

network:
  version: 2
  renderer: networkd
  ethernets:
    enp5s0f0:
      dhcp4: no
      addresses: [192.168.0.109/24]
      gateway4: 192.168.0.1
      nameservers:
        adresses: [8.8.8.8,8.8.4.4]

When running sudo netplan apply I get the below error. Same error when running debug.

Error in network definition //etc/netplan/01-netcfg.yaml line 9 column 8: unknown key adresses

All my google attempts for a correct .yaml file says this should work.
What am I doing wrong?

Best Answer

I believe it is telling you that it doesn't understand adresses. Please try:

addresses: [8.8.8.8,8.8.4.4]

Follow with:

sudo netplan apply

Any improvement?

Related Question