3 millet router installation Misstar from start to fail

1. First prepare millet router, my router millet 3 MIR3

2. Download the millet router ROM Developer Edition, www1.miwifi.com, in accordance with their own model selection download

3. Go millet router management interface, select the bin file to download, install

4. Download the SHH bin kit, open SSH

 

5. Download putty, log into the router

 

6. Enter wget http://www.misstar.com/tools/appstore/install.sh -O /tmp/install.sh && chmod + x /tmp/install.sh && /tmp/install.sh

But there is a problem, you need to upgrade wget can, but this is a router, upgrade basically impossible, so first download the install.sh on your computer

#!/bin/sh
#---------------------------------------------------------------- 
# Shell Name:install
# Description:Plug-in install script
# Author:Starry
# E-mail: [email protected]
# Time:2016-11-06 02:30 CST
# Version: 1.6.11.07
# Copyright © 2016 Misstar Tools. All rights reserved.
#----------------------------------------------------------------*/
clear

## Check The Router Hardware Model 
model=$(uname -m)
cd /tmp/
curl -s -k https://mirror1.misstar.com/download/$model/mtinstall -o /tmp/mtinstall
if [ $? != 0 ];then
    curl -s -k https://mirror2.misstar.com/download/$model/mtinstall -o /tmp/mtinstall
    if [ $? != 0 ];then
        echo "下载程序失败,即将退出"
        exit
    fi
fi
chmod +x /tmp/mtinstall
/tmp/mtinstall

输入:cd /tmp 

  touch install.sh

  vi install.sh

将上面的sh内容,复制到install.sh中,修改格式后,Esc,:wq,保存,使用cat install.sh  查看内容是否正确

7.  输入  chmod +x /tmp/install.sh && /tmp/install.sh

 

8. 安装Misster Tools

 

 

 

 

9 . Misster Tools 安装完成

进入路由器管理器界面,刷新下就可以看到MT工具箱,但是点击后,提示拒绝连接,无法使用

10. 提示下,SSH开启后,Reset重置后依然有效;Misster Tools工具箱安装完成后,Reset重置后失效;重刷开发版固件后,SSH依然有效,Misster Tools依然有效

Guess you like

Origin www.cnblogs.com/nightnine/p/12128695.html