Author Topic: Hostap  (Read 7467 times)

zeroc87

  • Full Member
  • ***
  • Posts: 115
    • View Profile
    • http://
Hostap
« on: September 29, 2007, 06:28:51 am »
i need the hostap driver utils conf and prism firmware and support because I can't use my wifi card.can you up me?

ZDevil

  • Hero Member
  • *****
  • Posts: 1998
    • View Profile
    • http://
Hostap
« Reply #1 on: September 29, 2007, 06:40:56 am »
Is hostap blacklisted in /etc/modprobe.d/?
It should be loaded by default.
I need to blacklist it in order to use my Ambicom WL-1100C card.

Life is too precious for hacking *too much*
Visit my Z screencap gallery[/color]
My EeePC 701 Black = Debian (Lenny) on IceRocks + Transcend SDHC Class6 8GB + 2GB RAM
My Zaurus SL-C3200 = Debian EABI (kernel 2.6.24.3-yonggun) on a swapped internal Sandisk Extreme III CF 16gb
My Debian EABI feed: http://matrixmen.free.fr/zaurus/debian/
My OpenBSD/Zaurus feeds:  Link1, Link2
[/i][/font][/color][/size]

zeroc87

  • Full Member
  • ***
  • Posts: 115
    • View Profile
    • http://
Hostap
« Reply #2 on: September 29, 2007, 06:50:06 am »
I tried to install prism3-support but i couldn't because it need hostap-utils

ZDevil

  • Hero Member
  • *****
  • Posts: 1998
    • View Profile
    • http://
Hostap
« Reply #3 on: September 29, 2007, 07:04:09 am »
You mean the hostap-utils from the feeds doesn't work?
« Last Edit: September 29, 2007, 07:04:35 am by ZDevil »

Life is too precious for hacking *too much*
Visit my Z screencap gallery[/color]
My EeePC 701 Black = Debian (Lenny) on IceRocks + Transcend SDHC Class6 8GB + 2GB RAM
My Zaurus SL-C3200 = Debian EABI (kernel 2.6.24.3-yonggun) on a swapped internal Sandisk Extreme III CF 16gb
My Debian EABI feed: http://matrixmen.free.fr/zaurus/debian/
My OpenBSD/Zaurus feeds:  Link1, Link2
[/i][/font][/color][/size]

zeroc87

  • Full Member
  • ***
  • Posts: 115
    • View Profile
    • http://
Hostap
« Reply #4 on: September 29, 2007, 01:41:12 pm »
from feed I wasn't able to install the correct firmware so I make myself a script to flash the correct firmware each time I use the wifi card.if you want I can send you the script

zeroc87

  • Full Member
  • ***
  • Posts: 115
    • View Profile
    • http://
Hostap
« Reply #5 on: September 30, 2007, 03:59:45 pm »
I tried to patch the hostap driver to support injection but I wasn't able because make tell that kernel doesn't support pcmcia and pci.how can I patch?

I followed this
http://www.aircrack-ng.org/doku.php?id=hostap
« Last Edit: September 30, 2007, 04:00:27 pm by zeroc87 »

ZDevil

  • Hero Member
  • *****
  • Posts: 1998
    • View Profile
    • http://
Hostap
« Reply #6 on: September 30, 2007, 04:37:25 pm »
How about this simple alternative solution works without building anything?

Edit /etc/pcmcia/config

Add the relevant information like what I've done for my Ambicom WL1100C for instance:

Card "Ambicom WL1100C 11Mbs Card 802.11b"
manfid 0xd601, 0x0002
bind "orinoco_cs"

Save & reboot.

Life is too precious for hacking *too much*
Visit my Z screencap gallery[/color]
My EeePC 701 Black = Debian (Lenny) on IceRocks + Transcend SDHC Class6 8GB + 2GB RAM
My Zaurus SL-C3200 = Debian EABI (kernel 2.6.24.3-yonggun) on a swapped internal Sandisk Extreme III CF 16gb
My Debian EABI feed: http://matrixmen.free.fr/zaurus/debian/
My OpenBSD/Zaurus feeds:  Link1, Link2
[/i][/font][/color][/size]

zeroc87

  • Full Member
  • ***
  • Posts: 115
    • View Profile
    • http://
Hostap
« Reply #7 on: September 30, 2007, 04:45:33 pm »
how I can find the information to put in /etc/pcmcia/config?
my card is planex with hostap

zeroc87

  • Full Member
  • ***
  • Posts: 115
    • View Profile
    • http://
Hostap
« Reply #8 on: September 30, 2007, 05:01:40 pm »
card "PLANEX GW-CF11X Wireless CF Card"
version "PLANEX COMMUNICATIONS INC.", "PLANEX GW-CF11X Wireless CF Card", ""
manfid 0xd601, 0x0010
bind "hostap_cs"

I put this in /etc/pcmcia/hostap_cs.conf
« Last Edit: September 30, 2007, 05:04:58 pm by zeroc87 »

zeroc87

  • Full Member
  • ***
  • Posts: 115
    • View Profile
    • http://
Hostap
« Reply #9 on: September 30, 2007, 05:30:36 pm »
the card doesn't go up itself i ave to use a script.even if I installed prism firmware the system tell me doesn't found

Code: [Select]
#!/bin/sh

path="/home/root/wifi"

cardctl scheme default
prism2_srec -gs wlan0 $path/pm010102.hex
prism2_srec -gp wlan0 $path/pm010102.hex
iwpriv wlan0 reset 1
prism2_srec -rp wlan0 $path/rf010804.hex
iwconfig wlan0 mode 2
cardctl scheme planex


with this script the card function but I can't use the injection
« Last Edit: September 30, 2007, 05:59:17 pm by zeroc87 »

zeroc87

  • Full Member
  • ***
  • Posts: 115
    • View Profile
    • http://
Hostap
« Reply #10 on: October 01, 2007, 06:41:57 am »
I tried to install the hostap module patched by aircrack for zaurus but I can't becasue is non the same arm.
If I comoile the hostap modules make fails telling that the kernel is not compiled with support of wireless or pcmcia

Meanie

  • Hero Member
  • *****
  • Posts: 2803
    • View Profile
    • http://www.users.on.net/~hluc/myZaurus/
Hostap
« Reply #11 on: October 01, 2007, 07:39:54 am »
Quote from: zeroc87
I tried to install the hostap module patched by aircrack for zaurus but I can't becasue is non the same arm.
If I comoile the hostap modules make fails telling that the kernel is not compiled with support of wireless or pcmcia


which kernel are you actually talking about? debian (titchy) comes with a 2.6 kernel whereas you seem to be talking about a 2.4 kernel...
SL-C3000 - pdaXii13 build5.4.9 (based on pdaXrom beta3) / SL-C3100 - Sharp ROM 1.02 JP (heavily customised)
Netgear MA701 CF, SanDisk ConnectPlus CF, Socket Bluetooth CF, 4GB Kingston CF,  4GB pqi SD, 4GB ChoiceOnly SD, 2GB SanDisk SD USB Plus, 1GB SanDisk USB Plus, 1GB Transcend SD, 2GB SanDisk MicroSD with SD adaptor, Piel Frama Leather Case, GoldX 5-in-1 USB cable, USB hub, USB mouse, USB keyboard, USB ethernet, USB HDD, many other USB accessories...
(Zaurus SL-C3000 owner since March 14. 2005, Zaurus SL-C3100 owner since September 21. 2005)
http://members.iinet.net.au/~wyso/myZaurus - zBook3K

zeroc87

  • Full Member
  • ***
  • Posts: 115
    • View Profile
    • http://
Hostap
« Reply #12 on: October 01, 2007, 07:54:56 am »
I use 2.6.20-cpufreq and I can't compile the hostap-driver

zeroc87

  • Full Member
  • ***
  • Posts: 115
    • View Profile
    • http://
Hostap
« Reply #13 on: October 01, 2007, 09:29:55 am »
Quote from: ZDevil
How about this simple alternative solution works without building anything?

Edit /etc/pcmcia/config

Add the relevant information like what I've done for my Ambicom WL1100C for instance:

Card "Ambicom WL1100C 11Mbs Card 802.11b"
manfid 0xd601, 0x0002
bind "orinoco_cs"

Save & reboot.



with aircrack-ng you can inject with this card?

zeroc87

  • Full Member
  • ***
  • Posts: 115
    • View Profile
    • http://
Hostap
« Reply #14 on: October 01, 2007, 02:50:05 pm »
I would like to use the armstrong kernel.How Can I use it?