Rede com fio - dispositivo não gerenciado após a atualização para o 17.04 [duplicate]

4

Após a atualização para o 17.04, não consigo me conectar a uma rede com fio através do gerenciador de rede. A rede de indicadores diz: Rede Ethernet - dispositivo não gerenciado. Configurações do sistema > Rede > Wired diz: Wired não gerenciado.

A conexão Wi-Fi está funcionando bem e a conexão com fio gerenciada via ifup / ifdown também está funcionando bem (quando eu coloco eth0 em / etc / network / interfaces).

Meus arquivos de configuração de rede são assim:

$ 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

Aqui está minha saída 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
    
por Robert Zelník 15.04.2017 / 10:59

1 resposta

6

Como Zoltan Laczko mencionado, do NetworkManager 1.2.4 (ubuntu 16.10) todos os dispositivos não-wifi / wwan são tratados como não gerenciados (veja sua resposta em uma pergunta semelhante Network Manager recusando-se a gerenciar com fio interfaces ). Uma solução é criar um arquivo vazio:

sudo touch /etc/NetworkManager/conf.d/10-globally-managed-devices.conf

... que irá ofuscar / substituir o que está em / usr / lib e depois reiniciar o Network Manager.

    
por Robert Zelník 15.04.2017 / 11:38