hardware:ax3600

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
hardware:ax3600 [2024/04/20 09:33] – [Firmware] adminhardware:ax3600 [2024/04/20 10:08] (current) – [XIAOM 3600 working NSS] admin
Line 3: Line 3:
 https://openwrt.org/toh/xiaomi/ax3600  https://openwrt.admincomps.ru/nss-wifi/ \\ https://openwrt.org/toh/xiaomi/ax3600  https://openwrt.admincomps.ru/nss-wifi/ \\
  
-<WRAP left 60%>+<WRAP left info 60%>
 Interesting :!: \\ Interesting :!: \\
 google bbr \\ google bbr \\
Line 42: Line 42:
  
 ===== Firmware ===== ===== Firmware =====
-download to /tmp firmware,  check sha256sum ''sysupgrade -n /tmp/openwrt-qualcommax-ipq807x-xiaomi_ax3600-squashfs-sysupgrade.bin'' +Journal of update 
 +^ date      ^ version                                                                    ^ Comment                                                   ^ 
 +| 20240420  | OpenWrt SNAPSHOT r26231-0b72cb3f3c / LuCI Master 24.100.29615~1181915      | https://openwrt.admincomps.ru/nss-wifi/ working         | 
 +| 20240214  | OpenWrt SNAPSHOT r25109-4a3522b9e1 / LuCI Master git-24.031.09542-8a0ee66  | https://openwrt.admincomps.ru/nss-wifi/20240201/ working  | 
 +| 20240212  | OpenWrt SNAPSHOT r22827-6d9aab3e4e / LuCI Master git-23.118.79121-6fb185f  | stable                                                    |
  
-++++ Backup|+++++ 1.Backup|
 <code BASH> <code BASH>
 # Generate backup # Generate backup
Line 54: Line 57:
 # copy backup # copy backup
 scp /tmp/backup-*.tar.gz [email protected]:/volume1/backup/my_backup/dev_ax3600/  scp /tmp/backup-*.tar.gz [email protected]:/volume1/backup/my_backup/dev_ax3600/ 
 +</code>
 +++++ 
 +
 +++++ 2.Upgrade firmware|
 +<code BASH>
 +# get firmware
 +cd /tmp
 +wget https://openwrt.admincomps.ru/nss-wifi/20240415/openwrt-qualcommax-ipq807x-xiaomi_ax3600-squashfs-sysupgrade.bin
 +#check summ
 +sha256sum *sysupgrade*
 +#upgrade
 +sysupgrade -n /tmp/openwrt-qualcommax-ipq807x-xiaomi_ax3600-squashfs-sysupgrade.bin
 </code> </code>
 ++++ ++++
-^ date      ^ version                                                                    ^ Comment                                                   ^ 
-| 20240420  | OpenWrt SNAPSHOT r26231-0b72cb3f3c / LuCI Master 24.100.29615~1181915      | https://openwrt.admincomps.ru/nss-wifi/ - working         | 
-| 20240214  | OpenWrt SNAPSHOT r25109-4a3522b9e1 / LuCI Master git-24.031.09542-8a0ee66  | https://openwrt.admincomps.ru/nss-wifi/20240201/ working  | 
-| 20240212  | OpenWrt SNAPSHOT r22827-6d9aab3e4e / LuCI Master git-23.118.79121-6fb185f  | stable                                                    | 
  
  
-  * * <https://openwrt.admincomps.ru/nss/> - прошивка с NSS - ускорением и патчами 
-  * <https://oded.dev/2020/11/30/AX3600-1/> get ssh access <https://github.com/odedlaz/ax3600-files> 
-  * <https://4pda.to/forum/index.php?showtopic=983152> 4pda main tread 
-  * https://irq5.io/2020/08/10/custom-firmware-for-the-xiaomi-ax3600-wireless-router/ - how to bake firmare 
-  * <https://4pda.to/forum/index.php?showtopic=983152&st=4380#entry107499790> patch web ui for set power from web ui 
-  * https://github.com/galeksandrp/xqrepack/tree/txpwr - patch for UI 
-  * https://github.com/galeksandrp/xqrepack/tree/stock-rootfs - files of firmware 
-  * https://4pda.to/forum/index.php?showtopic=983152&st=7780#entry115083527 - configure channel 
  
- 
-  * AX worse than AC with theory - https://forum.openwrt.org/t/802-11ax-worse-than-802-11ac-with-mt76-driver/126466/2?page=5 
- 
-  * power supply блок питания https://tdtorus.ru/product/blok_pitaniya_bgp_123_1 
-  
 ===== XIAOM 3600 working NSS ===== ===== XIAOM 3600 working NSS =====
 +<code BASH>
 +# thermal
 +for i in /sys/devices/virtual/thermal/ther*/type; do awk -v temp="$(cat ${i%/*}/temp)" '{gsub(/(wcss-|-thermal)/,"");printf("%8s %.1f°C \n", $1, temp / 1000)}' $i; done|sort
 +</code>
 ++++ Shell command for work with nss| ++++ Shell command for work with nss|
 <code BASH> <code BASH>
Line 134: Line 136:
 </code> </code>
 ++++ ++++
 +
 +++++ SQM config|
 +<code BASH>
 +#qosmio sqm https://forum.openwrt.org/t/ipq807x-nss-build/148529/1578?u=tttest25
 +config queue 'wan'
 + option interface 'wan'
 + option linklayer 'none'
 + option qdisc_advanced '1'
 + option squash_dscp '0'
 + option squash_ingress '1'
 + option ingress_ecn 'ECN'
 + option egress_ecn 'ECN'
 + option qdisc 'fq_codel'
 + option verbosity '5'
 + option script 'nss-zk.qos'
 + option debug_logging '1'
 + option enabled '1'
 + option qdisc_really_really_advanced '1'
 + option iqdisc_opts 'interval 25ms quantum 304'
 + option eqdisc_opts 'interval 25ms quantum 304'
 + option upload '969220'
 + option download '969220'
 + option itarget '2.5ms'
 + option etarget '2.5ms'
 +</code>
 +++++
 +
 ===== xiaomi 3600 cmd openwrt ===== ===== xiaomi 3600 cmd openwrt =====
 <WRAP left important 60%> <WRAP left important 60%>
Line 296: Line 325:
  
  
 +===== Xiaomi3600 old =====
  
 +
 +
 +  * <https://oded.dev/2020/11/30/AX3600-1/> get ssh access <https://github.com/odedlaz/ax3600-files>
 +  * <https://4pda.to/forum/index.php?showtopic=983152> 4pda main tread
 +  * https://irq5.io/2020/08/10/custom-firmware-for-the-xiaomi-ax3600-wireless-router/ - how to bake firmare
 +  * <https://4pda.to/forum/index.php?showtopic=983152&st=4380#entry107499790> patch web ui for set power from web ui
 +  * https://github.com/galeksandrp/xqrepack/tree/txpwr - patch for UI
 +  * https://github.com/galeksandrp/xqrepack/tree/stock-rootfs - files of firmware
 +  * https://4pda.to/forum/index.php?showtopic=983152&st=7780#entry115083527 - configure channel
 +
 +
 +  * AX worse than AC with theory - https://forum.openwrt.org/t/802-11ax-worse-than-802-11ac-with-mt76-driver/126466/2?page=5
 +
 +  * power supply блок питания https://tdtorus.ru/product/blok_pitaniya_bgp_123_1
 + 
  
  
  • hardware/ax3600.1713605582.txt.gz
  • Last modified: 2024/04/20 09:33
  • by admin