You are not logged in.
This is my first time setting up Arch after getting sick of Kubuntu. I'm quite impressed by its speed. I've managed to set up nearly everything correctly, except for my wi-fi card. I have no idea how to get WPA to work with my ipw2200. Unsecured networks work just fine, but when I try to connect to my wpa-psk secured router I get this:
NetworkManager: <info>  Activation (eth1) started...
NetworkManager: <info>  Activation (eth1) Stage 1 of 5 (Device Prepare) scheduled...
NetworkManager: <info>  Activation (eth1) Stage 1 of 5 (Device Prepare) started...
NetworkManager: <info>  Activation (eth1) Stage 2 of 5 (Device Configure) scheduled...
NetworkManager: <info>  Activation (eth1) Stage 1 of 5 (Device Prepare) complete.
NetworkManager: <info>  Activation (eth1) Stage 2 of 5 (Device Configure) starting...
NetworkManager: <info>  Activation (eth1/wireless): access point 'lol internet' is encrypted, but NO valid key exists.  New key needed.
NetworkManager: <info>  Activation (eth1) New wireless user key requested for network 'lol internet'.
NetworkManager: <info>  Activation (eth1) Stage 2 of 5 (Device Configure) complete.
NetworkManager: <WARN>  nm_dbus_get_user_key_for_network_cb(): nm_dbus_get_user_key_for_network_cb(): dbus returned an error.
  (org.freedesktop.DBus.Error.ServiceUnknown) The name org.freedesktop.NetworkManagerInfo was not provided by any .service files
NetworkManager: <info>  Activation (eth1) failure scheduled...
NetworkManager: <info>  Activation (eth1) failed for access point (lol internet)
NetworkManager: <info>  Activation (eth1) failed.
NetworkManager: <info>  Deactivating device eth1.
[/code/
Does anyone have any ideas?  Here are the relevant sections of my /etc/rc.conf:
[Code]
HOSTNAME="sagittarius"
lo="lo 127.0.0.1"
eth0="dhcp"
eth1="dhcp"
INTERFACES=(lo !eth0 !eth1)
gateway="default gw 192.168.0.1"
ROUTES=(!gateway)
DAEMONS=(syslog-ng !network netfs crond @alsa @cpufreq dbus hal dhcdbd networkmanager kdm)ifconfig:
eth0      Link encap:Ethernet  HWaddr 00:0D:60:FE:7E:B3
          inet addr:192.168.5.53  Bcast:192.168.5.255  Mask:255.255.255.0
          inet6 addr: fe80::20d:60ff:fefe:7eb3/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:15133 errors:0 dropped:0 overruns:0 frame:0
          TX packets:6147 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:100
          RX bytes:5030412 (4.7 Mb)  TX bytes:1266019 (1.2 Mb)
          Base address:0x8000 Memory:c0220000-c0240000
eth1      Link encap:Ethernet  HWaddr 00:0E:35:38:00:FD
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:246183 errors:0 dropped:0 overruns:0 frame:0
          TX packets:18906 errors:0 dropped:0 overruns:0 carrier:1
          collisions:0 txqueuelen:1000
          RX bytes:0 (0.0 b)  TX bytes:704 (704.0 b)
          Interrupt:11 Memory:c0214000-c0214fff
lo        Link encap:Local Loopback
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:16436  Metric:1
          RX packets:40 errors:0 dropped:0 overruns:0 frame:0
          TX packets:40 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:2000 (1.9 Kb)  TX bytes:2000 (1.9 Kb)and iwconfig:
lo        no wireless extensions.
eth0      no wireless extensions.
eth1      unassociated  ESSID:""
          Mode:Managed  Frequency=2.437 GHz  Access Point: Not-Associated
          Bit Rate:0 kb/s   Tx-Power=20 dBm   Sensitivity=8/0
          Retry limit:7   RTS thr:off   Fragment thr:off
          Power Management:off
          Link Quality:0  Signal level:0  Noise level:0
          Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
          Tx excessive retries:0  Invalid misc:0   Missed beacon:0
irda0     no wireless extensions.Thanks!
Offline
same problem here, with bcm43xx
Last edited by ronnie (2007-07-14 09:52:09)
Offline
have you tried explicitly setting things using iwconfig
sudo iwconfig eth1 essid ACTUAL_ESSID
sudo iwconfig eth1 key ACTUAL_KEY
sudo dhcpcd -n eth1
ping ACTUAL_ROUTERLast edited by sykesm (2007-07-14 10:24:22)
Offline
have you tried explicitly setting things using iwconfig
sudo iwconfig eth1 essid ACTUAL_ESSID sudo iwconfig eth1 key ACTUAL_KEY sudo dhcpcd -n eth1 ping ACTUAL_ROUTER
It seems you don't know shit about wireless. iwconfig can only set up static keys (WEP), WPA needs to negotiate keys dynamically.
About the actual problem: It seems to be a dbus issue:
NetworkManager: <WARN>  nm_dbus_get_user_key_for_network_cb(): nm_dbus_get_user_key_for_network_cb(): dbus returned an error. (org.freedesktop.DBus.Error.ServiceUnknown) The name org.freedesktop.NetworkManagerInfo was not provided by any .service filesIs knetworkmanager (or whatever that tool is called) running? Does it ask for the psk? That is what I don't like about networkmanager: you need a GUI tool to make it work.
Offline
have you tried explicitly setting things using iwconfig
Yes, that works (I use WEP, forgot to mention that). But the problem is not making the connection work, but making it work _with NetworkManager_.
Is knetworkmanager (or whatever that tool is called) running? Does it ask for the psk? That is what I don't like about networkmanager: you need a GUI tool to make it work.
Yes, knetworkmanager is running, but it does not ask for the key.
BTW, I completely agree with you about the dependence on GUI. But still, using NetworkManager is very comfortable.
Last edited by ronnie (2007-07-23 23:00:57)
Offline
It works now, after I have installed gnome-network-manager, with all its dependencies.
Offline