Estou tentando remover uma interface de rede permanentemente. Por algum motivo, ifconfig
listas eth0
e eth1
, embora as últimas métricas RX / TX permaneçam em zero.
Eu suspeito que uma entrada extra eth1
possa estar causando atrasos durante inicializar .
Surprinsgly, uma pesquisa não deu nenhuma resposta sobre como proceder. A maioria das mensagens são para versões mais antigas do Ubuntu ou Debian, ou para outras distros (RedHat), ou não têm efeito permanente, ou dizem respeito à adição de uma interface, ou tentam desativá-la, mas depois de iniciada ou simplesmente sem resposta. Mas a resposta pode estar em algum lugar depois da página de resultados do Google.
Remover a segunda entrada da área de trabalho (setas para cima e para baixo, na barra superior) não tem efeito em ifconfig
.
EDITAR : Eu realmente tenho duas placas de rede no MB. Isso é um pouco de surpresa, admito. Eu não tenho wifi. A questão ainda permanece, pelo menos por curiosidade.
krakoukass@durum:~$ ifconfig
eth0 Link encap:Ethernet HWaddr 00:1f:d0:a3:40:d9
inet addr:192.168.1.66 Bcast:192.168.1.255 Mask:255.255.255.0
inet6 addr: fe80::21f:d0ff:fea3:40d9/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:84 errors:0 dropped:0 overruns:0 frame:0
TX packets:93 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:12255 (12.2 KB) TX bytes:12241 (12.2 KB)
eth1 Link encap:Ethernet HWaddr 00:1f:d0:a3:40:db
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:65536 Metric:1
RX packets:634 errors:0 dropped:0 overruns:0 frame:0
TX packets:634 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:64758 (64.7 KB) TX bytes:64758 (64.7 KB)
krakoukass@durum:~$ lspci | grep -i eth
04:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 02)
05:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 02)
krakoukass@durum:~$ cat /etc/network/interfaces
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback
krakoukas@durum:~$ systemctl -l status [email protected]
● [email protected] - ifup for eth1
Loaded: loaded (/lib/systemd/system/[email protected]; static; vendor preset: enabled)
Active: active (exited) since Fri 2015-05-15 12:36:34 CEST; 14min ago
Process: 457 ExecStart=/bin/sh -ec ifup --allow=hotplug %I; ifup --allow=auto %I; if ifquery %I >/dev/null; then ifquery --state %I >/dev/null; fi (code=exited, status=0/SUCCESS)
Main PID: 457 (code=exited, status=0/SUCCESS)
May 15 12:36:34 durum systemd[1]: Started ifup for eth1.
May 15 12:36:34 durum systemd[1]: Starting ifup for eth1...
May 15 12:36:34 durum sh[457]: Unknown interface eth1
krakoukas@durum:~$ systemctl -l status [email protected]
● [email protected] - ifup for eth0
Loaded: loaded (/lib/systemd/system/[email protected]; static; vendor preset: enabled)
Active: active (exited) since Fri 2015-05-15 12:36:34 CEST; 15min ago
Process: 458 ExecStart=/bin/sh -ec ifup --allow=hotplug %I; ifup --allow=auto %I; if ifquery %I >/dev/null; then ifquery --state %I >/dev/null; fi (code=exited, status=0/SUCCESS)
Main PID: 458 (code=exited, status=0/SUCCESS)
May 15 12:36:34 durum systemd[1]: Started ifup for eth0.
May 15 12:36:34 durum systemd[1]: Starting ifup for eth0...
May 15 12:36:34 durum sh[458]: Unknown interface eth0
Agradecemos antecipadamente por sua ajuda.