Comment 64 for bug 1770082

Revision history for this message
Nicorac (nicorac) wrote :

Sorry for being such a buzzkill, but it's still not working on my side :(

=====================================================================
Reinstalled 18.04.1 server x64 from scratch in a clean VirtualBox VM.
=====================================================================

# lsb_release -a
Distributor ID: Ubuntu
Description: Ubuntu 18.04.1 LTS
Release: 18.04
Codename: bionic

=============================================
Enabled -proposed repo and updated netplan.io
=============================================

# dpkg -s netplan.io | grep Version
Version: 0.40~18.04.1

========================================
Set a very basic network configuration
========================================

# cat /etc/netplan/01-netcfg.yaml
network:
  version: 2
  renderer: networkd
  ethernets:
    id0:
      match:
        macaddress: 08:00:27:6b:d8:91
      set-name: eth_lan
      addresses: [ 192.168.1.10/24 ]
      gateway4: 192.168.1.1
      nameservers:
          addresses: [ 8.8.4.4 ]

========================================
After reboot the interface is renamed
but IP address is not set
========================================
# ifconfig -a
eth_lan: flags=4098<BROADCAST,MULTICAST> mtu 1500
        ether 08:00:27:6b:d8:91 txqueuelen 1000 (Ethernet)
        RX packets 0 bytes 0 (0.0 B)
        RX errors 0 dropped 0 overruns 0 frame 0
        TX packets 0 bytes 0 (0.0 B)
        TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
        ...

===================================================
After manually running "netplan apply" (after boot)
things go even worst: network interface is renamed
again to "id0"
===================================================
# netplan apply
# ifconfig -a
id0: flags=4098<BROADCAST,MULTICAST> mtu 1500
        ether 08:00:27:6b:d8:91 txqueuelen 1000 (Ethernet)
        RX packets 0 bytes 0 (0.0 B)
        RX errors 0 dropped 0 overruns 0 frame 0
        TX packets 0 bytes 0 (0.0 B)
        TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
        ...