Obtenha informações da LAN

0

Existe alguma maneira de obter os detalhes da minha conexão de rede local no Ubuntu 16.04? Especialmente aquela parte onde diz se um 100 Mbps ou um 1000 Mbps estão em uso. Eu já tentei lspci | grep Ethernet , mas isso só me dá isso: %código% Então, isso me diz que é um Gigabit, portanto, a 1000 Mbps, mas não há uma maneira mais técnica de descobrir isso?

    
por Socrates 14.01.2018 / 19:18

2 respostas

2

acho que você está pesquisando:

sudo lshw -C Network
 *-network
       description: Ethernet interface
       product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
       vendor: Realtek Semiconductor Co., Ltd.
       physical id: 0
       bus info: pci@0000:04:00.0
       logical name: eth0
       version: 06
       serial: fx:xx:xx:xx:xx:x4
       size: 1Gbit/s
       capacity: 1Gbit/s
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress msix vpd bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=full firmware=rtl_nic/rtl8168e-2.fw ip=xxx.xxx.xxx.xxx latency=0 link=yes multicast=yes port=MII speed=1Gbit/s
       resources: irq:24 ioport:e000(size=256) memory:d0004000-d0004fff memory:d0000000-d0003fff
    
por AlexOnLinux 14.01.2018 / 19:31
2

Instale o pacote ethtool . Então use

sudo ethtool eth0

Substitua eth0 pela interface em que você está interessado.

$ sudo ethtool eth0
Settings for eth0:
    Supported ports: [ TP ]
    Supported link modes:   10baseT/Half 10baseT/Full 
                            100baseT/Half 100baseT/Full 
                            1000baseT/Full 
    Supported pause frame use: No
    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
    Speed: 1000Mb/s
    Duplex: Full
    Port: Twisted Pair
    PHYAD: 2
    Transceiver: internal
    Auto-negotiation: on
    MDI-X: off (auto)
    Supports Wake-on: pumbg
    Wake-on: g
    Current message level: 0x00000007 (7)
                   drv probe link
    Link detected: yes
    
por Florian Diesch 14.01.2018 / 19:27