<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>WiFi on Arshad Siddiqui</title><link>https://arshadhs.github.io/tags/wifi/</link><description>Recent content in WiFi on Arshad Siddiqui</description><generator>Hugo</generator><language>en-us</language><lastBuildDate>Sat, 14 Dec 2013 22:47:00 +0000</lastBuildDate><atom:link href="https://arshadhs.github.io/tags/wifi/index.xml" rel="self" type="application/rss+xml"/><item><title>WiFi</title><link>https://arshadhs.github.io/docs/technology/wifionraspberrypi/</link><pubDate>Sat, 14 Dec 2013 22:47:00 +0000</pubDate><guid>https://arshadhs.github.io/docs/technology/wifionraspberrypi/</guid><description>&lt;h1 id="wi-fi-set-up-for-raspberry-pi">
 Wi-Fi Set-up for Raspberry Pi
 
 &lt;a class="anchor" href="#wi-fi-set-up-for-raspberry-pi">#&lt;/a>
 
&lt;/h1>
&lt;p>Make sure your interface file and wpa_supplicant.conf look like the ones below -&lt;/p>
&lt;hr>
&lt;pre tabindex="0">&lt;code>pi@raspberrypi ~ $ sudo nano /etc/network/interfaces

auto lo

iface lo inet loopback
iface eth0 inet dhcp

allow-hotplug wlan0
iface wlan0 inet dhcp
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcp

pi@raspberrypi ~ $ sudo nano /etc/wpa_supplicant/wpa_supplicant.conf

ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1

network={
ssid=&amp;#34;YOURSSID&amp;#34;
psk=&amp;#34;YOURPASSWORD&amp;#34;

# Protocol type can be: RSN (for WP2) and WPA (for WPA1)
proto=WPA

# Key management type can be: WPA-PSK or WPA-EAP (Pre-Shared or Enterprise)
key_mgmt=WPA-PSK

# Pairwise can be CCMP or TKIP (for WPA2 or WPA1)
pairwise=TKIP

#Authorization option should be OPEN for both WPA1/WPA2 (in less commonly used are SHARED and LEAP)
auth_alg=OPEN
}


pi@raspberrypi ~ $ sudo reboot
&lt;/code>&lt;/pre>&lt;p>To view all WiFi networks -&lt;/p></description></item></channel></rss>