![]() |
[PROBLEM] Connecting to hidden wifi - Printable Version +- Forum (http://forum.xbian.org) +-- Forum: Software (/forum-6.html) +--- Forum: Configuration (/forum-17.html) +--- Thread: [PROBLEM] Connecting to hidden wifi (/thread-3001.html) |
Connecting to hidden wifi - wahren - 17th May, 2015 10:07 PM Software XBian version: 1.1.8 XBMC/Kodi version: 14.2 Overclock settings: Custom (default) Hardware Device type and model: Raspberry PI B/512MB Power supply rating: 5v, 2A SD card size and make/type: 32GB Samsung miro sd with sd adapter Network (Ethernet or wireless):WiFi Connected devices (TV, USB, network storage, ...): PC Monitor Problem description: I have bin looking around the forum and the web but not succeeded in finding a way to connect to a hidden wifi. I have tried the usual way of connecting to a wifi in a debian os. I have bin in under network in xbian but not bin able to tipe my ssid name. Is there a way to connect to a hidden wifi? and if so, how? RE: Connecting to hidden wifi - deHakkelaar - 17th May, 2015 11:56 PM If you know the SSID (WiFi network name) and password, you can connect if put below 2 lines in "/etc/network/interfaces": wpa-ssid <WIFI_NETWORK_NAME> wpa-psk <PASSWORD> (This is assuming your using WPA for security) If you dont know the SSID, you will really need to unhide your WiFi and do a discovery. For that you can use the 'xbian-config' command. RE: Connecting to hidden wifi - CurlyMo - 18th May, 2015 12:04 AM You can also manually type the SSID in xbian-config. RE: Connecting to hidden wifi - wahren - 18th May, 2015 12:40 AM I know my ssid and password. my network is running WPA2-personal. I xbian-conf in ssh? i have tried that but it just fails... Inside "Kodi" under xbian conf i cant seam to find a way to manually enter the ssid.. RE: Connecting to hidden wifi - Exnor - 1st Jun, 2015 05:59 PM Use SSH or directly on your Pi (CLI) and do sudo nano /etc/network/interfaces or sudo vi /etc/network/interfaces you will then be able to edit the wifi AP and pwd on the file like in the example below: Terminal auto lo # interfaces(5) file used by ifup(8) and ifdown(8) iface eth0 inet dhcp iface lo inet loopback allow-hotplug wlan0 iface wlan0 inet dhcp wpa-ssid name_of_the_wifi_network wpa-psk your_password_here iface default inet dhcp after you are done, on nano just press CTRL+x and select save (yes). Reboot the Pi. |