0
  • 聊天消息
  • 系統(tǒng)消息
  • 評(píng)論與回復(fù)
登錄后你可以
  • 下載海量資料
  • 學(xué)習(xí)在線課程
  • 觀看技術(shù)視頻
  • 寫文章/發(fā)帖/加入社區(qū)
會(huì)員中心
創(chuàng)作中心

完善資料讓更多小伙伴認(rèn)識(shí)你,還能領(lǐng)取20積分哦,立即完善>

3天內(nèi)不再提示

WiFi7 - 改善你的 OpenWrt One開源路由器

Banana Pi開源硬件 ? 來(lái)源:Banana Pi開源硬件 ? 作者:Banana Pi開源硬件 ? 2024-10-31 18:52 ? 次閱讀

需要:

  • OpenWrt一
  • m2 MTK mt7925 或 QCA WCN7850 ath12k - 均支持 80211BE 6GHz
  • M2 M 至 A+E 適配器
  • 天線
  • 鉆機(jī)(6.5 毫米)
wKgZoWcjYV6ANDBaAAQLTQTk66o190.jpgwKgaoWcjYV-ABRujAATvLjZ85zM409.jpgwKgZoWcjYWCAAaivAAZ5nzEvIRY401.jpg

安裝最新的 OpenWrt 主程序(啟用驅(qū)動(dòng)程序),您就擁有了完全開源的路由器,支持 802.11BE 和 6GHz。測(cè)試了 mt7925 和 wcn7850 卡。

你可以花大約 100 歐元買到它 - 效果非常好 :)

luci 展示的內(nèi)容:

wKgaoWcjYWCARcdYAAFCboRQHBg139.jpg

Intel BE200/AX210 與 MT7925 連接測(cè)試(AP 內(nèi)部為 ath12k):


janusz@e850:~/github/wifi_tests/tests/remote$ ./run-tests.py -c cfg-janusz.py -d one -r be200 -t connect_all
DUT: one
REF: be200
RUN check_devices
PASS
START - connect_all (1/1)
PASS (
        (5g/36/HE80): ping pkt loss ap->sta: 0%, sta->ap: 0%
        (6g/1/EHT320): ping pkt loss ap->sta: 0%, sta->ap: 0%
        (2g/1/HE20): ping pkt loss ap->sta: 0%, sta->ap: 0%
) - 71.748851s

janusz@e850:~/github/wifi_tests/tests/remote$ ./run-tests.py -c cfg-janusz.py -d one -r mt7925 -t connect_all
DUT: one
REF: mt7925
RUN check_devices
PASS
START - connect_all (1/1)
PASS (
        (5g/36/HE80): ping pkt loss ap->sta: 0%, sta->ap: 0%
        (6g/1/EHT320): ping pkt loss ap->sta: 0%, sta->ap: 0%
        (2g/1/HE20): ping pkt loss ap->sta: 0%, sta->ap: 0%
) - 64.269238s

janusz@e850:~/github/wifi_tests/tests/remote$ ./run-tests.py -c cfg-janusz.py -d one -r ax210 -t connect_all
DUT: one
REF: ax210
RUN check_devices
PASS
START - connect_all (1/1)
PASS (
        (5g/36/HE80): ping pkt loss ap->sta: 0%, sta->ap: 0%
        (6g/1/EHT320): ping pkt loss ap->sta: 0%, sta->ap: 0%
        (2g/1/HE20): ping pkt loss ap->sta: 0%, sta->ap: 0%
) - 70.073853s 
root@OpenWrt:~# iw dev
phy#2
        Interface wlan2
                ifindex 11
                wdev 0x200000003
                addr 00:03:7f:58:28:37
                ssid OpenWrtOne
                type AP
                channel 1 (5955 MHz), width: 320 MHz, center1: 6105 MHz
                txpower 24.00 dBm
                multicast TXQ:
                        qsz-byt qsz-pkt flows   drops   marks   overlmt hashcol tx-bytes        tx-packets
                        0       0       12      0       0       0       0       1276            12
phy#1
        Interface wlan1
                ifindex 13
                wdev 0x100000003
                addr 20:05:b6:ff:00:2b
                ssid OpenWrtOne
                type AP
                channel 36 (5180 MHz), width: 80 MHz, center1: 5210 MHz
                txpower 23.00 dBm
                multicast TXQ:
                        qsz-byt qsz-pkt flows   drops   marks   overlmt hashcol tx-bytes        tx-packets
                        0       0       21      0       0       0       0       2364            21
phy#0
        Interface wlan0
                ifindex 12
                wdev 0x3
                addr 20:05:b6:ff:00:2a
                ssid OpenWrtOne
                type AP
                channel 1 (2412 MHz), width: 20 MHz, center1: 2412 MHz
                txpower 20.00 dBm
                multicast TXQ:
                        qsz-byt qsz-pkt flows   drops   marks   overlmt hashcol tx-bytes        tx-packets
                        0       0       12      0       0       0       0       1276            12
root@OpenWrt:~# 

