You are not logged in.
trying to get wireless up on my dell mini 9
i am able to scan ap's but whenever i try to connect i get the following
sudo iwconfig eth0 essid Myessid key 101993D8SA77ADFetcetc
Error for wireless request "Set Encode" (8B2A) :
SET failed on device eth0 ; invalid argument.any ideas on this?
thanks!
EDIT: some info
my wireless 128 bit 64 hex digits
broadcasting on channel 6 (2.437G freq)
rc.conf
eth0 = "dhcp"
eth1 = "dhcp"
wlan_wlan0="etho essid myessid key MYKEY
INTERFACES=(eth1 wlan_wlan0)[jxxx@myhost ~]$ sudo iwconfig eth0 essid myessid key MYKEY
Password:
Error for wireless request "Set Encode" (8B2A) :
SET failed on device eth0 ; Invalid argument.
[xxx@myhost ~]$ ifconfig
eth0 Link encap:Ethernet HWaddr 00:23:08:1C:35:9B
inet6 addr: fe80::223:8ff:fe1c:359b/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:72484
TX packets:0 errors:67 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
Interrupt:17
eth1 Link encap:Ethernet HWaddr 00:21:70:D2:7B:3C
inet addr:192.168.1.103 Bcast:192.168.1.255 Mask:255.255.255.0
inet6 addr: fe80::221:70ff:fed2:7b3c/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:3427 errors:0 dropped:0 overruns:0 frame:0
TX packets:2074 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:2862996 (2.7 Mb) TX bytes:337371 (329.4 Kb)
Interrupt:40 Base address:0xc000
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:12 errors:0 dropped:0 overruns:0 frame:0
TX packets:12 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:820 (820.0 b) TX bytes:820 (820.0 b)
[xxx@myhost ~]$ iwconfig
lo no wireless extensions.
eth0 IEEE 802.11 Nickname:""
Access Point: Not-Associated
Link Quality:5 Signal level:199 Noise level:199
Rx invalid nwid:0 invalid crypt:0 invalid misc:0
eth1 no wireless extensions.
[xxx@myhost ~]$ Last edited by murfMan (2011-03-27 19:20:47)
Offline
Hi,
I had the same problem with my tx2z and broadcom-wl. After reinstalling the wl and trying to enter the key as a string "key s:XXXXXXXXXX" I had a look at the key setup using iwlist:
[alpha@myhost ~]$ sudo iwlist eth0 key
eth0 4 key sizes : 40, 104, 256, 128bits
4 keys available :
[1]: off
[2]: off
[3]: off
[4]: off
Current Transmit Key: [1]from there I decided to manually state the key rather than allowing implicit decleration. Hence writing:
[alpha@myhost ~]$ sudo iwconfig eth0 essid BTHomeHub-XXXX key [1] XXXXXXXXXXrather than the error producing:
[alpha@myhost ~]$ sudo iwconfig eth0 essid BTHomeHub-XXXX key XXXXXXXXXXThis produced no errors and allowed the connection. Hope this helps, and sorry for lack of technical understanding (it were a bit of trial and error and have only recently started with arch).
Also, if it helps, my rc.conf section is as follows:
INTERFACES=(eth0)and my ifconfig and iwconfig are:
[alpha@myhost ~]$ ifconfig
eth0 Link encap:Ethernet HWaddr 00:21:00:73:C6:A8
inet addr:192.168.1.72 Bcast:192.168.1.255 Mask:255.255.255.0
inet6 addr: fe80::221:ff:fe73:c6a8/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:35665 errors:0 dropped:0 overruns:0 frame:902
TX packets:23215 errors:6 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:42574425 (40.6 Mb) TX bytes:2772313 (2.6 Mb)
Interrupt:17
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:112 errors:0 dropped:0 overruns:0 frame:0
TX packets:112 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:8584 (8.3 Kb) TX bytes:8584 (8.3 Kb)
[alpha@myhost ~]$ iwconfig
lo no wireless extensions.
eth0 IEEE 802.11 Nickname:""
Access Point: Not-Associated
Link Quality:5 Signal level:204 Noise level:165
Rx invalid nwid:0 invalid crypt:0 invalid misc:0
eth1 no wireless extensions.Offline