| Chipset | USB | Buffers | Max speed | Source | ||
|---|---|---|---|---|---|---|
| Intec Wii Lan Adapter G5626 | ASIX AX88772 | b-rad.cc | ||||
| Wii - USB 2.0 Ethernet Adaptor | ?? | | oaf | |||
| Apple USB Ethernet Adapter | ASIX AX88772 | USB2.0 | 20+8kb | 46/N720p | |
| Speed Dragon USB 2.0 10/100Mbps Ethernet | MCS7830 | ?? | 50/N720p 1) | droopysk | ||
| Gigabit lan USB 2.0 10/100/1000mbps ethernet adapter | AX99178 | USB2.0 | 20+20kb | 50 | saxin1 | |
| HNU2GTX GIGABIT Lan Card on USB 2.0 Interface | ASIX AX88178 | USB2.0 | 20+20kb | 43,5Mbit/cat | techinfo | |
| Belkin Gigabit adaptor | ASIX AX88178 | USB2.0 | x/x | 61/NFS | Malcolm2010 |
| A-LINK NA1GU USB 2.0 Network adapter, 10/100/1000MB | ASIX AX88178 | USB2.0 | C20/N55 | ||
| Sitecom LN-030 adapter | MCS7830 | USB2.0 | | argf | ||
| AirLive EtherWe-1000U | ASIX AX88772 | USB2.0 | | paxcer | ||
| Airlink 101 USB-to-Ethernet adapter | ASIX AX88772 | USB2.0 | | PJfan | ||
| Intec Wii Lan Adapter G5626 | ASIX AX88772 | USB2.0 | | |||
| Trendnet (TU2-ET100) 10/100Mbps Ethernet Adapter | ASIX AX88772 | USB2.0 | 50/C720p | cerulean | |
| Wintech LAU-15 usb | MCS7830 | USB2.0 | 14/720p | esxadmin | |
| BESTCON MCS7830 10/100 USB Ethernet | MCS7830 | USB2.0 | | link | ||
| DIGITUS Gigabit Ethernet USB 2.0 adapter DN-3022 | ASIX AX88178 | USB2.0 | 25/C720p | tested | ||
| HE2230 USB 2.0 3-port Hub with Ethernet Adapter | ? | USB2.0 | 50/CAT2) | |||
| LevelOne USB-0201 Gbit ethernet adapter | ASIX AX88178 | USB | 63/NFS 3) | pibos | |
| MPT Fast Ethernet Network Interface Card | ASIX AX88178 | USB2.0? | | NO TEST | driver | |
| Sabrent G1000 | ASIX AX88178 | USB2.0 | | |||
| Newlink USB2.0 | ASIX AX88772 | USB2.0 | 50/NFS | |||
| Airlink ASOHOUSB 10-100Mbps Fast Ethernet | USB2.0 | |||||
| BPI USB Ethernet Adapter | RTL8150 | USB1.x | 2/16 | NO TEST | ||
| Eminent 1010 Rev 2 | Pegasus | | mcflyy | |||
| Edimax eu-4026 usb lan adapter | MCS7830 | 20/CIFS | rezmus | |||
| Topcom USB LAN 100 | ADM8511 | untested | ||||
| Topcom USB LAN 101 | ADM8513 | mcfly | ||||
| Topcom USB LAN 102 | ADM851X | untested | ||||
| Linksys USB100M adapter | rtl8150 | USB1.1 | ||||
![]() | Linksys USB200M rev 2 adapter | ASIX | USB2.0 | 8/2kb | 20 Mbps / CIFS | |
| DIGITUS 10/100 Mbps Fast Ethernet adapter DN-3016-A | ADM851x/3/5 | NOT WORK | link | |||
| D-Link DUB-E100 H/W Version B1 4) | N/A | USB 2.0 | 50/C720p | |||
| | ASIX | USB-2H 5) | untested | |||
| edimax eu-4026 usb lan adapter | MCS7830 | USB2.0 | untested | |||
| Dynamode USB-NIC-1427-100 usb lan adapter | RTL8150 | USB-1.1 6) | 2.2Mbps ALL | avi |
NOTE : It appears that any USB 2.0 network adapter works with or without a hub, but USB 1.1 network adapters are the ones that will not work unless you use an external USB2.0 HUB. I'm speculating that there is a bug in the USB1.1 controller (and when a USB1.1 device is plugged into a USB2.0 hub externally, it's actually controlled by the USB2.0 controller, which works fine)
It's a yucky dongle though: the link drops every time the cable moves the slightest bit.
The issue can be solved with a few Nylon Wire Ties (pictures to come soon…)
--- asix.c~ 2009-02-11 02:47:27.000000000 -0600
+++ asix.c 2009-02-11 02:47:27.000000000 -0600
@@ -912,6 +912,10 @@
// ASIX AX88772 10/100
USB_DEVICE (0x0b95, 0x7720),
.driver_info = (unsigned long) &ax88772_info,
+}, {
+ // Linksys USB200M Rev 2
+ USB_DEVICE (0x13b1, 0x0018),
+ .driver_info = (unsigned long) &ax88772_info,
},
{ }, // END
};
--- asix.c.orig 2009-02-19 17:13:41.062500000 -0600
+++ asix.c 2009-02-19 17:13:47.234375000 -0600
@@ -912,6 +912,18 @@
// ASIX AX88772 10/100
USB_DEVICE (0x0b95, 0x7720),
.driver_info = (unsigned long) &ax88772_info,
+}, {
+ // Linksys USB200M Rev 2
+ USB_DEVICE (0x13b1, 0x0018),
+ .driver_info = (unsigned long) &ax88772_info,
+}, {
+ // Belkin F5D5055
+ USB_DEVICE (0x050d, 0x5055),
+ .driver_info = (unsigned long) &ax8817x_info,
+}, {
+ // Apple USB Ethernet Adapter
+ USB_DEVICE (0x05ac, 0x1402),
+ .driver_info = (unsigned long) &ax88772_info,
},
{ }, // END
};