6

Looking to run a router application on the rPi-4, and was wondering if anyone has experience using usb 3.0 -> gigabit ethernet adapters on it - specifically what adapter/chipset worked with what driver, and also what speed was achieved, (would be particularly useful if it also tested the onboard Ethernet as a comparison simultaneously).

P.S. - Yes, I know it has an ethernet port already, I need a 2nd one

Also I expect significantly faster from previous models due to the 3.0 ports and that they aren't shared with the on-board ethernet anymore

user2813274
  • 1,289
  • 1
  • 12
  • 22

3 Answers3

5

I have a Pi 4 Model B/4GB serving a small office as a router/firewall/gateway with dnsmasq (DHCP+DNS), dnscrypt-proxy, chrony (NTP), and a few other odds and ends. It's fairly busy: up to 20 users at a time, lots of file uploads, three main VLANs (plus a management VLAN). There's minimal internal routing for the time being.

I haven't really stress-tested it yet but it's handling all those service and a 500/35-rated connection without breaking a sweat. Speed test is like 590/40. I was worried about 802.1q performance but it hasn't seemed to be an issue. I'm using sch_fq_codel (no shaper) for now; trying to get sch_cake up and running before I take the training wheels off and start throwing tons of stuff at it.

If you're planning to use the second ethernet connection as a WAN port, the problem you're going to run into is that USB NICs have no support for Byte Queue Limits (BQL) in the Linux kernel, and it doesn't appear likely to be added any time soon. This is going to severely hamper performance, and it renders sch_fq_codel, sch_cake, etc. nearly useless. The built-in NIC is attached directly to the SoC—as you've noted—and it uses the bcmgenet driver, which has BQL.

To work around this, I'm actually passing the WAN connection through a managed switch (UniFi) and VLAN-tagging it before sending it to the Pi. This could be a security nightmare but I think I've got it fairly well isolated between a combination of switch settings and firewall rules. As far as performance goes, the easiest way to think about it is that Internet uploads and downloads have to share capacity on both the transmit and receive sides of the gigabit link, so I have a budget of roughly 300 Mbps on either side for the aforementioned services and other internal traffic.

It's running Ubuntu Server arm64 (unofficial installer) with root on a USB 3.0 SATA SSD. For less than $100 all-in—including storage—it's far exceeded my expectations, and it should be fine until it makes sense to upgrade to something more substantial. It probably wasn't worth the cost savings on hardware once my time is factored in, but it's been a fun project!

mwp
  • 166
  • 1
  • 4
4

The other user didn't really answer the question asked, about what usb to ethernet adapters work with the Raspberry Pi 4. Here are some forum links I found that may help. I don't have a RPi 4 myself (yet!) so I can't confirm, but it seems that most adapters will work fine, with maybe a slightly more limited speed.

For physical devices what counts on Linux is the chip they are based on. In the customer testimony section I quickly found a comment by a kind soul who says “AX88179 chipset, ok with linux”.

From https://www.raspberrypi.org/forums/viewtopic.php?t=246113

First I tested the speed of the Ethernet and the USB 3.0 GB Ethernet dongle (Cable Matters, if it matters :)) using the above configuration. The Pi4 hardwired Ethernet generally got about 920Mb/sec in my tests (copying a large ISO from an NFS share). The Ethernet dongle was a bit slower, clocking in at about 880Mb.

and

I used a TP-Link USB3-Ethernet adapter for WAN. I get about 940Mbps without NAT.

From https://www.raspberrypi.org/forums/viewtopic.php?f=36&t=245649

Just buy a USB 3 Gigabit Networking Adaptor with a RTL8153 Chipset, which is supported under Linux.

From https://www.raspberrypi.org/forums/viewtopic.php?t=254146

Hope this helps!

Navin
  • 123
  • 5
makeworld
  • 141
  • 2
1

For anyone still looking - 2+ years on! - yes, I can confirm that AX88179-based USB Ethernet dongles work fine, including the Cable Matters USB-powered 4-port Ethernet switch which is also AX88179-based.

Reeshar
  • 11
  • 1