If you want to use your wifi right away, this page is not for you. You should look at the easy wifi tutorial which explains how to use the tools given by SliTaz. But if you want to know how to use wifi (under linux), this page will explain how, and help you to configure it from scratch. Before continuing:
We are going to:
PS: On SliTaz, the script /usr/bin/get-wifi-firmware takes care of steps 1 and 2, and the script /etc/init.d/network.sh; steps 3 to 6.
You'll need the wifi kernel modules and some software to manage wifi. If you are using a wpa key, you'll also need wpa_supplicant:
# tazpkg get-install linux-wireless # tazpkg get-install wireless_tools # tazpkg get-install wpa_supplicant
If you need firmware:
# cd /lib/firmware # wget http://www.address/of/my/firmware
Untar to install:
# tar -xvf my_firmware.tar* # rm my_firmware.tar*
# modprobe -v my_module
If you've got errors, verify that your firmware is where it should be and look at dmesg:
$ ls -l /lib/firmware $ dmesg
If you don't have any errors, you can continue.
Before configuring a new interface, you should de-configure the old one. If your ethernet interface is configured, you should:
# ifconfig eth0 down
iwconfig allows you to configure your wifi card, so that it can connect to your access point. You need to know the name of your wifi interface (usually wlan0 or eth1). If you don't know its name, just run iwconfig:
# iwconfig
Now we can configure your wifi interface and start it:
# ifconfig WIFI_INTERFACE up # iwconfig WIFI_INTERFACE txpower on
Let's test that the card works:
# iwlist scan
If you've got a list of access points you can now tell your wifi interface which ESSID to connect to:
# iwconfig WIFI_INTERFACE essid MY_ESSID
Iwconfig can also accept others args, look at its man page to know more.
You can easily configure a wep key with iwconfig:
# iwconfig WIFI_INTERFACE key my_wep_key
But you should always use a wpa key, because wep keys can be easily cracked with aircrack, as noted here, wpa_supplicant allows you to use a wpa key (some cards may use wpa without wpa_supplicant). It needs a config file. Usually, /etc/wpa_supplicant.conf. If you are using wpa_psk (normally, you are), add this to the file:
ap_scan=1 network={ ssid="my_essid" scan_ssid=1 proto=WPA key_mgmt=WPA-PSK psk="my_clear_key" priority=5 }
Or try:
ap_scan=1 network={ ssid="my_essid" scan_ssid=1 key_mgmt=WPA-EAP WPA-PSK IEEE8021X NONE group=CCMP TKIP WEP104 WEP40 pairwise=CCMP TKIP psk="my_clear_key" priority=5 }
It's now possible to launch wpa_supplicant:
# wpa_supplicant -B -w -c/etc/wpa_supplicant.conf -DWPA_DRIVER -iWIFI_INTERFACE
WPA_DRIVER is the name of the driver used by wpa_supplicant. Usually, it's wext, but sometimes, another is needed. Here is a list of possible drivers:
The option -B launches wpa_supplicant as a daemon. If you want to kill it:
# killall wpa_supplicant
If you want to connect in dhcp, just run:
# /sbin/udhcpc -b -i WIFI_INTERFACE -p /var/run/udhcpc.WIFI_INTERFACE.pid
Normally, you should be surfing!
To stop wifi, you should shutdown your wifi card, and stop the wpa_supplicant and udhcpc daemons:
# iwconfig WIFI_INTERFACE txpower off # kill `cat /var/run/udhcpc.WIFI_INTERFACE.pid` # killall wpa_supplicant
You can also unload the kernel module:
# rmmod my_module
Page Review Section | |
---|---|
Quality | Good |
Review | Minor Updates |
Priority | Medium |
Problems | add a forum post link |
OR add a lab issue tracker link | |
How to Improve | Suggest briefly |