/etc/rc./network can not start broadcom device

Hey all, first post.
Loving Arch linux, used Redhat since back in the 6.0 days, then Fedora core 2-4, then Ubuntu. Tried all sorts of smaller distros, but I think Arch is a winner. Anywho onto the question.
I have a Broadcom Card. I am using bcm43xx-fwcutter with the file linked onto the wiki. I want to get my IP via DHCP.
I have noticed however that whenever I use iwconfig <interface> essid <essid>, I can not be assigned an IP address, but I can ping my network. If I use iwconfig <interface> essid any, it will work. But only if I let my system stand for a few minutes after booting, or restarting /etc/rc.d/network. Here is some basic info
[root@lungnet shawn]# lspci | grep -i broadcom
00:08.0 Network controller: Broadcom Corporation BCM4306 802.11b/g Wireless LAN Controller (rev 02)
[root@lungnet shawn]# ifconfig
eth1 Link encap:Ethernet HWaddr 00:30:BD:97:22:55
inet addr:192.168.0.10 Bcast:192.168.0.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:52735 errors:0 dropped:1179 overruns:0 frame:0
TX packets:42330 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:49436328 (47.1 Mb) TX bytes:3968906 (3.7 Mb)
Interrupt:5 Base address:0x8000
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:9 errors:0 dropped:0 overruns:0 frame:0
TX packets:9 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:584 (584.0 b) TX bytes:584 (584.0 b)
[root@lungnet shawn]# iwconfig
lo no wireless extensions.
eth0 no wireless extensions.
eth1 IEEE 802.11b/g ESSID:"lungair" Nickname:"Broadcom 4306"
Mode:Managed Frequency=2.462 GHz Access Point: 00:18:D1:46:36:BA
Bit Rate=24 Mb/s Tx-Power=15 dBm
RTS thr:off Fragment thr:off
Encryption key:off
Link Quality=108/100 Signal level=-29 dBm Noise level=-67 dBm
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:0 Missed beacon:0
[root@lungnet shawn]# iwlist eth1 scan
eth1 Scan completed :
Cell 01 - Address: 00:14:BF:38:A7:2B
ESSID:"linksys"
Protocol:IEEE 802.11bg
Mode:Master
Frequency:2.437 GHz (Channel 6)
Encryption key:on
Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 6 Mb/s; 9 Mb/s
11 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s; 36 Mb/s
48 Mb/s; 54 Mb/s
Quality=85/100 Signal level=-64 dBm Noise level=-67 dBm
IE: WPA Version 1
Group Cipher : TKIP
Pairwise Ciphers (1) : TKIP
Authentication Suites (1) : PSK
Extra: Last beacon: 160ms ago
Cell 02 - Address: 00:18:D1:46:36:BA
ESSID:"lungair"
Protocol:IEEE 802.11bg
Mode:Master
Frequency:2.462 GHz (Channel 11)
Encryption key:off
Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 6 Mb/s; 9 Mb/s
11 Mb/s; 12 Mb/s; 18 Mb/s; 22 Mb/s; 24 Mb/s
36 Mb/s; 48 Mb/s; 54 Mb/s
Quality=100/100 Signal level=-29 dBm Noise level=-67 dBm
Extra: Last beacon: 80ms ago
Yes, my wireless device ie eth1 and not wlan0. Not sure why, but it has always been this way.
On boot, or trying to start the network, the broadcom device times out on DHCP. After a few minutes, I can manually do it
iwconfig eth1 essid any
dhclient eth1
Here is my rc.d networking section. eth0 is a wired device, but my computer is almost always wireless, so I dont want the network script timing out every time, trying to DHCP from the non existent cat5.
# NETWORKING
HOSTNAME="lungnet"
# 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
# Note: to use DHCP, set your interface to be "dhcp" (eth0="dhcp")
lo="lo 127.0.0.1"
eth1="dhcp"
wlan_eth1="eth1 essid any"
INTERFACES=(lo eth1)
# 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.0.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-profiles
#NET_PROFILES=(main)
Any thoughts on how to get the network script working properly? I will be leaving town on work, and need to leave my computer with the girlfriend. There is no way she is going to be able to manually start the network everytime its needed.

