#WiFi USB dongle

<span class="abstract">
This article explains how to use a D-Link USB Wi-Fi adapters on 
your Acme Board.
</span>

The USB Wi-Fi adapter tested is: 

* DWA-131 D-Link WirelessN Nano USB adapter
  * HW Ver B1, F/W Ver 2.01
  * Chip RTL8192CU

<img src="./wifi_adapters.jpg"/>

##Check the Kernel configuration

Access to the Kernel configuration panel using __make arch=ARM menuconfig__ command and 
enable the following items:

<pre class="minicom">
Device Drivers  --->
  [*] USB support  ---> 
    <*> USB Wireless Device Management support
</pre>

<pre class="minicom">
Device Drivers  --->
   [*] Network device support  --->    
     [*]   Wireless LAN  --->
       <*>   Realtek rtlwifi family of devices  ---> 
          <*>   Realtek RTL8192CU/RTL8188CU USB Wireless Network Adapter
          [*]   Debugging output for rtlwifi driver family (NEW)
</pre>


Compile the Linux Kernel and reboot the board. To know how to compile 
the Linux Kernel follow the articles available on the [tutorials page index](/tutorials))

##Install the Realtek firmware

<pre class="minicom">
~# <b>apt-get update</b>
~# <b>apt-get install firmware-realtek</b>
</pre>

Insert the Wi-Fi USB adapter on your Acme Board. These messages should 
appear on the debug port or by typing **dmesg** command:

<pre class="minicom">
~# <b>dmesg</b>
usb 2-3: new full-speed USB device number 3 using at91_ohci
usb 2-3: not running at top speed; connect to a high speed hub
usb 2-3: New USB device found, idVendor=<b>2001</b>, idProduct=<b>330d</b>
usb 2-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
usb 2-3: Product: 802.11n WLAN Adapter
usb 2-3: Manufacturer: Realtek
usb 2-3: SerialNumber: 00e04c000001
</pre>

Please note the idVendor=<b>2001</b> and idProduct=<b>330d</b> of the USB dongle.

Use this number to tell to Linux which kernel driver to use with it:

<pre class="minicom">
~# <b>echo 2001 330d > /sys/bus/usb/drivers/rtl8192cu/new_id</b>
rtl8192cu: Chip version 0x11
rtl8192cu: MAC address: c0:a0:bb:e1:9d:98
rtl8192cu: Board Type 0
rtl_usb: rx_max_size 15360, rx_urb_num 8, in_ep 1
rtl8192cu: Loading firmware rtlwifi/rtl8192cufw_TMSC.bin
root@ariag25:~# usb 2-3: Direct firmware load failed with error -2
usb 2-3: Falling back to user helper
rtlwifi: Loading alternative firmware rtlwifi/rtl8192cufw.bin
rtlwifi: wireless switch is on
</pre>


When you get the right messages try to type this command:

<pre class="minicom">
debarm:~# <b>cat /proc/net/wireless</b>
Inter-| sta-|   Quality        |   Discarded packets               | Missed | WE
 face | tus | link level noise |  nwid  crypt   frag  retry   misc | beacon | 22
 wlan0: 0000    0.    0.    0.       0      0      0      0      0        0
</pre>


## Install the Wireless-tools

To configure and use the Wi-Fi adapter you need to install the <a href="http://en.wikipedia.org/wiki/Wireless_tools_for_Linux">Wireless tools for Linux</a>, a package of Linux commands intended to support 
and facilitate the configuration of wireless devices.

To install this package type:

<pre class="minicom">
debarm:~# <b>apt-get update</b>
debarm:~# <b>apt-get install wireless-tools</b>
</pre>

When finished type:

<pre class="minicom">
debarm:~# <b>iwconfig</b>
lo        no wireless extensions.
 
eth0      no wireless extensions.
 
wlan0     unassociated  Nickname:"rtl_wifi"
          Mode:Auto  Access Point: Not-Associated   Sensitivity:0/0  
          Retry:off   RTS thr:off   Fragment thr:off
          Encryption key:off
          Power Management:off
          Link Quality:0  Signal level:0  Noise level:0
          Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
          Tx excessive retries:0  Invalid misc:0   Missed beacon:0
</pre>

which provides info about the wireless extensions of each network adapter (in this case wlan0).

## Network configuration

As a first configuration example, we'll show you how to get access to
an open Wi-Fi LAN. Edit the file <b>/etc/network/interfaces</b> and 
add these lines:

<pre class="minicom">
auto wlan0
iface wlan0 inet dhcp
  wireless-essid [your_essid] 
  wireless-mode managed 
</pre>

Restart the network services typing:

<pre class="minicom">
debarm:~# <b>/etc/init.d/networking restart</b>
...
Listening on LPF/wlan0/5c:d9:98:a7:3a:fe                                        
Sending on   LPF/wlan0/5c:d9:98:a7:3a:fe                                        
Sending on   Socket/fallback                                                    
DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 5                     
DHCPOFFER from 192.168.1.1                                                      
DHCPREQUEST on wlan0 to 255.255.255.255 port 67                                 
DHCPACK from 192.168.1.1                                                        
bound to 192.168.1.2 -- renewal in 8171 seconds.                                
done.    
</pre>

