Ho comprato un piccolo adattatore USB Ethernet Gigabit, che funziona bene OOTB in un Raspberry Pi 3, ma solo a 100 MB / s. Come posso farlo funzionare a tutta velocità?
ethtool:
# ethtool eth1
Settings for eth1:
Supported ports: [ TP MII ]
Supported link modes: 10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
1000baseT/Half 1000baseT/Full
Supported pause frame use: No
Supports auto-negotiation: Yes
Advertised link modes: 10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
Advertised pause frame use: Symmetric Receive-only
Advertised auto-negotiation: Yes
Link partner advertised link modes: 10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
Link partner advertised pause frame use: Symmetric
Link partner advertised auto-negotiation: Yes
Speed: 100Mb/s
Duplex: Full
Port: MII
PHYAD: 32
Transceiver: internal
Auto-negotiation: on
Supports Wake-on: pumbg
Wake-on: g
Current message level: 0x00007fff (32767)
drv probe link timer ifdown ifup rx_err tx_err tx_queued intr tx_done rx_status pktdata hw wol
Link detected: yes
lshw:
*-network:2
description: Ethernet interface
physical id: 4
logical name: eth1
serial: 💩💩💩💩
size: 100Mbit/s
capacity: 1Gbit/s
capabilities: ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=r8152 driverversion=v1.08.8 duplex=full ip=192.168.1.5 link=yes multicast=yes port=MII speed=100Mbit/s
lsmod
Module Size Used by
rpcsec_gss_krb5 23752 0
brcmfmac 222874 0
brcmutil 9092 1 brcmfmac
cfg80211 543027 1 brcmfmac
cdc_ether 6354 0
rfkill 20851 1 cfg80211
r8152 37460 0
bcm2835_gpiomem 3940 0
uio_pdrv_genirq 3923 0
uio 10204 1 uio_pdrv_genirq
fixed 3285 0
snd_bcm2835 24427 0
snd_pcm 98501 1 snd_bcm2835
snd_timer 23968 1 snd_pcm
snd 70032 3 snd_timer,snd_bcm2835,snd_pcm
joydev 9988 0
uinput 9125 0
ipv6 408971 32
La prima cosa che ho notato è che 1000 è effettivamente supportato, ma non pubblicizzato. Forse perché il fallback da USB 3 a USB 2 ricade anche a 100 MBit / s?
Provai
# ethtool -s eth1 speed 1000 duplex full
Ma niente fortuna.
Il marchio dell'adattatore è "rankie" (facile da trovare su Amazon).
Inoltre, l'adattatore è collegato a uno switch gigabit. Il mio NAS è collegato a quello switch e funziona senza problemi a 1000mbits / s, quindi dubito che sia questo il problema.
Infine, l'adattatore Ethernet è l'unico dispositivo USB collegato al PI, quindi anche se non mi aspetto un pieno di 1000 Mbps, mi aspettavo di arrivare da qualche parte alla velocità USB 2.0
ethtool
. È interessante notare che, anche senza configurare la velocità, l'uso di adattatori USB3 ha aumentato la velocità di trasmissione RPi da ~ 94 Mbps a ~ 113 Mbps. Ho letto di persone che si avvicinano a 300 Mbps usando adattatori USB3 correttamente configurati. Il bus USB2 supporta un throughput di gran lunga superiore a 100 Mbps, anche se non otterrai 1 Gbps.
lshw
Vuoi illuminarmi sull'output?