GL.iNet GL-MT3600BE Beryl 7 Dual-Band Wi-Fi 7 Travel Router, coming with Chinese/CN firmware.

Start up router, and go to http://192.168.8.1/ and login.

- SSH into router
1 | $ ssh -l root 192.168.8.1 |
- Identify the Factory Partition
1 | root@GL-MT3600BE:~# cat /proc/mtd |
The partition named “Factory” is mtd3, so the partition is mtdblock3.
- Find the “CN” (Chinese) Offset
1 | root@GL-MT3600BE:~# hexdump -v -e '"%_ad: " 16/1 "%02X " "\n"' /dev/mtdblock3 | grep "43 4E" |
- Verify the “CN” Offset
1 | root@GL-MT3600BE:~# dd if=/dev/mtdblock3 bs=1 skip=16520 count=2 2>/dev/null |
- Overwrite region from “CN” to “US”
1 | root@GL-MT3600BE:~# echo -n "US" | dd of=/dev/mtdblock3 bs=1 seek=16520 count=2 conv=notrunc |
- Sycn and Reboot
1 | root@GL-MT3600BE:~# sync |
- Verify the “US” Offset
1 | root@GL-MT3600BE:~# hexdump -v -e '"%_ad: " 16/1 "%02X " "\n"' /dev/mtdblock3 | grep ^16512: |



- After the change on GL.iNet Mobile


NOTE: Disable IPv6 when install iStoreOS, e.g. from GL-iNet 系列路由器一键 iStoreOS 风格化脚本 https://github.com/wukongdaily/gl-inet-onescript
1 | $ sh -c "$(curl -fsSL https://cafe.cpolar.cn/wkdaily/gl/raw/branch/main/mt3600.sh)" |

References
- [Guide] Region Unlock GL-MT3600BE (Beryl 7) CN to Global https://www.reddit.com/r/GlInet/comments/1qfeva7/guide_region_unlock_glmt3600be_beryl_7_cn_to/
- yksten - GL.iNet 国行版和国际版,我越对比越不对劲 https://www.youtube.com/watch?v=n5qruWaG-ok
- WukongDaily - MT3600BE脚本使用指南 零基础完整版 https://www.youtube.com/watch?v=MTtEUsi4V8o
- Cloud Run Files Builder 工作流同步各位大佬项目里最新编译的 ipk 文件,生成适用于 OpenWrt 用的 run 自解压包 https://github.com/wkccd/CloudRunFilesBuilder