Quote |
#!/bin/sh # # Wireless Card config for prism2 chipset for DSL 0.8.x # Pasted together from various googled sources and forums # Reworked for Damn Small Linux # ke4nt[at]damnsmalllinux[dot]org # This bypasses the wlcardconfig and iwconfig for prism2 cards # # Where the * are in lines 17 and 18, add your wireless channel number # ex: " ~ lnxreq_wlansniff enable=false channel 9 " # Add your encrpytion key on line 22 - format as =AA:BB:CC:DD:EE:FF:GG:HH:11:22:33:44:55 # Add your ssid on line 23 - format as ssid=whateveryouressidis # modprobe prism2_cs wlanctl-ng wlan0 lnxreq_ifstate ifstate=enable wlanctl-ng wlan0 lnxreq_hostwep decrypt=true encrypt=true wlanctl-ng wlan0 lnxreq_wlansniff enable=false channel * wlanctl-ng wlan0 p2req_channel_info_results channel * wlanctl-ng wlan0 dot11req_mibset mibattribute=dot11WEPDefaultKeyID=0 wlanctl-ng wlan0 dot11req_mibset mibattribute=dot11ExcludeUnencrypted=true wlanctl-ng wlan0 dot11req_mibset mibattribute=dot11PrivacyInvoked=true wlanctl-ng wlan0 dot11req_mibset mibattribute=dot11WEPDefaultKey0=**:**:**:**:**:**:**:**:**:**:**:**:** wlanctl-ng wlan0 lnxreq_autojoin ssid=******** authtype=opensystem pump -i wlan0 |