Quote:
Originally Posted by eap I recently installed slackware and I'm having wireless problems. I'm running slackware 12.2 in the fluxbox environment. I'm trying to connect to a wireless network that has WEP encryption. I used ndiswrapper to install drivers for my TEW-624 wireless adapter. I'm confident my drivers are installed correctly because when I run iwlist scan, it brings up my wireless network.
So i try doing this:
ifconfig wlan0 up
iwconfig wlan0 essid "default"
iwconfig wlan0 key "XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XX"
dhcpcd wlan0
DHCP times out every time. I checked and modified each setting listed under iwconfig over and over and everything seems fine except the essid. It stays listed as off/any. I'm not sure if this is the culprit or not. I have not gotten it to display default as the essid.
What are your thoughts? | I have slackware 12.2 and and a wireless card with the same interface name (wlan0)
this is what I did:
I edited /etc/rc.d/rc.inet1.conf
Right after
IPADDR[0]...
....
DHCP_HOSTNAME[0]....
I put this:
IFNAME[1]="wlan0"
#IPADDR[1]=""
#NETMASK[1]=""
USE_DHCP[1]="yes"
#DHCP_HOSTNAME[1]=""
#WLAN_MODE[1]=Managed
################
I don't have a fixed IP address, that's why I had the
entry
USE_DHCP[1]="yes"
I don't go to encrypted wifi hotspots so I don't have en entry
for WEP, you'll have to read the doc to add the appropriate entry
in /etc/rc.d/rc.inet1.conf
Once this file has been correctly edited, every time you boot
you should be connected and assigned an IP address
if this command
iwgetid wlan0
doesn't display your essid
or/and if
ifconfig wlan0
doesn't display an IP address (or wlan0 is not up)
you can try to launch it manually by (all of this above and below is as root)
/etc/rc.d/rc.inet1 stop
iwconfig wlan0 essid "replace_here_by_your_essid"
/etc/rc.d/rc.inet1
ifconfig wlan0
you should see an IP address |