RateID
TX Rate
0 1M
1 2M
2 5.5M
3 11M
4 6M
5 9M
6 12M
7 18M
8 24M
9 36M
A 48M
B 54M
C Turn
Off
3.7 Working with Linux WPA supplicant.
Note:
I do the following procedure in Fedora Core2, for other distribution package, you
may need install additional libraries required to build the wpa supplicant..
3.7.1 Setup the Linux WPA supplicant
- Copy lnx_wpa_supplicant.tar.gz file into a subdirectory on Linux system.
(e.g:/root)
- Unzip it by using command:
tar zxvf lnx_wpa_supplicant.tar.gz
Then, a subdirectory of wpa_supplicant/ will be created under the current
directory.
-
Enter subdirectory wpa_supplicant/
-
Delete the original
.config
file by:
]$ rm –f .config
- Edit Makefile, make sure the following statements in mkconfig: section:
echo CONFIG_IEEE8021X_EAPOL=y >> .config
echo CONFIG_EAP_MD5=y >> .config
echo CONFIG_MSCHAPV2=y >> .config
echo CONFIG_EAP_PEAP=y >> .config
echo CONFIG_EAP_TLS=y >> .config
echo CONFIG_DRIVER_WEXT=y >> .config
echo CONFIG_WIRELESS_EXTENSION=y >> .config
echo CONFIG_DRIVER_ZYDAS=y >> .config
- Create the new
.config
file by:
]$ make mkconfig
- Now, we can build the Linux wpa supplicant by entering following command:
]$ make