Update:
Tried using the b43legacy drivers with the same outcome as the b43 drivers using the above mentioned tutorial.
[root@lungnet shawn]# iwconfig wlan0 essid lungair channel 1 ap 00:18:D1:46:36:BA
[root@lungnet shawn]# iwconfig
lo no wireless extensions.
eth0 no wireless extensions.
wmaster0 no wireless extensions.
wlan0 IEEE 802.11g ESSID:"lungair"
Mode:Managed Frequency:2.412 GHz Access Point: 00:18:D1:46:36:BA
Tx-Power=27 dBm
Retry min limit:7 RTS thr:off Fragment thr=2352 B
Encryption key:off
Link Quality:0 Signal level:0 Noise level:0
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:0 Missed beacon:0
[root@lungnet shawn]# lsmod | grep 43
b43legacy 101016 0
ssb 30980 1 b43legacy
rfkill 6036 1 b43legacy
mac80211 130316 1 b43legacy
input_polldev 3720 1 b43legacy
led_class 3844 1 b43legacy
nls_cp437 5888 1
ppp_generic 24348 0
fan 4356 0
snd_seq 48432 4 snd_seq_oss,snd_seq_midi_event
Also notice another wierd thing when going back to the bcm43xx drivers. If i comment out the networking section in my rc.conf file, the drivers wont work when manually setup after the network script fails?
[root@lungnet shawn]# iwconfig eth1 essid lungair channel 1 ap 00:18:D1:46:36:BA
[root@lungnet shawn]# iwconfig
lo no wireless extensions.
eth0 no wireless extensions.
eth1 IEEE 802.11b/g ESSID:"lungair" Nickname:"Broadcom 4306"
Mode:Managed Frequency=2.412 GHz Access Point: Invalid
RTS thr:off Fragment thr:off
Encryption key:off
Link Quality=0/100 Signal level=0 dBm Noise level=0 dBm
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:0 Missed beacon:0
# NETWORKING
HOSTNAME="lungnet"
# 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
# Note: to use DHCP, set your interface to be "dhcp" (eth0="dhcp")
lo="lo 127.0.0.1"
---> #eth1="dhcp" <---
---> #wlan_eth1="eth1 essid any" <----
---> #INTERFACES=(lo eth1) <---
# 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.0.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-profiles
#NET_PROFILES=(main)
I find that very odd.
Any other ideas?

