我手上的這台是BE3600-Slate7還有一台是MT3600BE
配置區別:
BE3600:高通IPQ5312 4核1.1Ghz RAM:1GB、ROM:512M
MT3600BE:聯發科MT7987A 4核2.0Ghz RAM和ROM都是512M
價格參考:
IPQ5312的路由器往往定價170HKD
MT7987A的路由器往往定價450HKD
性能參考:(WireGuard遠程組網)
MT7981A:140Mbps
MT7987A:1000Mbps
IPQ5312:450Mbps
所以MT7986A(Wi-Fi6 4x4mimo)SOC的性能其實是🟰MT7987A(Wi-Fi7 2x2mimo)
由於香港的價格比JD內地價格貴幾乎600所以就買了大陸版的
但是需要用到一些安全功能便需要更改地區
實際命令很簡單只需要先:BE3600-Slate7
1️⃣ssh root@192.168.8.1(SSH進路由器後台)
2️⃣dd if=/dev/mtdblock11 bs=1 count=2 skip=136 2>/dev/null | hexdump -C(查看現在地區編碼)
3️⃣echo -n “US” | dd of=/dev/mtdblock11 bs=1 seek=136 conv=notrunc(修改地區編碼)
4️⃣sync(同步到NAND寫入)
5️⃣dd if=/dev/mtdblock11 bs=1 count=2 skip=136 2>/dev/null | hexdump -C(再次檢查是否生效,若異常請不要重啟會變磚)
6️⃣reboot(重啟)
實際命令很簡單只需要先:BE3600MT-Slate7
1️⃣ssh root@192.168.8.1(SSH進路由器後台)
2️⃣dd if=/dev/mtdblock3 bs=1 count=2 skip=16520 2>/dev/null | hexdump -C(查看現在地區編碼)
3️⃣echo -n “US” | dd of=/dev/mtdblock3 bs=1 seek=16520 conv=notrunc(修改地區編碼)
4️⃣sync(同步到NAND寫入)
5️⃣ddd if=/dev/mtdblock3 bs=1 count=2 skip=16520 2>/dev/null | hexdump -C(再次檢查是否生效,若異常請不要重啟會變磚)
6️⃣reboot(重啟)
⬇️下面是過程展示:
⚠️⚠️⚠️每一步操作請一定要小心⚠️⚠️⚠️
baiye@baiye-MacBook-Air ~ % ssh root@192.168.8.1⚠️(SSH進路由器後台)
The authenticity of host ‘192.168.8.1 (192.168.8.1)’ can’t be established.
ED25519 key fingerprint is: SHA256:wLxWRFe+gK6HRuh1L2NBTr+gx+b7qiBpBRCX6ax8lLk
This key is not known by any other names.
Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
Warning: Permanently added ‘192.168.8.1’ (ED25519) to the list of known hosts.
** WARNING: connection is not using a post-quantum key exchange algorithm.
** This session may be vulnerable to “store now, decrypt later” attacks.
** The server may need to be upgraded. See https://openssh.com/pq.html
root@192.168.8.1’s password:
BusyBox v1.36.1 (2026-01-31 11:04:51 UTC) built-in shell (ash)
MM NM MMMMMMM M M
$MMMMM MMMMM MMMMMMMMMMM MMM MMM
MMMMMMMM MM MMMMM. MMMMM:MMMMMM: MMMM MMMMM
MMMM= MMMMMM MMM MMMM MMMMM MMMM MMMMMM MMMM MMMMM’
MMMM= MMMMM MMMM MM MMMMM MMMM MMMM MMMMNMMMMM
MMMM= MMMM MMMMM MMMMM MMMM MMMM MMMMMMMM
MMMM= MMMM MMMMMM MMMMM MMMM MMMM MMMMMMMMM
MMMM= MMMM MMMMM, NMMMMMMMM MMMM MMMM MMMMMMMMMMM
MMMM= MMMM MMMMMM MMMMMMMM MMMM MMMM MMMM MMMMMM
MMMM= MMMM MM MMMM MMMM MMMM MMMM MMMM MMMM
MMMM$ ,MMMMM MMMMM MMMM MMM MMMM MMMMM MMMM MMMM
MMMMMMM: MMMMMMM M MMMMMMMMMMMM MMMMMMM MMMMMMM
MMMMMM MMMMN M MMMMMMMMM MMMM MMMM
MMMM M MMMMMMM M M
M
—————————————————————
For those about to rock… OpenWrt 23.05-SNAPSHOT,
—————————————————————
root@GL-BE3600:~# dd if=/dev/mtdblock11 bs=1 count=2 skip=136 2>/dev/null | hexdump -C
00000000 43 4e |CN|
00000002
⚠️(查看現在地區編碼)
root@GL-BE3600:~# echo -n “US” | dd of=/dev/mtdblock11 bs=1 seek=136 conv=notrunc
2+0 records in
2+0 records out
2 bytes (2B) copied, 0.041878 seconds, 47B/s
⚠️(修改地區編碼)
root@GL-BE3600:~# sync
⚠️(同步到NAND寫入)
root@GL-BE3600:~# dd if=/dev/mtdblock11 bs=1 count=2 skip=136 2>/dev/null | hexdump -C
00000000 55 53 |US|
00000002
⚠️(再次檢查是否生效,若異常請不要重啟會變磚)
root@GL-BE3600:~# reboot
⚠️(重啟)
root@GL-BE3600:~# Connection to 192.168.8.1 closed by remote host.
Connection to 192.168.8.1 closed.