Wireless-Card doesn't not work with WPA/WPA2 but with WEP [Solved]

Hello I have a MacBook (late 2007) with a wireless-card from Broadcam, the card works with WEP and the classic configuration over rc.conf very well. But I can't get the card running with WPA and the net network-profiles.
Here is the link to the driver - http://www.broadcom.com/support/802.11/linux_sta.php
eth2 = wireless-card
eth1 = firewireanything
eth0 = wired-card
rc.conf
# /etc/rc.conf - Main Configuration for Arch Linux
# LOCALIZATION
# LOCALE: available languages can be listed with the 'locale -a' command
# HARDWARECLOCK: set to "UTC" or "localtime"
# USEDIRECTISA: use direct I/O requests instead of /dev/rtc for hwclock
# TIMEZONE: timezones are found in /usr/share/zoneinfo
# KEYMAP: keymaps are found in /usr/share/kbd/keymaps
# CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
# CONSOLEMAP: found in /usr/share/kbd/consoletrans
# USECOLOR: use ANSI color sequences in startup messages
LOCALE="en_US.utf8"
HARDWARECLOCK="UTC"
USEDIRECTISA="no"
TIMEZONE="Europe/Berlin"
KEYMAP="us"
CONSOLEFONT=
CONSOLEMAP=
USECOLOR="yes"
# HARDWARE
# MOD_AUTOLOAD: Allow autoloading of modules at boot and when needed
# MOD_BLACKLIST: Prevent udev from loading these modules
# MODULES: Modules to load at boot-up. Prefix with a ! to blacklist.
# NOTE: Use of 'MOD_BLACKLIST' is deprecated. Please use ! in the MODULES array.
MOD_AUTOLOAD="yes"
#MOD_BLACKLIST=() #deprecated
#MODULES=(sky2 snd-mixer-oss snd-pcm-oss snd-hwdep snd-page-alloc snd-pcm snd-timer snd snd-hda-intel soundcore)
# Scan for LVM volume groups at startup, required if you use LVM
USELVM="no"
# NETWORKING
# HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
HOSTNAME="macbook"
# Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available interfaces.
# Interfaces to start at boot-up (in this order)
# Declare each interface then list in INTERFACES
# - prefix an entry in INTERFACES with a ! to disable it
# - no hyphens in your interface names - Bash doesn't like it
# DHCP: Set your interface to "dhcp" (eth0="dhcp")
# Wireless: See network profiles below
eth0="eth0 192.168.1.220 netmask 255.255.255.0 broadcast 192.168.1.255"
INTERFACES=(!eth0 !eth1 eth2)
# Routes to start at boot-up (in this order)
# Declare each route then list in ROUTES
# - prefix an entry in ROUTES with a ! to disable it
gateway="default gw 192.168.1.1"
ROUTES=(!gateway)
# Enable these network profiles at boot-up. These are only useful
# if you happen to need multiple network configurations (ie, laptop users)
# - set to 'menu' to present a menu during boot-up (dialog package required)
# - prefix an entry with a ! to disable it
# Network profiles are found in /etc/network.d
# This now requires the netcfg package
NETWORKS=(wireless)
# DAEMONS
# Daemons to start at boot-up (in this order)
# - prefix a daemon with a ! to disable it
# - prefix a daemon with a @ to start it up in the background
DAEMONS=(syslog-ng network net-profiles netfs alsa crond portmap fam hal)
/etc/network.d/wireless
CONNECTION="wireless"
INTERFACE=eth2
HOSTNAME=macbook
IP="static"
IFOPTS="192.168.1.225 netmask 255.255.255.0 broadcast 192.168.1.255"
GATEWAY=192.168.1.1
DNS1=192.168.1.1
# Wireless Settings (optional)
ESSID=3Com
#KEY=
IWOPTS="mode managed essid $ESSID channel 11"
#WIFI_INTERFACE=wlan0 # use this if you have a special wireless interface
# that is linked to the real $INTERFACE
#WIFI_WAIT=5 # seconds to wait for the wireless card to
# associate before bringing the interface up
USEWPA="yes" # start wpa_supplicant with the profile
WPAOPTS="" # use "" for normal operation or specify additional
# options (eg, "-D ipw")
# see /etc/wpa_supplicant.conf for configuration
Can I set here the WPA/WPA2-Key also? Why here ESSID? Do I need still a configuration in wpa_supplicant.conf?
Thats very confusing and not explained.
WPAOPTS? Do I need to add something like "-D wext"?
/etc/wpa_supplicant.conf
# This is a network block that connects to any unsecured access point.
# We give it a low priority so any defined blocks are preferred.
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=wheel
network={
key_mgmt=NONE
priority=-9999999
network={
ssid="3Com"
proto=WPA
key_mgmt=WPA-PSK
pairwise=CCMP TKIP
group=CCMP TKIP
psk="topsecret"
priority=5
# WPA2
# proto=WPA RSN
I need help. Please
Last edited by hoschi (2009-01-04 20:21:58)

fwojciec wrote:If this info is not in the wiki it might be worth it to add it -- it's all detailed in /etc/network.d/examples/complete.example though.
Thats the reason why I was so confused.
My new and well working configuration:
# /etc/rc.conf - Main Configuration for Arch Linux
# LOCALIZATION
# LOCALE: available languages can be listed with the 'locale -a' command
# HARDWARECLOCK: set to "UTC" or "localtime"
# USEDIRECTISA: use direct I/O requests instead of /dev/rtc for hwclock
# TIMEZONE: timezones are found in /usr/share/zoneinfo
# KEYMAP: keymaps are found in /usr/share/kbd/keymaps
# CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
# CONSOLEMAP: found in /usr/share/kbd/consoletrans
# USECOLOR: use ANSI color sequences in startup messages
LOCALE="en_US.utf8"
HARDWARECLOCK="UTC"
USEDIRECTISA="no"
TIMEZONE="Europe/Berlin"
KEYMAP="us"
CONSOLEFONT=
CONSOLEMAP=
USECOLOR="yes"
# HARDWARE
# MOD_AUTOLOAD: Allow autoloading of modules at boot and when needed
# MOD_BLACKLIST: Prevent udev from loading these modules
# MODULES: Modules to load at boot-up. Prefix with a ! to blacklist.
# NOTE: Use of 'MOD_BLACKLIST' is deprecated. Please use ! in the MODULES array.
MOD_AUTOLOAD="yes"
#MOD_BLACKLIST=() #deprecated
#MODULES=(sky2 snd-mixer-oss snd-pcm-oss snd-hwdep snd-page-alloc snd-pcm snd-timer snd snd-hda-intel soundcore)
# Scan for LVM volume groups at startup, required if you use LVM
USELVM="no"
# NETWORKING
# HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
HOSTNAME="macbook"
# Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available interfaces.
# Interfaces to start at boot-up (in this order)
# Declare each interface then list in INTERFACES
# - prefix an entry in INTERFACES with a ! to disable it
# - no hyphens in your interface names - Bash doesn't like it
# DHCP: Set your interface to "dhcp" (eth0="dhcp")
# Wireless: See network profiles below
eth0="eth0 192.168.1.220 netmask 255.255.255.0 broadcast 192.168.1.255"
INTERFACES=(!eth0 !eth1 !eth2)
# Routes to start at boot-up (in this order)
# Declare each route then list in ROUTES
# - prefix an entry in ROUTES with a ! to disable it
gateway="default gw 192.168.1.1"
ROUTES=(!gateway)
# Enable these network profiles at boot-up. These are only useful
# if you happen to need multiple network configurations (ie, laptop users)
# - set to 'menu' to present a menu during boot-up (dialog package required)
# - prefix an entry with a ! to disable it
# Network profiles are found in /etc/network.d
# This now requires the netcfg package
NETWORKS=(3com)
# DAEMONS
# Daemons to start at boot-up (in this order)
# - prefix a daemon with a ! to disable it
# - prefix a daemon with a @ to start it up in the background
DAEMONS=(syslog-ng network net-profiles netfs alsa crond portmap fam hal)
CONNECTION="wireless"
DESCRIPTION="Very verbose complete wireless example"
INTERFACE=eth2
HOSTNAME=macbook
# Interface Settings (use IP="dhcp" for DHCP)
IP="static"
IFOPTS="192.168.1.225 netmask 255.255.255.0 broadcast 192.168.1.255"
GATEWAY=192.168.1.1
# DNS Settings (optional)
DOMAIN=localdomain
DNS1=192.168.1.1
DNS2=
SEARCH=
# Standard Wireless Settings
ESSID=3Com
SECURITY=wpa-config # One of wep, wpa, wpa-config, none
KEY=""
# Scans to see if network is available before connecting (reccomended)
SCAN="YES"
# Time to wait to connect to a network. Default 15.
TIMEOUT=10
# Pass *custom* options to iwconfig. Usually not needed (optional)
IWOPTS="mode managed essid $ESSID channel 6 key restricted $KEY"
# Any extra arguments for wpa_supplicant
WPA_OPTS=
# For SECURITY='wpa-config' only - filename of a wpa-supplicant config
WPA_CONF=/etc/wpa_supplicant.conf
# This is a network block that connects to any unsecured access point.
# We give it a low priority so any defined blocks are preferred.
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=wheel
network={
key_mgmt=NONE
priority=-9999999
network={
ssid="Linksys"
proto=WPA RSN
key_mgmt=WPA-PSK
pairwise=CCMP TKIP
group=CCMP TKIP
psk="areulookingatmybreasts"
priority=5
network={
ssid="3Com"
proto=WPA
key_mgmt=WPA-PSK
pairwise=CCMP TKIP
group=CCMP TKIP
psk="nomam"
priority=5
# WPA2
# proto=WPA RSN
There are also profiles for the Linksys-Router and for wired cable.
Thanks for the help!
Last edited by hoschi (2009-01-04 20:21:23)

Similar Messages

  • Xbox live not working in WPA/WPA2 personal mode.

    Xbox Live is not working in WPA/WPA2 personal mode. It does, however, work in WEP mode. I have 2 windows laptops on my wireless network. when I am on WEP, the laptop is stuck in a perpetual "Acquiring Network Address" state. When I have WPA/WPA2 enabled, my laptops work fine, but xbox live cuts in and out of detecting my network, and I cant even get close to connecting at all.
    So until I figure this out, I have to choose between WEP (xbox live working, and not PCs) WPA(PCs working, not xbox live) or unsecured (risky). what should I do?

    Thats strange topcat, i have exactly the same problem as you except that when i am in WEP encryption my xbox cant even see the extreme on the network and i cant even get it it to connect at all. In WPA mode the xbox sees the network but will not connect. I have rang xbox and they say that it should work and that the problem lies with Apple, although i dont believe this personally. In the meantime ive had to hardwire the xbox to the router which isnt why i bought the router. Disappointed
    Regards
    Stu

  • When trying to buy a song a message tells me the Credit card feature is not working at this time but this has been going on for 4 days now. How can I fix this?

    When trying to buy a song a message tells me the Credit card feature is not working at this time but this has been going on for 4 days now. How can I fix this?

    turn your ipad off by holding the sleep wake button for 5 seconds and slide to turn off then turn it back on and the apps should be finished and if the apps didnt finish just redownload them

  • My note is not working I did restart but didn't solve it

    My note is not working I did restart but didn't solve it

    Try reset all settings
    Settings>General>Reset>Reset All Settings
    Note: Data will not be affected but settings will be reset.

  • HT4623 my iphone doesn't work here in Albania after i made an update,it says that u have to change ur Sim Card cuz does not work with ur Carrier...what do i do?

    Hpls help me ,my iphone does not work after i updated and restore it..it says that u have to change ur Sim Card..cuz the carrier that u use its not known
    But it has worked perfectly before the update!

    Your iPhone was almost certainly jailbroken to unlock it from the original carrier. Restoring the iPhone has now removed that jailbreak and the iPhone has relocked back to the original carrier. Only that carrier can authorize an official, permanent unlock, so you will need to contact that original carrier and ask if you would qualify for unlocking.
    Regards.

  • Tecra 9000: SD card reader will not work with XP

    I have made some progress with this subject, it seems that Cardbus devices cannot share IRQs, although the main issue is that the memory address FFDFB200-FFDFB3FF is shared by both the SD card controller and the SD Card Memory Device. Unless a way to modify the registry can be found to resolve this memory conflict, the simple answer is that the SD card reader won't work under XP.
    I think this would take some major surgery of the registry or re-writing of the drivers to move the memory address used by the SD card device, I am still working on this for now.
    Can someone from Toshiba Support or Toshiba Marketing please explain to me why my Tecra T9100 has a sticker with "Designed for Windows XP and Windows 2000" on it, when Toshiba don't fully support XP on the 9000 series?
    David
    [Edited by: admin]

    Hi David
    Unfortunately, I dont think that you will find here someone from Toshiba marketing or other departments. This is ONLY a user to user forum.
    What you say is simply NOT true.
    The Tecra 9000 was delivered with 3 different OS.
    It was delivered with Windows XP Pro, W2k and Win98. You can order all this Toshiba images from the Toshiba service partner. Therefore Tecra 9000 does support Windows XP!
    Tecra 9100 was delivered with Windows XP and Windows 2000 and supports also Windows XP!
    Of course there are different models with different hardware configuration but all supports WinXP.
    I dont know why you get this error message or why you cannot use the SD card but I assume you dont use the Toshiba image. Therefore you have installed your OS not correctly. Because youre a newbie you dont know that the whole Toshiba driver installation must be done in the right order and all the Microsoft QFEs must be also installed.
    As you see you have to pay attention to many important things if you want to install the OS manually.
    Have a nice day

  • [solved] wicd do not work with wep or wpa/2...

    Hi!
    I have configured wicd using the wiki, and checked the steps several times... but only works when the wifi router is set to no encryption...
    If I use wep or wpa wpa2 it just keeps handshaking and never connects...
    any idea?
    Last edited by luuuciano (2008-11-05 02:45:53)

    denisfalqueto wrote:
    Hi,
    I have the same wireless card as you and I use wext as the driver in wicd. It works fine.
    wow, thanks a lot!
    it was so easy... ejjejeje
    it just connects in less than 1 second!
    thanks a lot guys, I am really happy now

  • Need Help...my wireless airport express will not work with my update of snow leopard

    after installing snow leopard on my macbook pro my airport express will not work...or will connect only for a minute at a time.

    If you mean by "airport express" the square airport router you plug in and has a usb port then run the Airport Utility located in your Utilities folder to set it up again. If AU doesn't see it you may need to do a re-set of the AE.

  • Apple Wireless Keyboard - some keys not working with iPhone 5

    I just bought an Apple Wireless Keyboard (2011) and paired it with my iphone 5 (iOS 7.0.3).
    All keys work except the following:
    Space bar
    Delete
    Caps Lock
    Down Arrow
    Tab
    I can understand if iOS has no concept of Tab, but Space and Delete are essential.
    Did I get a bad keyboard?

    Hi Scoobydootoo,
    I understand that you are experiencing an issue with your keyboard responsiveness. Here is an article that will help you troubleshoot this issue:
    Troubleshooting wireless mouse and keyboard issues - Apple Support
    https://support.apple.com/en-us/TS3048
    Take care, and thanks for visiting the Apple Support Communities.
    Cheers,
    Braden

  • Hp 6500A plus wireless printer = hp eprint not working with pdf

    I have a brand new HP 6500 A plus wireless printer.
    I tried to print using hp eprint center by sending a pdf as attachement to printers email address.
    But the printer doesn't like the pdf and prints a error page instead with below message.
    =======
    Please wait...
    If this message is not eventually replaced by the proper contents of the document, your PDF
    viewer may not be able to display this type of document.
    You can upgrade to latest version of Adobe Reader for windows, Mac, or lInux by
    visiting blah blah blah..
    =======
    I see that i have recent version of adobe reader - Adobe Reader X - Version 10.1.0
    Please help and let me know if someone already had a solution. 
    HP Customer Support - ?
    Thanks
    Antony.
    This question was solved.
    View Solution.

    Oh..Yes. It worked. !!
    Thanks Jack for your inputs, that helped a lot.
    The issue was not with the printer, but that the PDF document itself was a secured PDF document.
    I tried copying the document from my pc to mac and tried to open the document and what i saw was exactly what got printed earlier in my first post.  Tried attaching to my email and when downloaded, the document had just those text that got printed (also pasted below).
    Finally got it working when directly printed from the pc over wireless(or wired). Looks good now . 
    =======
    Please wait...
    If this message is not eventually replaced by the proper contents of the document, your PDF
    viewer may not be able to display this type of document.
    You can upgrade to latest version of Adobe Reader for windows, Mac, or lInux by
    visiting blah blah blah..
    =======
    Thanks
    Antony.

  • SanDisk USB 3.0 Card Reader does not work with OSX Mavericks.

    Since updating to OSX Mavericks (10.9) My  USB 3.0 SanDisk "ImageMate All-in-One" Card Reader has begun to fail.
    It all seems to work proper at first. The memory card shows up in finder and I'm able to browse the files. But when I try to transfer any files it un-mounts from finder and only transfers the first file.
    This does not happen under previous OSX versions. I have tried on other computers since, so the card reader is fine.
    My USB 2.0 card reader saved my life this time. It works totally fine.
    Is this a known problem? Are you guys working on it?

    Solved in this post here:
    https://discussions.apple.com/message/24016337#24016337

  • Wireless Internet ONLY Does Not Work With MacBook

    I am really frustrated with my internet situation.
    I have been in a new apartment for three weeks. I have a Motorola Surfboard cable modem, through Charter, hooked up to a Cisco Linksys E1000 router. The internet TYPICALLY works very well for both my MacBook and my wife's Dell (Windows...), but about once a day, the Internet on my Macbook stops working for about an hour, and it continues working on her computer. I can reboot the modem, the router, hook my computer directly up to the modem, whatever... it doesn't matter. It is like a curse from ****.
    I have no idea what the problem could possibly be, and it is virtually impossible to do a Google search for it. If anyone has any idea whatsoever... I don't even really know where to begin. It seems extremely unusual for Internet to work fine on both computers usually, but to randomly, periodically, stop working on just one of them. I have never had a problem like this before.
    Thank you very much.
    -Phinizy
    Message was edited by: PhinForReal

    Have you contacted Charter? Do you have neighbors/friends you could check with when you're experiencing an 'outage' to see if they're having the same problem?
    I used a popular search engine and the search terms 'Charter internet trouble connecting' and found several choices. This link is one of several --> http://forums.speedguide.net/archive/index.php/t-146148.html
    It details issues experienced by Charter customers from now going all the way back to 2004. One of the more common complaints seems to be that the service just drops out on occasion.
    Message was edited by: kostby

  • Satellite Click 2 Pro - Card Reader slot not working with Fedora 21

    I am trying to get my Satellite Click 2 Pro P35W-B3220 to recognize the microSD card reader that is on the side of the screen.
    I have the other one working just fine.
    I'm using Fedora 21 as my OS.

    # lspci -k
    00:00.0 Host bridge: Intel Corporation Haswell-ULT DRAM Controller (rev 0b)
    Subsystem: Toshiba America Info Systems Device f960
    00:02.0 VGA compatible controller: Intel Corporation Haswell-ULT Integrated Graphics Controller (rev 0b)
    Subsystem: Toshiba America Info Systems Device f960
    Kernel driver in use: i915
    Kernel modules: i915
    00:03.0 Audio device: Intel Corporation Haswell-ULT HD Audio Controller (rev 0b)
    Subsystem: Toshiba America Info Systems Device f960
    Kernel driver in use: snd_hda_intel
    Kernel modules: snd_hda_intel
    00:14.0 USB controller: Intel Corporation 8 Series USB xHCI HC (rev 04)
    Subsystem: Toshiba America Info Systems Device f960
    Kernel driver in use: xhci_hcd
    00:16.0 Communication controller: Intel Corporation 8 Series HECI #0 (rev 04)
    Subsystem: Toshiba America Info Systems Device f960
    Kernel driver in use: mei_me
    Kernel modules: mei_me
    00:1b.0 Audio device: Intel Corporation 8 Series HD Audio Controller (rev 04)
    Subsystem: Toshiba America Info Systems Device f960
    Kernel driver in use: snd_hda_intel
    Kernel modules: snd_hda_intel
    00:1c.0 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 1 (rev e4)
    Kernel driver in use: pcieport
    Kernel modules: shpchp
    00:1c.2 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 3 (rev e4)
    Kernel driver in use: pcieport
    Kernel modules: shpchp
    00:1c.3 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 4 (rev e4)
    Kernel driver in use: pcieport
    Kernel modules: shpchp
    00:1d.0 USB controller: Intel Corporation 8 Series USB EHCI #1 (rev 04)
    Subsystem: Toshiba America Info Systems Device f960
    Kernel driver in use: ehci-pci
    00:1f.0 ISA bridge: Intel Corporation 8 Series LPC Controller (rev 04)
    Subsystem: Toshiba America Info Systems Device f960
    Kernel driver in use: lpc_ich
    Kernel modules: lpc_ich
    00:1f.2 SATA controller: Intel Corporation 8 Series SATA Controller 1 [AHCI mode] (rev 04)
    Subsystem: Toshiba America Info Systems Device f960
    Kernel driver in use: ahci
    00:1f.3 SMBus: Intel Corporation 8 Series SMBus Controller (rev 04)
    Subsystem: Toshiba America Info Systems Device f960
    Kernel modules: i2c_i801
    02:00.0 Network controller: Intel Corporation Wireless 7260 (rev 6b)
    Subsystem: Intel Corporation Dual Band Wireless-AC 7260
    Kernel driver in use: iwlwifi
    Kernel modules: iwlwifi
    03:00.0 Unassigned class [ff00]: Device 1aea:6621
    Subsystem: Device f960:1179

  • Cs-10 data card (r2.15) not working with Mac OS X ...

    Hi everybody,
    i got errors while trying to connect to my provider (could not negotiate a connection to provider..).
    As suggested in a thread of this forum i updated the Nokia CS-10 to the latest firmware R2.15 but the problems are still here.
    Any solution to this problem?
    I have no problem with windows XP.
    D.

    There was an Epson Printer update in Software Update not too long ago that totally hosed my Epson 1600 scanner.  No error messages like you are getting, it simply would not provide a scanned image. I had to reinstall the old drivers that I luckily had saved.  May or may not be related to your problem but I thought I'd mention it.
    Have you deleted and reinstalled your scanner?
    Epson support for the 2400 scanner is at the link below but I've not often been helped by anything I've read at the Epson site.  Maybe the drivers will help, though.
    http://www.epson.com/cgi-bin/Store/support/supDetail.jsp?BV_UseBVCookie=yes&info Type=Overview&oid=14587&prodoid=21643926

  • My CAC Card reader is not working with Firefox

    Using Win7 64 bit I can log in to secure site with IE 9 using my CAC Card but cannot log in to the same sites using Firefox 24.3 ESR. Is there a setting I need to change?

    check to see if this helps you solve your problem
    [https://militarycac.com/firefox.htm Firefox - CAC]

Maybe you are looking for