Last active
January 29, 2021 22:52
-
-
Save ivarprudnikov/8f78bd9114628864f60262eaed6740f5 to your computer and use it in GitHub Desktop.
Connect Bose SoundTouch 10 to WiFi
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a copy/excerpt from Sam Hobbs article | |
# https://samhobbs.co.uk/2016/01/connect-bose-soundtouch-10-wifi-using-linux-telnet | |
# Just making sure it does not dissapear into the void before I need it again | |
# check IP | |
$ route # or "netstat -rn" on osx | |
Kernel IP routing table | |
Destination Gateway Genmask Flags Metric Ref Use Iface | |
default 192.0.2.1 0.0.0.0 UG 600 0 0 wlan0 | |
link-local * 255.255.0.0 U 1000 0 0 wlan0 | |
192.0.2.0 * 255.255.255.0 U 600 0 0 wlan0 | |
# connect (on osx "brew install telnet") | |
$ telnet 192.0.2.1 17000 | |
Trying 192.0.2.1... | |
Connected to 192.0.2.1. | |
Escape character is '^]'. | |
# display help | |
->help | |
# network wifi profiles add <ssid> <security_type> [<password>] | |
$ network wifi profiles add foobarHub wpa_or_wpa2 topsecret | |
# OR for SSID without password | |
$ network wifi profiles add foobarHub none | |
# check status | |
$ network wifi status |
sys setupap <enable/disable>
[Set whether setupap mode (auto/off)]
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Help output: