Wifi stopped working when 8.10 installed

Asked by Dave Watkins

I have been using a Netgear MA401 PCMCIA card successfully under Hardy Heron. After upgrading to Intrepid Ibex I cannot get a connection. The system can see the access point but never completes the connection. It keeps asking me for the WEP code. I have double and triple checked I have entered it correctly but to no avail. I am using a Netgear MR314 wireless router which does seem to be able to give me much information about what is going on.

iwconfig returns
lo no wireless extensions.

eth0 no wireless extensions.

pan0 no wireless extensions.

wifi0 IEEE 802.11b ESSID:"Underhill" Nickname:""
          Mode:Managed Frequency:2.412 GHz Access Point: 00:30:AB:1E:56:0B
          Bit Rate:2 Mb/s Sensitivity=1/3
          Retry short limit:8 RTS thr:off Fragment thr:off
          Power Management:off

wlan0 IEEE 802.11b ESSID:"Underhill" Nickname:""
          Mode:Managed Frequency:2.412 GHz Access Point: 00:30:AB:1E:56:0B
          Bit Rate:2 Mb/s Sensitivity=1/3
          Retry short limit:8 RTS thr:off Fragment thr:off
          Power Management:off
          Link Quality=29/70 Signal level=-64 dBm Noise level=-94 dBm
          Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
          Tx excessive retries:0 Invalid misc:0 Missed beacon:0

Any help in solving this would be appreciated

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu Edit question
Assignee:
No assignee Edit question
Solved by:
Charles Profitt
Solved:
Last query:
Last reply:
Revision history for this message
Charles Profitt (cprofitt) said :
#1

I would try, temporarily, to see if you can connect by taking your wireless AP and turning WEP off. Also there are options for the type of WEP code being used... make sure you select the correct one.

Revision history for this message
Dave Watkins (dave-watkins) said :
#2

Thanks, but I still have no joy with the wifi. I turned WEP off at the router. Network Manager notices and now creates an entry with security set to none. It still fails to connect, Hovering the mouse over the network manager icon shows "Requesting a network address from the wireless network "Underhill""... Then it displays the "Disconnected" message.

I know the router is ok as I can connect with computers running Linpus and XP.

Revision history for this message
Charles Profitt (cprofitt) said :
#3

So, it is not getting an IP address... I will try to do some research on the subject later today... but that is what is happening if it helps you.

The computer is not getting a DHCP address from the wireless AP.

The only idea I have off the top of my head is to make sure that there are available IPs for the device (some people limit the number of IPs available via DHCP, but this is rare)

Revision history for this message
Dave Watkins (dave-watkins) said :
#4

I did check there were free IPs. The router has a limit of 16 but at thge time only 4 were in use. I have successfully got it to allocate up to 8 since by connecting other kit. I have retried the MA401 card but still cannot get it to work with Ubunt. The same card works ok on an XP machine

Revision history for this message
Charles Profitt (cprofitt) said :
#5

Can you post the results of the following commands:

lspci

Revision history for this message
Dave Watkins (dave-watkins) said :
#6

here is the result:-
dai@dai-laptop:~$ lspci
00:00.0 Host bridge: Intel Corporation 82830 830 Chipset Host Bridge (rev 04)
00:01.0 PCI bridge: Intel Corporation 82830 830 Chipset AGP Bridge (rev 04)
00:1d.0 USB Controller: Intel Corporation 82801CA/CAM USB Controller #1 (rev 02)
00:1d.1 USB Controller: Intel Corporation 82801CA/CAM USB Controller #2 (rev 02)
00:1d.2 USB Controller: Intel Corporation 82801CA/CAM USB Controller #3 (rev 02)
00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev 42)
00:1f.0 ISA bridge: Intel Corporation 82801CAM ISA Bridge (LPC) (rev 02)
00:1f.1 IDE interface: Intel Corporation 82801CAM IDE U100 Controller (rev 02)
00:1f.5 Multimedia audio controller: Intel Corporation 82801CA/CAM AC'97 Audio Controller (rev 02)
00:1f.6 Modem: Intel Corporation 82801CA/CAM AC'97 Modem Controller (rev 02)
01:00.0 VGA compatible controller: ATI Technologies Inc Radeon Mobility M6 LY
02:00.0 Ethernet controller: 3Com Corporation 3c905C-TX/TX-M [Tornado] (rev 78)
02:01.0 CardBus bridge: Texas Instruments PCI1420 PC card Cardbus Controller
02:01.1 CardBus bridge: Texas Instruments PCI1420 PC card Cardbus Controller
02:08.0 Ethernet controller: 3Com Corporation 3c905C-TX/TX-M [Tornado] (rev 6c)
dai@dai-laptop:~$

I notice that the MA401 is not apparent in the list above. is there another command for listing PCMCIA devices? I see there is and the output is:-
dai@dai-laptop:~$ lspcmcia
Socket 0 Bridge: [yenta_cardbus] (bus ID: 0000:02:01.0)
Socket 0 Device 0: [hostap_cs] (bus ID: 0.0)
Socket 1 Bridge: [yenta_cardbus] (bus ID: 0000:02:01.1)
dai@dai-laptop:~$

Revision history for this message
Best Charles Profitt (cprofitt) said :
#7

OK... I think I have found an answer... now that we know your cardbus is workign properly.

Please do the following:

gksu gedit /etc/modprobe.d/blacklist

append the following to the blacklist file:

# possible conflict with orinoco drivers
blacklist hostap
blacklist hostap_cs
blacklist hostap_pci

gksu gedit /etc/modules

orinoco_pci

That should solve the problem for you.

Revision history for this message
Charles Profitt (cprofitt) said :
#8

If that does not work... then try changing the blacklist as follows:

gksu gedit /etc/modprobe.d/blacklist

* remove:
blacklist hostap
blacklist hostap_cs
blacklist hostap_pci

* add:
# possible coflict with hostap drivers
blacklist hermes
blacklist orinoco
blacklist orinoco_pci
blacklist orinoco_cs
blacklist orinoco_plx

gksu gedit /etc/modules

remove:
orinoco_pci

Revision history for this message
Dave Watkins (dave-watkins) said :
#9

Thank you. The first of your two suggestions works, that is blacklisting the hostap drivers and using orinoco. It is working well now and I am using the wireless with the MA401 to compose this response.

Thank you again. Your help is much appreciated.

Revision history for this message
Dave Watkins (dave-watkins) said :
#10

Thanks PrivateVoid, that solved my question.

Revision history for this message
Charles Profitt (cprofitt) said :
#11

No problem Dave. Glad I could assist.