(一):
『Drivers and Firmware』
- 代碼: 選擇全部
http://ieee80211.sourceforge.net/INSTALL
http://ipw2200.sourceforge.net/INSTALL
(二):
『Wireless-Tools』
- 代碼: 選擇全部
ifconfig(8), iwconfig(8), iwspy(8), iwlist(8), iwevent(8), iwpriv(8), wireless(7).
(三):
If you want to use WPA-PSK+TKIP.. and other mode, you can choose『WPAsupplicant』
『Wpasupplicant』(in the Debian case...)
- 代碼: 選擇全部
less /usr/share/doc/wpasupplicant/README.Debian
less /usr/share/doc/wpasupplicant/examples/wpa_supplicant.conf.gz
『Create Startup Script for Wpasupplicant』(in the Debian case...)
- 代碼: 選擇全部
# /etc/default/wpasupplicant
# Useful flags:
# -D <driver> Wireless Driver
# -D wextless /usr/share/doc/wpasupplicant/README.Debian
# -i <ifname> Interface (required, unless specified in config)
# -c <config file> Configuration file
# -d Debugging (-dd for more)
# -w Wait for interface to come up
ENABLED=1 #<--- important!!!
OPTIONS="-w -i eth1 -D wext -B -c /etc/wpa_supplicant.conf"
『Make sure you have a configuration file』(in the Debian case...)
- 代碼: 選擇全部
# Minimal /etc/wpa_supplicant.conf to associate with open
# access points. Please see
# /usr/share/doc/wpasupplicant/examples/wpa_supplicant.conf.gz for more
# complete configuration parameters.
#
# Also see the other files in /usr/share/doc/wpasupplicant/examples/ for
# specific configuration examples.
ctrl_interface=/var/run/wpa_supplicant
ctrl_interface_group=0
eapol_version=1
ap_scan=1
fast_reauth=1
### Example of basic WPA-PSK secured AP
network={
ssid="Denny's Home"
psk="ABCDEFG"
}
『Make sure you set "ENABLED=1" to "/etc/init.d/wpasupplicant"』(in the Debian case...)
- 代碼: 選擇全部
# insane defaults
OPTIONS="-Bw" # daemonize and wait for interface
CONFIG="/etc/wpa_supplicant.conf"
ENABLED=1 #<--- important!!!
(四):
Have Fun