Penguin
Annotated edit history of HostAP version 4, including all changes. View license author blame.
Rev Author # Line
4 AristotlePagaltzis 1 [HostAP] is a [Kernel] [Module] that works with wireless network cards based on the Intersil Prism chipset.
1 CriggieCriggie 2
3 Version 1 cards are not supported, but the vast bulk of cards are prism 2, 2.5 or 3. This kernel module is for [Linux], and replaces orinoco_cs and hermes. It allows your linux box to act as an access point, and offloads a lot of the framing work to the NIC's firmware, rather than doing it all in software.
4
4 AristotlePagaltzis 5 This is the script CraigFalconer uses to start [HostAP]:
1 CriggieCriggie 6
4 AristotlePagaltzis 7 <verbatim>
8 killall -9 hostapd
9 ifconfig wlan0 down
10 ifconfig wlan0ap down
11 rmmod hostap_cs
12 rmmod hostap
13 rmmod hostap_crypt_wep
14 rmmod hostap_crypt
1 CriggieCriggie 15
4 AristotlePagaltzis 16 modprobe hostap_cs
17 modprobe hostap_crypt_wep
18 ifconfig wlan0 192.168.99.1 netmask 255.255.255.0 broadcast 192.168.99.255
19 iwconfig wlan0 nick nicknameforaccesspoint key s:yourwepkeyhere
20 hostapd /etc/hostapd/hostapd.conf &
21 </verbatim>
1 CriggieCriggie 22
4 AristotlePagaltzis 23 See also:
1 CriggieCriggie 24
4 AristotlePagaltzis 25 * [Howto | http://www.goonda.org/wireless/prism2/]
26 * [Info on Driver | http://hostap.epitest.fi/]
27 * [Debian]'s [hostap-utils package | http://packages.debian.org/unstable/net/hostap-utils.html]
28 * [Short list of Prism cards | http://www.personaltelco.net/index.cgi/Prism2Card]
29 * [Massively long list of wireless cards and their Linux support | http://www.linux-wlan.org/docs/wlan_adapters.html4.html]