LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Fedora (https://www.linuxquestions.org/questions/fedora-35/)
-   -   ipw2100 wireless card question (https://www.linuxquestions.org/questions/fedora-35/ipw2100-wireless-card-question-440708/)

Fred_G 05-01-2006 08:16 PM

ipw2100 wireless card question
 
Ok, I am a totall Lunux newb. About once a month or so I try to get my Intell pro2100 wireless working. I have seen the links for doing it, tried it, very confusing to me. By the way this is on a Dell Inpiron 600m (WinXP/FC5 duall boot). Today, I might have made progress. I downloaded the firmware and driver, now the computer seems to see the card. When I try to activate eth1 (using system, admin, network on the Gnome GUI), I get an error saying it cannot get an IP. Before, it would see the card, but not give me many options.

Now my /var/log/messages (monitored)-System Log Viewer says this:

iee80211: 802.11 data/management/control.stack, git-1.1.7
iee80211: Copyright(c) 2004-2005 Intel Corp
ipw2100 Intel(R) PRO/Wireless 2100 Network Driver, 1.1.3
ACPI: PCI Interupt 0000:02:03[A] -> Link [linkb] ->GSI 5 (level, low) ->IRQ 5
ipw2100: Detected Intel PRO/Wireless 2100 Network Connection

Does this mean the card is installed, and it is a network configuration problem, or am I back to step one? The wireless router is a Belkin Wireless G router. I know the router and wireless card work, if I boot into WinXP, wireless works. I tried without security on the router, still no luck, so I am thinking I am back to step one. Hope not.

Thanks a lot for your time! And if you do reply, please type your responce slowly, I am a noob!

Have a good one!

E

jschiwal 05-01-2006 10:12 PM

It does look like your wireless device is working, and you have an authentication problem. You need to set up the authentication before the DHCP client can get an IP address. It sounds like that may be your problem. Another possibility is a conflict with the NIC interface.


I'll assume that you have the wireless-tools package installed.

One of the programs this package contains is named "iwlist". You can enter in the command:
sudo iwlist eth1 scan
This will scan for Access Points and produce an output that looks like this:
Code:

wlan0    Scan completed :
          Cell 01 - Address: 00:14:A5:30:01:B4
                    ESSID:"Motorola"
                    Protocol:IEEE 802.11g
                    Mode:Managed
                    Frequency:2.422 GHz (Channel 3)
                    Quality:0/100  Signal level:-69 dBm  Noise level:-256 dBm
                    Encryption key:on
                    Bit Rate:1 Mb/s
                    Bit Rate:2 Mb/s
                    Bit Rate:5.5 Mb/s
                    Bit Rate:11 Mb/s
                    Bit Rate:6 Mb/s
                    Bit Rate:9 Mb/s
                    Bit Rate:12 Mb/s
                    Bit Rate:18 Mb/s
                    Bit Rate:24 Mb/s
                    Bit Rate:36 Mb/s
                    Bit Rate:48 Mb/s
                    Bit Rate:54 Mb/s
                    Extra:bcn_int=100
                    Extra:atim=0
          Cell 02 - Address: 00:14:BF:98:27:AD
                    ESSID:"linksys_SES_38253"
                    Protocol:IEEE 802.11g
                    Mode:Managed
                    Frequency:2.437 GHz (Channel 6)
                    Quality:0/100  Signal level:-79 dBm  Noise level:-256 dBm
                    Encryption key:on
                    Bit Rate:1 Mb/s
                    Bit Rate:2 Mb/s
                    Bit Rate:5.5 Mb/s
                    Bit Rate:11 Mb/s
                    Bit Rate:18 Mb/s
                    Bit Rate:24 Mb/s
                    Bit Rate:36 Mb/s
                    Bit Rate:54 Mb/s
                    Bit Rate:6 Mb/s
                    Bit Rate:9 Mb/s
                    Bit Rate:12 Mb/s
                    Bit Rate:48 Mb/s
                    Extra:bcn_int=100
                    Extra:atim=0
                    Extra:wpa_ie=dd180050f20101000050f20201000050f20201000050f2020000

This is the output of the command which I just entered. It would give results even if you are not authenticated.
That is why it is a quick and easy way to check if the wireless device is working.

You can verify if the device is present with the /sbin/ifconfig and /usr/sbin/iwconfig commands. The ifconfig command will show whether an interface has an IP address assigned. It will show the "lo", "eth0" and "eth1" interfaces. The iwconfig command will show information about the wireless interface.

I use SuSE rather than Fedora, but I believe that they both save the network interface configuration files in /etc/sysconfig/network. There should be both an ifcfg-eth0 file and an ifcfg-eth1 file there. This is the information that is saved by your Network Interface Setup Dialog.
Code:

sample ifcfg-wlan0:
BOOTPROTO='dhcp'
BROADCAST=''
IPADDR=''
MTU=''
NAME='Wireless Network Card'
NETMASK=''
NETWORK=''
REMOTE_IPADDR=''
STARTMODE='auto'
USERCONTROL='yes'
WIRELESS_AP='00:14:BF:13:0D:9B'
WIRELESS_AUTH_MODE='psk'
WIRELESS_BITRATE=''
WIRELESS_CA_CERT=''
WIRELESS_CHANNEL=''
WIRELESS_CLIENT_CERT=''
WIRELESS_DEFAULT_KEY='0'
WIRELESS_ESSID='jesnet'
WIRELESS_FREQUENCY=''
WIRELESS_KEY=''
WIRELESS_KEY_0='h:wep secret keys ..........'
WIRELESS_KEY_1='h:wep secret keys ..........'
WIRELESS_KEY_2='h:wep secret keys ..........'
WIRELESS_KEY_3='h:wep secret keys ..........'
WIRELESS_KEY_LENGTH='128'
WIRELESS_MODE='Managed'
WIRELESS_NICK='hpamd64'
WIRELESS_NWID=''
WIRELESS_POWER='no'
WIRELESS_WPA_IDENTITY=''
WIRELESS_WPA_PASSWORD=''
WIRELESS_WPA_PSK='64 hexidecimal preshared key'
_nm_name='static-0'
PREFIXLEN=''

The keys need to be the same that the router uses. I'd recommend connecting directly to the routers web interface on the NIC card, and cutting and pasting from the router wpa_psk setup page to an editor.

The authentication is performed by wpa_supplicant. Make sure that the wpa_supplicant package is installed also.

The second possible problem I mentioned deals with how you have the interface come up. In the network configuration dialogs, look for options that deal with device activation. Select an option that sounds like "on cable connection". This will defer the startup until the ethernet cable is connected. Select "on boot" or something similar for the wireless device "eth1".
Good Luck!

wireless-tools reference: http://www.hpl.hp.com/personal/Jean_...nux/Tools.html

Fred_G 05-03-2006 10:23 PM

Thanks for your reply.
 
You were correct about the conflict. I am still not sure how I got it working, (used the GUI) but when I finally right clicked on the internet connection, and enabled wireless, it worked after a reboot!

I have Wireless now!!!

Have a good one!

E


All times are GMT -5. The time now is 08:31 PM.