You are not logged in.
Pages: 1
I just got a Thinkpad R50e and have been trying to get Arch to work with Wifi on it (it uses the ipw2200 driver). I've got the modules all installed and loaded and stuff, but Arch doesn't seem to see the device:
[root@mezzanine zero]# ifconfig -a
eth0 Link encap:Ethernet HWaddr 00:0A:E4:39:3F:0E
inet addr:192.168.0.104 Bcast:192.168.0.255 Mask:255.255.255.0
UP BROADCAST NOTRAILERS RUNNING MULTICAST MTU:1500 Metric:1
RX packets:822 errors:0 dropped:0 overruns:0 frame:0
TX packets:489 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:1006145 (982.5 Kb) TX bytes:27749 (27.0 Kb)
Interrupt:11 Base address:0x7000
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:2 errors:0 dropped:0 overruns:0 frame:0
TX packets:2 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:100 (100.0 b) TX bytes:100 (100.0 b)
It's only detecting my ethernet card. I find this really weird because Debian and Slackware both see the wifi as eth1 when I do ipconfig -a and a previous installation of Arch I had on here (yesterday -- I borked it by accident and reinstalled) was able to see it.
How do I get this install to see it?
Offline
did you read the wiki?
you can check on your wireless interface with
iwconfig
included in the wireless_tools package
Offline
Hmm yeah I had read that. My modules didn't compile right or something, I guess, anyway I reinstalled and now they're working perfectly, I can see eth1 in iwconfig and in ifconfig. I can't seem to connect to my network, though. Could it be because I've got wep enabled?? I tried using the key option, but whenever I try to commit my changes I get something like:
# iwconfig eth1 essid myessid key 0000etc commit
Error for request "Commit changes" (8B00):
SET failed on device eth1 ; Operation not supported.
Am I understanding the documentation on how to do this wrong??
Sorry, I'm not really new to Linux, but I've *very* new to wireless networking...
[edit]
Err... fixed that... Once I added the ap option I can commit it with no problems. However, I still can't connect to the network for some reason. I can't bring the device up...
[edit 2]
Odd... it's working now. Maybe my router was down last night or something, or I typed my wep key in wrong...
Offline
#pacman -S ipw2200
To install ipw2200 and other packages.
#nano /etc/rc.conf
To edit your start-up options.
It should look something like this if eth1 if your ipw2200 card ..
lo="lo 127.0.0.1"
eth1="dhcp"
INTERFACES=(lo eth1)
#nano /etc/conf.d/wireless
To edit your wireless settings ..
It should look something like this ...
wlan_eth1="eth1 mode managed essid dexter key D0DB931213"
WLAN_INTERFACES=(eth1)
Then reboot.
A few checks & tests if you have any problems ...
#dmesg
To ensure that the ipw2200 is installed correctly
It should look something like this ...
ieee80211_crypt: registered algorithm 'NULL'
ieee80211: 802.11 data/management/control stack, 1.1.4
ieee80211: Copyright (C) 2004-2005 Intel Corporation <jketreno@linux.intel.com>
ipw2200: Intel(R) PRO/Wireless 2200/2915 Network Driver, 1.0.7
ipw2200: Copyright(c) 2003-2005 Intel Corporation
ACPI: PCI Interrupt 0000:04:02.0[A] -> GSI 21 (level, low) -> IRQ 22
ipw2200: Detected Intel PRO/Wireless 2200BG Network Connection
#iwconfig
Should look something like this ...
lo no wireless extensions.
sit0 no wireless extensions.
eth0 no wireless extensions.
eth1 IEEE 802.11g ESSID:"dexter"
Mode:Managed Frequency:2.462 GHz Access Point: 00:04:ED:1E:40:5E
Bit Rate=54 Mb/s Tx-Power=20 dBm
Retry limit:7 RTS thr:off Fragment thr:off
Power Management:off
Link Quality=63/100 Signal level=-36 dBm Noise level=-86 dBm
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:0 Missed beacon:4
#ifconfig
Should look something like this ...
eth1 Link encap:Ethernet HWaddr 00:12:F0:83:12:52
inet addr:192.168.1.1 Bcast:192.168.1.255 Mask:255.255.255.0
inet6 addr: fe80::212:f0ff:fe83:1252/64 Scope:Link
UP BROADCAST NOTRAILERS RUNNING MULTICAST MTU:1500 Metric:1
RX packets:16356 errors:0 dropped:0 overruns:0 frame:0
TX packets:9451 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:20318620 (19.3 Mb) TX bytes:1063981 (1.0 Mb)
Interrupt:22 Base address:0xc000 Memory:a8401000-a8401fff
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:2 errors:0 dropped:0 overruns:0 frame:0
TX packets:2 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:100 (100.0 b) TX bytes:100 (100.0 b)
And hopefully you are up and running!
Offline
Pages: 1