Après la mise à niveau vers 17.04, je ne peux pas me connecter à un réseau Ethernet câblé via le gestionnaire de réseau. L'indicateur-réseau dit: Réseau Ethernet - périphérique non géré. Paramètres système> Réseau> Câblé dit: Câblé non géré.
La connexion Wifi fonctionne bien et la connexion câblée gérée via ifup/ifdown fonctionne également bien (lorsque je mets eth0 dans/etc/network/interfaces).
Les fichiers de configuration de mon réseau ressemblent à ceci:
$ cat/etc/network/interfaces
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback
$ cat /etc/NetworkManager/NetworkManager.conf
[main]
plugins=ifupdown,keyfile
[ifupdown]
managed=true
Voici ma sortie ifconfig -a:
docker0: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500
inet 172.17.0.1 netmask 255.255.0.0 broadcast 0.0.0.0
ether 02:42:1c:34:04:c4 txqueuelen 0 (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
eth0: flags=4098<BROADCAST,MULTICAST> mtu 1500
ether 54:be:f7:76:35:32 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
device interrupt 18
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<Host>
loop txqueuelen 1000 (Local Loopback)
RX packets 352 bytes 25966 (25.9 KB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 352 bytes 25966 (25.9 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
wlan0: flags=4098<BROADCAST,MULTICAST> mtu 1500
ether 7e:de:d9:4c:d6:4f txqueuelen 1000 (Ethernet)
RX packets 2170 bytes 1604327 (1.6 MB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 2108 bytes 416467 (416.4 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
Comme Zoltan Laczko mentionné, dans NetworkManager 1.2.4 (Ubuntu 16.10), tous les périphériques non-wifi/wwan sont traités comme non gérés (voir sa réponse dans une question similaire Network Manager refusant de gérer interfaces ). Une solution consiste à créer un fichier vide:
Sudo touch /etc/NetworkManager/conf.d/10-globally-managed-devices.conf
... qui occultera/écrasera celui de/usr/lib, puis redémarrera Network Manager.