2006-01-17, 09:27 PM
Hello,
did you installed ndiswrapper?
it can be annoyed to setting them up however, you'll need to create your own sh script to loads those setttings to get it connect to your accesspoint/router.
1st, install the ndswrapper but also you'll need to remove the prsim module, you MIGHT need to edit the kernel, but might not... (i didn't edit fedora, but i did custom my own kernel on Gentoo, i am with Gentoo now and never have any problem at all.)
2. you need to make sure you got wlan0 avaiable.
3. you need to add those configure to set those settings for your wlan0 to connect to your other device such as accesspoint or a router.
Code:
#!/bin/sh
rmmod prism54;
ifconfig eth0 down;
route del default gw 192.168.0.1;
modprobe ndiswrapper;
iwlist scan;
iwconfig wlan0 mode Managed;
iwconfig wlan0 key restricted XXXXXXXXXXXXXXXX;
iwconfig wlan0 essid linksys;
ifconfig wlan0 192.168.0.9 netmask 255.255.255.0;
route add default gw 192.168.0.1 dev wlan0;
ifconfig wlan0 up;
Add those but you need to put your wep key if you have one.. also you may need to change your IP for your lan, however you'll ned to add the gateway's IP (Router's device IP) to grant the internet access.
I hope this helps you.. If you having problem, there is a document for ndswrapper. and if you want to get the information abotu your accesspoint/router use this command
Code:
iwlist scan
it'll give you thier mac address, IP, channel essid. but not wep key you have to http to your accesspoint/router to ge the wep key.
Good luck! :)