como verificar a velocidade de ligação da placa de rede no Ubuntu 10.04

1

Eu tenho o Ubuntu 10.04 instalar o servidor DELL R710

Eu configurei a ligação de rede usando as etapas abaixo

sudo apt-get install ifenslave
-------------------------------------------
vi /etc/network/interfaces
# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
 iface eth0 inet manual
   bond-master bond0
 auto eth1
 iface eth1 inet manual
   bond-master bond0
 auto bond0
 iface bond0 inet static
   address 172.24.1.10
   gateway 172.24.1.1
   netmask 255.255.255.0
   dns-nameservers 172.24.1.50
   dns-search xxx.xxx
   bond-mode balance-rr
   bond-miimon 100
   bond-lacp-rate 1
   bond-slaves none
----------------------------------------------------------
cat /proc/net/bonding/bond0
Ethernet Channel Bonding Driver: v3.5.0 (November 4, 2008)
Bonding Mode: load balancing (round-robin)
MII Status: up
MII Polling Interval (ms): 100
Up Delay (ms): 0
Down Delay (ms): 0
Slave Interface: eth0
MII Status: up
Link Failure Count: 0
Permanent HW addr: xx:xx:xx:xx:xx:xx
Slave Interface: eth1
MII Status: up
Link Failure Count: 0
Permanent HW addr: xx:xx:xx:xx:xx:yy
----------------------------------------------------------------
 **its not showing the bonding speed .**
---------------------------------------------------------
ethtool eth0
Settings for eth0:
        Supported ports: [ TP ]
        Supported link modes:   10baseT/Half 10baseT/Full
                                100baseT/Half 100baseT/Full
                                1000baseT/Full
        Supports auto-negotiation: Yes
        Advertised link modes:  10baseT/Half 10baseT/Full
                                100baseT/Half 100baseT/Full
                                1000baseT/Full
        Advertised pause frame use: No
        Advertised auto-negotiation: Yes
        Link partner advertised link modes:  Not reported
        Link partner advertised pause frame use: No
        Link partner advertised auto-negotiation: No
        Speed: 1000Mb/s
        Duplex: Full
        Port: Twisted Pair
        PHYAD: 1
        Transceiver: internal
        Auto-negotiation: on
        MDI-X: Unknown
        Supports Wake-on: g
        Wake-on: g
        Link detected: yes
 ethtool eth1
Settings for eth1:
        Supported ports: [ TP ]
        Supported link modes:   10baseT/Half 10baseT/Full
                                100baseT/Half 100baseT/Full
                                1000baseT/Full
        Supports auto-negotiation: Yes
        Advertised link modes:  10baseT/Half 10baseT/Full
                                100baseT/Half 100baseT/Full
                                1000baseT/Full
        Advertised pause frame use: No
        Advertised auto-negotiation: Yes
        Link partner advertised link modes:  Not reported
        Link partner advertised pause frame use: No
        Link partner advertised auto-negotiation: No
        Speed: 1000Mb/s
        Duplex: Full
        Port: Twisted Pair
        PHYAD: 1
        Transceiver: internal
        Auto-negotiation: on
        MDI-X: Unknown
        Supports Wake-on: g
        Wake-on: g
        Link detected: yes

a velocidade da placa de rede é de 1000MBPS. Como faço para verificar a velocidade da rede bond0.

    
por Praveen 10.05.2013 / 06:31

1 resposta

0

Está completamente relacionado com a sua estratégia de ligação. essa velocidade mostra apenas a velocidade máxima de conexão entre os adaptadores de rede na rede local e, na maioria das vezes, isso não é verdade!

Baseado em modo de ligação selecionado em / etc / network / interfaces e descrição de balance-rr em documentos do Ubuntu, este modo é para Transmitir pacotes em ordem seqüencial do primeiro escravo disponível até o último. Este modo fornece balanceamento de carga e tolerância a falhas . Depende da maneira como você solicita pacotes e da acessibilidade de cada interface ou rota até aquele ponto da rede. Dê uma olhada nesta documentação .

    
por Amir Reza Adib 11.05.2013 / 21:02