<pre class="minicom">
debarm:~# <b>ifconfig</b>
...
wlan0     Link encap:Ethernet  HWaddr 5c:d9:98:a7:3a:fe                         
          inet addr:192.168.1.2  Bcast:192.168.1.255  Mask:255.255.255.0        
          inet6 addr: fe80::5ed9:98ff:fea7:3afe/64 Scope:Link                   
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1                    
          RX packets:4057 errors:0 dropped:0 overruns:0 frame:0                 
          TX packets:327 errors:0 dropped:0 overruns:0 carrier:0                
          collisions:0 txqueuelen:1000                                          
          RX bytes:287147 (280.4 KiB)  TX bytes:21864 (21.3 KiB)         
</pre>

## Connect to a WEP-protected LAN

Edit the file <b>/etc/network/interfaces</b> and set <b>wireless-key</b>:

<pre class="minicom">
auto wlan0
iface wlan0 inet dhcp
  wireless-essid [your_essid]
  wireless-key [your_wep_key]
</pre>

Restart the network services as in the previous section.

## Install the wpa_supplicant for encrypt access

<a href="http://en.wikipedia.org/wiki/Wpa_supplicant">Wpa supplicant</a> is a software implementation of an IEEE 802.11i supplicant 
for Linux that manages the authentication on the Wi-Fi link.

To install these packages type:

<pre class="minicom">
debarm:~# <b>apt-get update</b>
debarm:~# <b>apt-get install wpasupplicant</b>
</pre>

Now add in the file <b>/etc/network/interfaces</b> the configuration for the <b>wlan0</b> 
network adapter to add Wi-Fi Protected Access (WPA) or Wi-Fi Protected Access II (WPA2).

<pre class="minicom">
auto wlan0
iface wlan0 inet dhcp
wpa-driver wext
wpa-ssid [your_essid]
wpa-ap-scan 2
wpa-proto RSN
wpa-pairwise CCMP
wpa-group CCMP
wpa-key-mgmt WPA-PSK
wpa-psk [your_hex_key]
</pre>

Change the fields <b>[your_essid]</b> with the SSID of your access point and 
<b>[your_hex_key]</b> with the WPA-PSK key.

To generate a WPA-PSK key from WPA ascii key use this command:

<pre class="minicom">
wpa_passphrase [your_essid] [your_ascii_key]
</pre>

For example on my access point called "acme" that uses the ascii key 
"netusg20" the command is this:

<pre class="minicom">
debarm:/etc/init.d# <b>wpa_passphrase acme netusg20</b>
network={
        ssid="acme"
        #psk="netusg20"
        psk=38c309a773a6c936c31aeb8bcb5bc44d60539715524e77464759f29095bfc1f3
}
</pre>

Copying the psk code the <b>/etc/network/interfaces</b> file becomes:

<pre class="minicom">
auto wlan0
iface wlan0 inet dhcp
wpa-driver wext
wpa-ssid acme
wpa-ap-scan 2
wpa-proto RSN
wpa-pairwise CCMP
wpa-group CCMP
wpa-key-mgmt WPA-PSK
wpa-psk 38c309a773a6c936c31aeb8bcb5bc44d60539715524e77464759f29095bfc1f3
</pre>

Now type:

<pre class="minicom">
debarm:~# <b>/etc/init.d/networking restart</b>
</pre>

After a while if the dhcp are working well you will obtain your interface up. 

You can also detach the eth0 lan cable to try to access your board directly from the Wi-Fi link.

<pre class="minicom">
debarm:~# <b>iwconfig wlan0</b>
wlan0     IEEE 802.11bg  ESSID:"acme"  Nickname:"rtl_wifi"
          Mode:Managed  Frequency:2.447 GHz  Access Point: 00:21:29:69:C2:D8   
          Bit Rate:54 Mb/s   Sensitivity:0/0  
          Retry:off   RTS thr:off   Fragment thr:off
          Encryption key:****-****-****-****-****-****-****-****   Security mode:open
          Power Management:off
          Link Quality=100/100  Signal level=100/100  Noise level=0/100
          Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
          Tx excessive retries:0  Invalid misc:0   Missed beacon:0
</pre>

## Related links

*  <a href="/WIFI-2">WIFI-2 Mini WiFi USB module</a>
*  <a href="http://wiki.debian.org/WiFi">Debian Wi-Fi wiki page</a>
*  <a href="http://manpages.debian.net/cgi-bin/man.cgi?query=iwconfig">iwconfig man page</a>
*  <a href="http://manpages.debian.net/cgi-bin/man.cgi?query=iwlist">iwlist man page</a></li>
*  <a href="http://ubuntuforums.org/showthread.php?t=318539">HOWTO: Wireless Security - WPA1, WPA2, LEAP, etc.</a>
*  <a href="http://en.wikipedia.org/wiki/Wireless_tools_for_Linux">Wireless tools for Linux</a>
*  <a href="http://en.wikipedia.org/wiki/Wpa_supplicant">Wpa supplican</a>
* [Adding new vendor and product IDs to an existing USB driver on Linux](http://www.ha19.no/usb/)

@shop='DWA-131'
@shop='WIFI-2'
@shop='AN-WIFI-01'
@shop='AN-WIFI-02'
