News:

The Latest electronic and computer Tips that work!

Main Menu

RaspberryPI Multiple Wifi access point Setup

Started by branx86, September 25, 2015, 03:32:12 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

branx86

File called interfaces.
nano or vi    /etc/networks/interfaces
                       #; This files will connect the wireless on boot.
#; =comments

auto lo

iface lo inet loopback
iface eth0 inet dhcp

allow-hotplug wlan0
auto wlan0

iface wlan0 inet dhcp
wpa-ssid "HS_Wlan1"
wpa-psk "ILoveShuttersToo!"


:) :) :) :)/etc/wpa_supplicant/wpa_supplicant.conf
network={
        ssid="YourSSID"
        psk="password"
        key_mgmt=WPA-PSK
}
network={
        ssid="YourSSID"
        psk="password"
        key_mgmt=WPA-PSK
}
network={
        ssid="YourSSID"
        psk="password"
        key_mgmt=WPA-PSK
}


!!!!! :) :)For WEP connections use   /etc/wpa_supplicant/wpa_supplicant.conf:

ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1

network={
        ssid="XX88"
        key_mgmt= NONE
        wep_key0=13FF00F436ACF22431A1CAA132
        wep_tx_keyidx=0
}