Problem: Connecting to hidden wifi
|
1st Jun, 2015, 05:59 PM
Post: #5
|
|||
|
|||
RE: Connecting to hidden wifi
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. :) :) |
|||
« Next Oldest | Next Newest »
|
Messages In This Thread |
Connecting to hidden wifi - wahren - 17th May, 2015, 10:07 PM
RE: Connecting to hidden wifi - deHakkelaar - 17th May, 2015, 11:56 PM
RE: Connecting to hidden wifi - CurlyMo - 18th May, 2015, 12:04 AM
RE: Connecting to hidden wifi - wahren - 18th May, 2015, 12:40 AM
RE: Connecting to hidden wifi - Exnor - 1st Jun, 2015 05:59 PM
|