root@OpenWrt:~# ubus call system board
{
        "kernel": "6.6.54",
        "hostname": "OpenWrt",
        "system": "ARMv8 Processor rev 4",
        "model": "OpenWrt One",
        "board_name": "openwrt,one",
        "rootfs_type": "squashfs",
        "release": {
                "distribution": "OpenWrt",
                "version": "SNAPSHOT",
                "revision": "r27722-e00b6ba0c8",
                "target": "mediatek/filogic",
                "description": "OpenWrt SNAPSHOT r27722-e00b6ba0c8"
        }
}
root@OpenWrt:~# 
root@OpenWrt:~# cat /etc/config/wireless 

config wifi-device 'radio0'
        option type 'mac80211'
        option path 'platform/soc/18000000.wifi'
        option band '2g'
        option channel '1'
        option htmode 'HE20'
        option country 'GB'

config wifi-iface 'default_radio0'
        option device 'radio0'
        option network 'lan'
        option mode 'ap'
        option ssid 'OpenWrtOne'
        option encryption 'sae-mixed'
        option key 'testtest12'
        option ifname 'wlan0'

config wifi-device 'radio1'
        option type 'mac80211'
        option path 'platform/soc/18000000.wifi+1'
        option band '5g'
        option channel '36'
        option htmode 'HE80'
        option country 'GB'

config wifi-iface 'default_radio1'
        option device 'radio1'
        option network 'lan'
        option mode 'ap'
        option ssid 'OpenWrtOne'
        option encryption 'sae-mixed'
        option key 'testtest12'
        option ifname 'wlan1'

config wifi-device 'radio2'
        option type 'mac80211'
        option path 'soc/11280000.pcie/pci0000:00/0000:00:00.0/0000:01:00.0'
        option band '6g'
        option channel '1'
        option htmode 'EHT320'
        option country 'GB'

config wifi-iface 'default_radio2'
        option device 'radio2'
        option network 'lan'
        option mode 'ap'
        option ssid 'OpenWrtOne'
        option encryption 'sae'
        option key 'testtest12'
        option ifname 'wlan2'

root@OpenWrt:~#

聲明:本文內(nèi)容及配圖由入駐作者撰寫或者入駐合作網(wǎng)站授權(quán)轉(zhuǎn)載。文章觀點(diǎn)僅代表作者本人,不代表電子發(fā)燒友網(wǎng)立場(chǎng)。文章及其配圖僅供工程師學(xué)習(xí)之用,如有內(nèi)容侵權(quán)或者其他違規(guī)問(wèn)題,請(qǐng)聯(lián)系本站處理。 舉報(bào)投訴
  • 路由
    +關(guān)注

    關(guān)注

    0

    文章

    275

    瀏覽量

    41731
  • 開源硬件
    +關(guān)注

    關(guān)注

    8

    文章

    204

    瀏覽量

    29700
  • 開發(fā)板
    +關(guān)注

    關(guān)注

    25

    文章

    4886

    瀏覽量

    97018
  • OpenWrt
    +關(guān)注

    關(guān)注

    10

    文章

    126

    瀏覽量

    39240
  • wifi7
    +關(guān)注

    關(guān)注

    0

    文章

    116

    瀏覽量

    5440
