Skip to content

Instantly share code, notes, and snippets.

@syneart
Created September 20, 2016 09:02
Show Gist options
  • Save syneart/1d884cfa9849cff7a3c3e994e4522c2b to your computer and use it in GitHub Desktop.
Save syneart/1d884cfa9849cff7a3c3e994e4522c2b to your computer and use it in GitHub Desktop.
This is the the doc for wifi multi-role on LinkIt Smart 7688 temporary solution.

LinkIt Smart 7688 wifi multi-role

This is the the doc for wifi multi-role on LinkIt Smart 7688 temporary solution.

Usage

  1. Factory reset or configure 7688(or 7688 Duo)'s Wi-Fi to AP mode.

  2. SSH login to 7688(or 7688 Duo)'s shell.

  3. To reslove by executing below sed command

sed -i 's/sta_disabled="$(uci get wireless.sta.disabled)"/sta_disabled="$(uci get wireless.sta.disabled)"\n\tsta_disabled=1/' '/lib/netifd/wireless/ralink.sh'
  1. Execute the following commands:

    a. Replace <SSID> with the Wi-Fi router's name which you want to connect to.

    uci set wireless.sta.ssid="<SSID>"
    

    b. Replace <KEY> with the password of the above Wi-Fi router's password.

    uci set wireless.sta.key="<KEY>"
    

    c. Set encryption type to WPA-PSK.

    uci set wireless.sta.encryption="psk"
    

    d. Enable Wi-Fi station mode.

    uci set wireless.sta.disabled="0"
    

    e. Apply the configs.

    uci commit
    

    f. Reload Wi-Fi settings, make the changes take effect.

    wifi
    
  2. Enjoy it

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment