Good day,
since the ipw(4) driver can't do WPA, I wanted to give ndis(4) a try.
This *used* to work back on 5.3 (memory is a bit vague) but it ain't
happening on 6.1-RC.
I'm using the same driver as last time, which is the version 1.2.2.8
from Intel. I also downloaded the newest one, version 1.2.4.35, but none
of them attach, when loading the if_ndis module.
/sys/modules/if_ndis# make clean
/sys/modules/if_ndis# ndiscvt -i /compat/ndis/w70n51.inf -s
/compat/ndis/w70n51.sys -o ndis_driver_data.h
/sys/modules/if_ndis# make
/sys/modules/if_ndis# make install load
/sbin/kldload -v /vol/obj/usr/src/sys/modules/if_ndis/if_ndis.ko
Loaded /vol/obj/usr/src/sys/modules/if_ndis/if_ndis.ko, id=32
pci2: <network> at device 3.0 (no driver attached)
none1@pci2:3:0: class=0x028000 card=0x25618086 chip=0x10438086 rev=0x04 hdr=0x00
vendor = 'Intel Corporation'
device = 'Intel(R) PRO/Wireless 2100 LAN Card Driver'
class = network
I know this did work in the past. What are other peoples experiences?
Besides, does ndis(4) even do WPA? If not then I would have to buy new
hardware anyway and the whole exercise would be in vain.
Ulrich Spoerlein
--
PGP Key ID: 20FEE9DD Encrypted mail welcome!
Fingerprint: AEC9 AF5E 01AC 4EE1 8F70 6CBD E76E 2227 20FE E9DD
Which is worse: ignorance or apathy?
Don't know. Don't care.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 187 bytes
Desc: not available
Url :
http://lists.freebsd.org/pipermail/freebsd-stable/attachments/20060502/5d9040c9/attachment.pgp
On Tuesday 02 May 2006 13:18, Ulrich Spoerlein wrote:> Good day, > > since the ipw(4) driver can't do WPA, I wanted to give ndis(4) a try. > This *used* to work back on 5.3 (memory is a bit vague) but it ain't > happening on 6.1-RC. > > I'm using the same driver as last time, which is the version 1.2.2.8 > from Intel. I also downloaded the newest one, version 1.2.4.35, but none > of them attach, when loading the if_ndis module. > > /sys/modules/if_ndis# make clean > /sys/modules/if_ndis# ndiscvt -i /compat/ndis/w70n51.inf -s > /compat/ndis/w70n51.sys -o ndis_driver_data.h /sys/modules/if_ndis# make > /sys/modules/if_ndis# make install load > /sbin/kldload -v /vol/obj/usr/src/sys/modules/if_ndis/if_ndis.ko > Loaded /vol/obj/usr/src/sys/modules/if_ndis/if_ndis.ko, id=32 > pci2: <network> at device 3.0 (no driver attached) > > none1@pci2:3:0: class=0x028000 card=0x25618086 chip=0x10438086 rev=0x04 > hdr=0x00 vendor = 'Intel Corporation' > device = 'Intel(R) PRO/Wireless 2100 LAN Card Driver' > class = network > > I know this did work in the past. What are other peoples experiences? > Besides, does ndis(4) even do WPA? If not then I would have to buy new > hardware anyway and the whole exercise would be in vain.Start by using ndisgen(8) instead of doing things the "old" way. JN
On 5/2/06, Ulrich Spoerlein <uspoerlein@gmail.com> wrote:> Good day, > > since the ipw(4) driver can't do WPA, I wanted to give ndis(4) a try. > This *used* to work back on 5.3 (memory is a bit vague) but it ain't > happening on 6.1-RC. > > I'm using the same driver as last time, which is the version 1.2.2.8 > from Intel. I also downloaded the newest one, version 1.2.4.35, but none > of them attach, when loading the if_ndis module. > > /sys/modules/if_ndis# make clean > /sys/modules/if_ndis# ndiscvt -i /compat/ndis/w70n51.inf -s /compat/ndis/w70n51.sys -o ndis_driver_data.hYou need to use the ndisgen script to create the NDIS kernel module for your card. ndisgen /compat/ndis/w70n51.inf /compat/ndis/w70n51.sys then you use kldload to load the module: kldload w70n51_sys.ko Scot -- DISCLAIMER: No electrons were mamed while sending this message. Only slightly bruised.