Comment 62 for bug 1770082

Revision history for this message
Nicorac (nicorac) wrote :

I've tried some workarounds:
- kernel parameter "net.ifnames=0" on kernel commandline: NOT WORKING
- ebtables: NOT WORKING
- add "@reboot /usr/sbin/netplan apply" to root cron: NOT WORKING

The following works on my side:

* create a new unit file: /etc/systemd/system/netplan-workaround.service
------------------------------------------------------------------------
[Unit]
After=syslog.service

[Service]
ExecStart=/usr/sbin/netplan apply

[Install]
WantedBy=default.target
------------------------------------------------------------------------

* enable and start it
# systemctl enable netplan-workaround.service
# systemctl start netplan-workaround.service