收藏 人收藏

    評(píng)論

    相關(guān)推薦

    即將推出的 OpenWrt One/AP-24.XY:OpenWrt 和 Banana Pi 合作路由器

    。OpenWrt One/AP-24.XY 路由器板預(yù)計(jì)將于 2024 年推出。原理圖將在開源許可下公開。 OpenWrt 開發(fā)人員已開始開
    發(fā)表于 01-13 09:56

    OpenWRT 開源社區(qū)官方第一塊開發(fā)板 OpenWrt One/AP-24.XY,正式面世

    ://forum.banana-pi.org/t/openwrt-one-ap-24-xy-with-mediatek-mt7981b-filogic-820-sample-ready/17726 *#開源硬件#**#開源社區(qū)#
    發(fā)表于 04-09 11:32

    Wi-Fi 7 - 改善OpenWrt One 開源路由器

    ) []() []() []() 安裝最新的 OpenWrt 主程序(啟用驅(qū)動(dòng)程序),您就擁有了完全開源路由器,支持 802.11BE 和 6GHz。測(cè)試了 mt7925 和 wcn7850 卡。
    發(fā)表于 10-31 18:54

    Banana Pi BPI-R4 Wifi7開源路由器外殼組裝教程,包括5G和wifi7#路由器 #開發(fā)板

    路由器開源
    Banana Pi開源硬件
    發(fā)布于 :2024年05月25日 12:05:09

    openwrt路由器配置方法技巧分享

    OpenWrt被描述為一個(gè)嵌入式的 Linux發(fā)行版。本文主要介紹了openwrt的特點(diǎn)、openwrt的優(yōu)勢(shì)與劣勢(shì)以及openwrt路由器
    發(fā)表于 12-27 08:50 ?9.9w次閱讀
    <b class='flag-5'>openwrt</b><b class='flag-5'>路由器</b>配置方法技巧分享

    小米路由器如何刷openwrt詳細(xì)教程

    想要刷入OPENWRT系統(tǒng)是要路由器支持的,如果路由器不支持請(qǐng)不要刷機(jī),以免路由器成為磚頭,另外路由
    發(fā)表于 12-27 09:14 ?11.3w次閱讀
    小米<b class='flag-5'>路由器</b>如何刷<b class='flag-5'>openwrt</b>詳細(xì)教程

    路由器openwrt好處_路由器怎么刷openwrt

    openwrt是嵌入式設(shè)備上運(yùn)行的linux系統(tǒng)。本文主要介紹了openwrt的特點(diǎn)、openwrt優(yōu)勢(shì)與劣勢(shì)、常見刷openwrt路由器
    發(fā)表于 12-27 09:47 ?17.3w次閱讀

    OpenWrt路由器的使用教程資料說(shuō)明

    本文檔的主要內(nèi)容詳細(xì)介紹的是OpenWrt路由器的使用教程資料說(shuō)明,
    發(fā)表于 05-09 17:36 ?58次下載
    <b class='flag-5'>OpenWrt</b><b class='flag-5'>路由器</b>的使用教程資料說(shuō)明

    wifi7最新消息:wifi7路由器什么時(shí)候上市 高通中興已發(fā)力

    wifi7最新消息:wifi7路由器什么時(shí)候上市 高通中興已發(fā)力 在MWC上很多亮點(diǎn)值得關(guān)注,我們一起來(lái)看看wifi7最新消息;802.11n(2009)、802.11ac(2013年
    發(fā)表于 03-07 11:46 ?1w次閱讀

    高通Wifi7進(jìn)展太快 高通wifi7芯片宣告wifi7時(shí)代到來(lái)

    高通Wifi7進(jìn)展太快 高通wifi7芯片宣告wifi7時(shí)代到來(lái) WIFI7帶來(lái)的革命性變革可以極大的提高高速數(shù)據(jù)傳輸?shù)男盘?hào)密度,Wi-Fi 7
    的頭像 發(fā)表于 12-14 17:24 ?4738次閱讀
    高通<b class='flag-5'>Wifi7</b>進(jìn)展太快 高通<b class='flag-5'>wifi7</b>芯片宣告<b class='flag-5'>wifi7</b>時(shí)代到來(lái)

    Banana Pi BPI-R4采用Filogic 880芯片,Wifi7路由器 旨在成為家庭網(wǎng)絡(luò)項(xiàng)目的核心

    Banana Pi BPI-R4采用Filogic 880芯片,Wifi7路由器 旨在成為家庭網(wǎng)絡(luò)項(xiàng)目的核心
    的頭像 發(fā)表于 09-04 09:36 ?2108次閱讀
    Banana Pi BPI-R4采用Filogic 880芯片,<b class='flag-5'>Wifi7</b><b class='flag-5'>路由器</b> 旨在成為家庭網(wǎng)絡(luò)項(xiàng)目的核心

    華為wifi7路由器什么時(shí)候上市?今天在華為全場(chǎng)景發(fā)布會(huì)上亮相

    華為wifi7路由器什么時(shí)候上市?今天終于上市。 在9月25日的華為全場(chǎng)景發(fā)布會(huì)上華為wifi7路由器BE2??Pro?亮相。性能強(qiáng)悍,穿過(guò)3堵墻都依然給力,比友商超出81%。 ? ?
    的頭像 發(fā)表于 09-25 16:22 ?5962次閱讀
    華為<b class='flag-5'>wifi7</b><b class='flag-5'>路由器</b>什么時(shí)候上市?今天在華為全場(chǎng)景發(fā)布會(huì)上亮相

    wifi7是什么意思 wifi7什么時(shí)候上市

    wifi7是什么意思 wifi7是第七代WiFi無(wú)線網(wǎng)絡(luò),速度可高達(dá)30Gbps ,是WiFi 6最高9.6Gbps速率的三倍之多。相比于Wi-Fi 6,
    的頭像 發(fā)表于 10-19 16:46 ?3607次閱讀

    wifi7什么時(shí)候出來(lái) wifi7手機(jī)有哪些

    wifi7手機(jī)有哪些 支持wifi7的手機(jī)有一加Ace2Pro、榮耀Magic5、小米13系列、Redmi K60Pro、小米萬(wàn)兆路由器等。 據(jù)了解,wifi7是第七代
    的頭像 發(fā)表于 10-19 16:52 ?1.4w次閱讀

    即將推出的 OpenWrt One/AP-24.XY:OpenWrt官方 和 Banana Pi官方合作路由器

    OpenWrt開發(fā)人員正在與Banana Pi合作開發(fā)OpenWrt One/AP-24.XY路由器板。OpenWrt 是一個(gè)輕量級(jí)嵌入式
    的頭像 發(fā)表于 01-15 18:02 ?803次閱讀
    即將推出的 <b class='flag-5'>OpenWrt</b> <b class='flag-5'>One</b>/AP-24.XY:<b class='flag-5'>OpenWrt</b>官方 和 Banana Pi官方合作<b class='flag-5'>路由器</b>板