Similar Messages

  • After downloading itune to my dell computer (with windows vista), the DVD RW drive is disabled. The device status shows "device can not start (code 10)" Any suggestions? Thanks.

    after downloading itune to my dell computer (with windows vista), the DVD RW drive is disabled. The device status shows "device can not start (code 10)" Any suggestions? Thanks.

    additional info.
    I have found the correct error definition in english.
    "can not start the device (Code 10)"
    I have updated my bios to the latest version.
    I have just tried to uninstall all USB-drivers, and reinstall them.. Still no luck
    I have tried to uninstall and reinstall all webcam drivers - no luck

  • Newbie question :network can't start

    i install archlinux in vmware4 workstation on win2003(my network card is sis-900) ,but i found the network can not start.
    now how can i solve this problem?
    plz don't tell me reinstall!

    Aaah, we're getting closer now.
    Now if you'd tell us why using the aptly named module "sis900" won't do the job, I or someone else might get close to helping you out. If you simply don't know how to load this module at all, I suggest you read the manpage to "modules.conf", that's what it's there for. In most cases the line "alias eth0 sis900" added to this file will do the trick nicely, and automagically load the module when the eth0 device is somehow accessed, for example during network setup.
    No, you don't need to reboot to try that out. After you've made changes to the rc.conf or modules.conf, simply try restarting the networking subsystem only with the command /etc/rc.d/network restart or /etc/rc.d/network start, and have a look at the results with ifconfig, which should display your eth0 device on success. Again, the manpages and documentation are your friend. Check the message log and dmesg if the module loading somehow doesn't work, error messages are dumped there.
    Noticed I'm still guessing what your actual problem might be? Refine your question. Guessing costs time I don't really have.
    Greets,
      Dennis

  • HT4623 Hello I upgraded my iPhone to version 6.1 and the device does Hfalhsl iPhone and it stuck on can not start the iPhone

    Hello I upgraded my iPhone to version 6.1 and the device does Hfalhsl iPhone and it stuck on can not start the iPhone

    Find an answer somewhere else or buy a new phone.
    You can not get help here for a hacked/jailbroken phone.

  • Hello I upgraded my iPhone to version 6.1 and the device does Hfalhsl iPhone and it stuck on can not start the iPhone

    Hello I upgraded my iPhone to version 6.1 and the device does Hfalhsl iPhone and it stuck on can not start the iPhone

    Find an answer somewhere else or buy a new phone.
    You can not get help here for a hacked/jailbroken phone.

  • HT6117 Error : Can not start the service "Apple Mobile Device"

    I get this error message of Can not start the service "Apple Mobile Device" please verify if you have enough permission to start a service. I have tried reinstalling itunes but could not get rid of the error. I use Win 7 64bit OS. Please help me to resolve the issue
    Thanks
    Venky

    See Troubleshooting issues with iTunes for Windows updates.
    tt2

  • I can not start my apple mobile device. the computer will attempt to start it up but then bumps me out. I have tried everything.

    I can not start my apple mobile device.  It will attempt to start and then bump my out.  I think I need a third party and I do not know how to get a third party of to start the apple mobile device.  I have looked online at people who had the same problem as me and tried to do what they did to get it started.  I am still not able to get it started and I have been working on this for three day. please help if you can

    See this article for instructions on restarting and re-installing the Apple Mobile Device service if necessary.
    How to restart the Apple Mobile Device Service (AMDS) on Windows
    B-rock

  • TS3694 mi ipod touch will not boot, it goes to the apple logo then shuts off, I tried to restore it but it shuts off while restore is going on then it saids it can not find the device

    Hello,
    I need help before i go to the apple store for help.
    My problem is that I have an Ipod touch which it was working fine but now it will not boot all the way.
    It will not show the red bar when is ready to be turn off or reboot when using both buttons to reset it it will only come to the apple logo then goes blank.
    I tried to restore via Itunes but same result, it will start showing is doing the extract then it will go blank and get a message saying that It can not find the device.
    What do i need to do.
    Thank you for your help.
    regards,
    Mario
    PS. The OS I am not sure do not remember exactly.

    - Reboot the computer
    - Try another USB port
    - Try another cable try another cable
    - Inspect the dock connector for bend or missing contacts, corroded contacts, broken, missing or cracked plastic.
    -  Make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar

  • Can not start plugs in

    Using XI tools http://server:port/index.html
    will show "SAP NetWeaver Administrator" click on it and click "monitoring" getting an error messages
    "can not start plugs in"

    HI mtravisawan Awan
    This is aa network issue
    YOur user dont have admin rights. So kindly ask your admin guy to assign a port in the gatway for your machine then definitly you wil be able to display the page.
    regards
    Sandeep
    If helpful kindly reward points

  • Can Not start Database after Server is restarted !!!!

    I am building a oracle Hyperion Essbase and planning sandbox on my laptop using VMware 9.0
    and 11gr2 as ny database.
    Once I complete the install and config, I am installing the essbase EAS client, once that is completed I have too restart the server
    once the Server is back up, the database is giving me the following Error:
    Database Instance: Hyperion
    Enterprise Manager is not able to connect to the database instance. The state of the components are listed below. Page Refreshed  Aug 31, 2013 2:19:45 AM EDT  
    Database Instance
    Host  localhost
    Port  1521
    SID  Hyperion
    Oracle Home  C:\app\Administrator\product\11.2.0\dbhome_1
    Listener
    Status  Down
    Host  localhost
    Port  1521
    Name  LISTENER
    Oracle Home  C:\app\Administrator\product\11.2.0\dbhome_1
    Location  C:\app\Administrator\product\11.2.0\dbhome_1\network\admin
    Details  TNS-12541: TNS:no listener 
    Agent Connection to Instance
    Status  Failed
    Details  ORA-12541: TNS:no listener (DBD ERROR: OCIServerAttach
    Change Status Details
    Copyright (c) 1982, 2010, Oracle.  All rights reserved.
    SQL> Connected to an idle instance.
    SQL> SQL> ORA-00119: invalid specification for system parameter LOCAL_LISTENER
    ORA-00132: syntax error or unresolved network name 'LISTENER_HYPERION'
    Disconnected
    Database Instance: Hyperion
    Error Message
    The operation for starting up the database has failed. Click 'View Details' to see the error. You may have to perform a recovery.
    View Details
    Perform Recovery
    Enterprise Manager is not able to connect to the database instance. The state of the components are listed below. Page Refreshed  Aug 31, 2013 6:56:37 AM EDT
    Please advise

    Not clear what you are asking instruction i am following
    again I need a Database schema for Oracle Hyperion Shared Services
    I set up the database and config the Hyperion Essbase application
    but when I  restart the server the database gives me the above error
    Listener / Status  Down / Host  localhost
    and
    Agent Connection to Instance Status  Failed
    Details  ORA-12541: TNS:no listener (DBD ERROR: OCIServerAttach
    I manually went into the database instance and started the Listener
    but I can not start the database
    it is saying me to do a recovery ????
    Details
    SQL> Connected to an idle instance.
    SQL> SQL> ORA-00119: invalid specification for system parameter LOCAL_LISTENER
    ORA-00132: syntax error or unresolved network name 'LISTENER_HYPERION'
    Disconnected
    Database Instance: Hyperion
    Error Message
    The operation for starting up the database has failed. Click 'View Details' to see the error. You may have to perform a recovery.
    View Details
    Perform Recovery
    what can I do Please advise

  • Can't start mobile device service error 1503

    I'm using win7 ..
    I recently tried to sync my iphone4 with the itunes
    And a message poped up say " can't start mobile device" sth like that
    Then I followed some solution on the apple webiste..
    But when I try to restart the service..
    It said " Error 1503 "the service did not respond to the start request in a timely manner" "
    What can I do to slove that
    Thanks !

    See Troubleshooting issues with iTunes for Windows updates.
    tt2

  • J2ee dispatcher can not start

    I have installed a CRM system with ABAP+JAVA. But now the j2ee dispatcher can not start,so do the server0. I don not know any reason,the network.log show the following information: 'p4 Port 50,106 is in use'.
    Does anyone who has some idea about this situation?
    Thanks in advance!

    HI,Juan Reyes 
      Thank you very much for your directions. I check the std_dispatcher.out, and found the following error:
    --- Unicode interface -
    End of message -
    Could not open libsapu16vc71.dll [nlsui0.c 2458] pid = 2184
    Could not open libsapu16vc71.dll [nlsui0.c 2458] pid = 2184
    Terminating. [nlsui0.c 2583] pid = 2184.
    So I copy one libsapu16vc71.dll to the \usr\sap\sid\JC01\j2ee\os_libs, and the dispatcher started successfully.

  • ThinkPad Twist - I can not start the bios or the start-up menu pressing Enter

    Think Pad Twist i7-3537U
    No matter how fast or how many times I press the enter key when starting, I can not access the start-up menu.
    Immediately after the white "ThinkPad - To interrupt normal start press Enter" letters appear for just a fraction of a second on the bottom left corner, there comes the windows blue logo, and windows starts.
    - The enter key is working fine (I can use it with any application)
    - I am completely shutting down the laptop, not sleeping or hibernating.
    - I have tried a "safe mode" start from msconfig -> same results.

    Ok, I've been able to access the BIOS with the following procedure:
    http://www.makeuseof.com/tag/how-to-access-the-bios-on-a-windows-8-computer/
    Winkey+C > PC Settings > General > Advanced Startrup > Restart Now > > > UEFI Settings
    But this is only a temporary solution. What will happen if I can not start Windows and I need to access the Startup for recovery purposes?, or to boot from a USB device?
    I would like to have a solution to normally access the Startup Options pressing the Enter key.
    Thank You

  • TS1814 I have purchased iPhone 3g device from my friend, I connected it to the iTunes to upgrade from 3.1 to 6.0 as many softwares were not being installed as iOS was not up to date. I upgraded but now I can not activate my device. What I should do now???

    I have purchased iPhone 3g device from my friend, I connected it to the iTunes to upgrade from 3.1 to 6.0 as many softwares were not being installed as iOS was not up to date. I upgraded but now I can not activate my device. What I should do now??? i am really feeling difficulty because i have been disconnected from the network.
    I am from Pakistan.

    The 3G cannot be updated to iOS6, it can only go to iOS 4.2.1.
    Activation issues are generally the result of the device being hacked or jailbroken.

  • My MacBook Pro can not start completely it stays on a blue scre

    I restarted my MacBook Pro but left a USB plugged now it can not start completely it stays on a blue screen where I can see the pointer and sometimes a small icon which indicates its processing something. It has being like that for two days. I can not even turn it off I have to hold the bottom to force it to shut off.

    i know this may be silly but i hope you removed the usb device while restarting.
    If you did then hold up the option key as soon as you press the power button. It will bring you to a bootfolder selection choose your main partition and boot up. Alternatively if this does not help then do a PRAM and SMC reset. If these things fail then select recovery partition and go to disk utility and repair permisions for the main partition within the first aid section. If all else fails you would need to re install the osx, hope you have a back up.
    Since you have not told us what model and year the mbp is if you have the recovery discs with you use disc 2 and read the insturctions on the disc as to what key you should hold.

Maybe you are looking for