hi, i want to use the usb wireless adapter, what drivers/kernel params do i have to use?
the adapter is MA111
does someone already have experience with it?

Code: Select all
#!/bin/bash
/sbin/wlanctl-ng wlan0 lnxreq_ifstate ifstate=enable
/sbin/wlanctl-ng wlan0 lnxreq_hostwep decrypt=true encrypt=false
/sbin/wlanctl-ng wlan0 dot11req_mibset mibattribute=dot11ExcludeUnencrypted=false
/sbin/wlanctl-ng wlan0 dot11req_mibset mibattribute=dot11PrivacyInvoked=false
/sbin/wlanctl-ng wlan0 lnxreq_autojoin ssid=$1 authtype=opensystem
/etc/init.d/net.wlan0 restart
Code: Select all
#!/bin/bash
/sbin/wlanctl-ng wlan0 lnxreq_ifstate ifstate=enable
/sbin/wlanctl-ng wlan0 lnxreq_hostwep decrypt=true encrypt=true
/sbin/wlanctl-ng wlan0 dot11req_mibset mibattribute=dot11WEPDefaultKeyID=0
/sbin/wlanctl-ng wlan0 dot11req_mibset mibattribute=dot11ExcludeUnencrypted=true
/sbin/wlanctl-ng wlan0 dot11req_mibset mibattribute=dot11PrivacyInvoked=true
/sbin/wlanctl-ng wlan0 dot11req_mibset mibattribute=dot11WEPDefaultKey0=$2
/sbin/wlanctl-ng wlan0 lnxreq_autojoin ssid=$1 authtype=opensystem
/etc/init.d/net.wlan0 restart
Code: Select all
Step 6: modprobe prism2_usb, then script away!