Estou tentando solucionar os tempos de inicialização de uma máquina relativamente moderna com um SSD. A máquina roda o Ubuntu Server 14.04.3 LTS e tem duas portas ethernet. O Network Manager não está instalado. Todos os dispositivos são compatíveis com Gigabit ethernet e o cabeamento Cat6 é usado por toda parte. Os comprimentos de cabo do servidor para o switch são de 6 ou 10 pés.
Quando apenas eth0
estava em uso com o DHCP, a máquina inicializava em cerca de 2,5 a 3 segundos.
Ativei eth1
e adicionei br0
para dar suporte à ponte de host para virtualização. As VMs usam a segunda interface Ethernet e nenhuma das VMs é iniciada automaticamente. Agora os tempos de inicialização são 30 segundos ou mais.
Como faço para solucionar isso?
Ou como posso corrigi-lo (se puder ser determinado a partir das informações limitadas que tenho)?
/ etc / networks / interfaces
Alterar o estado do protocolo spanning tree (ligado ou desligado) não faz diferença. Comentar a ponte reduz o tempo de inicialização para cerca de 5 segundos.
$ cat /etc/network/interfaces
...
# Primary network interface
auto eth0
iface eth0 inet dhcp
# Secondary network interface
iface eth1 inet manual
pre-up ifconfig $IFACE up
post-down ifconfig $IFACE down
# Bridged interface for virtualization
auto br0
iface br0 inet dhcp
bridge_ports eth1
bridge_stp on
bridge_fd 0
bridge_maxwait 0
saída do dmesg
$ dmesg | egrep -i "(eth|r1869)"
[ 1.580017] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[ 1.581643] r8169 0000:02:00.0 eth0: RTL8168evl/8111evl at 0xffffc900018fc000, 00:e0:4c:68:03:5e, XID 0c900800 IRQ 46
[ 1.582988] r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[ 1.583755] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[ 1.585640] r8169 0000:03:00.0 eth1: RTL8168evl/8111evl at 0xffffc90005b98000, 00:e0:4c:68:03:5f, XID 0c900800 IRQ 48
[ 1.587100] r8169 0000:03:00.0 eth1: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[ 3.086938] r8169 0000:02:00.0 eth0: link down
[ 3.086956] r8169 0000:02:00.0 eth0: link down
[ 5.463989] r8169 0000:02:00.0 eth0: link up
[ 7.138820] device eth1 entered promiscuous mode
[ 7.248670] r8169 0000:03:00.0 eth1: link down
[ 7.248687] r8169 0000:03:00.0 eth1: link down
[ 25.169258] r8169 0000:03:00.0 eth1: link up
[ 25.169742] br0: port 1(eth1) entered listening state
[ 25.169748] br0: port 1(eth1) entered listening state
[ 27.171555] br0: port 1(eth1) entered learning state
[ 29.174455] br0: port 1(eth1) entered forwarding state
ethtool
$ sudo ethtool eth0 | egrep -i "(speed|duplex|neg)"
Speed: 1000Mb/s
Duplex: Full
Auto-negotiation: on
$ sudo ethtool eth1 | egrep -i "(speed|duplex|neg)"
Speed: 100Mb/s
Duplex: Full
Auto-negotiation: on