https://youtu.be/luX37Itrp4s?si=e-nhGy60ZZmfTfiv&t=237 I am trying to follow this video to use SSH to change the 2.4GHz settings so I can see channel 14 but I am getting this error when trying to paste the commands they use into the terminal
In the video they say the command is different for other models. You have a MT3000
Please refer to this for a similar issue:
As you see for the MT3000 uses mt798111 for the 2.4 band and mt798112 for the 5G
Hmm how sure are you the path exists?
Depending on the firmware differences wether between op24 or mtk sdk, or the one from the video the path in the uci command might be wrong.
uci show wireless
will give you a idea
1 Like
Try this:
#wifi 2.4ghz
uci set wireless.mt798111.country='JP'
uci set wireless.mt798111.region='5'
# wifi 5ghz
uci set wireless.mt798112.country='JP'
uci set wireless.mt798112.region='5'
uci commit wireless
# restart wifi for both bands
wifi
You might want to adjust the region, i never used that option before, likely it's very country specific
1 Like