You are not logged in.
Pages: 1
Im having trouble getting my laptop to associate with my access point.
I have installed the driver, it loads on boot up. When i open up wifi-radar, all networks are shown.
I try to connect to my access point but recieve no IP adress, even though wifi-radar reports a successful connection. I am unable to even ping the router. Same issue when using kwifimanager or when manually editing /etc/rc.conf
Appreciate the help.
Offline
i have a thinkpad t60p with an ipw3945, not sure if this will be of any help but here's how i set mine up.
first i have udev always give the card the name wlan0 by putting the following line in etc/udev/rules.d/10-network.rules (with my mac address instead of xx here)
SUBSYSTEM=="net", ATTRS{address}=="xx:xx:xx:xx:xx:xx", NAME="wlan0"
next in /etc/conf.d/wireless i have following lines where i specify my essid
wlan_wlan0="wlan0 essid Home"
WLAN_INTERFACES=(wlan0)
and in /etc/rc.conf i did the following:
-put the module ipw3945 in the modules list
-added wlan0="dhcp" and added it to the interfaces list
-added ipw3954d followed by network in the deamons list
edit:
also posting the output you get from iwconfig after you try and connect may help people determine what's wrong
Last edited by e_tank (2007-03-25 22:09:21)
Offline
ipw3945 does not use wlan interface, instead it would be eth1
related excerpts from /etc/rc.conf (dhcp config)
MODULES=(ipw3945)
lo="lo 127.0.0.1"
eth0="dhcp"
eth1="dhcp"
INTERFACES=(lo !eth0 !eth1)
#assuming router at 192.168.1.1 or dynamic
gateway="default gw 192.168.1.1"
#gateway=
ROUTES=(!gateway)
DAEMONS=(@network dhcdbd @networkmanager @ipw3945d)
reboot, run from command line:
lsmod grep | ipw
ifconfig
iwconfig
Offline
DAEMONS=(@network dhcdbd @networkmanager @ipw3945d)
correct me if i'm wrong, but ipw3945d should be started before network, right?
Last edited by baze (2007-03-27 11:43:07)
Offline
broch wrote:DAEMONS=(@network dhcdbd @networkmanager @ipw3945d)
correct me if i'm wrong, but ipw3945d should be started before network, right?
right
Have you tried to turn it off and on again?
Offline
First is loaded wired NIC (kernel), before network anyway. If you start external module (e.g. ipw3945) before or after network, practically does not matter.
Last edited by broch (2007-03-27 13:57:27)
Offline
Thanks for all your help.
I figured it out, the problem was dhcp, I manually set the ip adress and everything is fine.
one more thing, broch in your configuration you have put an exclamation mark before the interfaces, doesnt that blacklist them.
Last edited by 4zimuth (2007-03-28 00:28:40)
Offline
Yes because he is using networkmanager to manage the wireless, you can check the wiki.
Offline
ohh forgot about network manager
Offline
Pages: 1