Results 1 to 6 of 6
So I'm having major network issues. I cannot get a real IP address with this RHEL installation I have. Im using a Braodcom NetLink ethernet card and the tg3 driver ...
- 06-28-2011 #1Just Joined!
- Join Date
- Jun 2011
- Posts
- 20
RHEL 6 Network Manager Dead
So I'm having major network issues. I cannot get a real IP address with this RHEL installation I have. Im using a Braodcom NetLink ethernet card and the tg3 driver that came with my install cd.
When I go to services it says my NetworkManager is enables but dead. I'm guessing this may be a cause so anyone have any ideas?
- 06-28-2011 #2Linux Guru
- Join Date
- May 2011
- Posts
- 1,843
IMO, NetworkManager is crap. Disable it. Use /etc/init.d/network only.
What do you mean by "real ip address"? Is it set up for DHCP or Static IP?Code:service NetworkManager stop chkconfig NetworkManager off service network restart chkconfig network on
Try these commands to help assess your problem:
show current ip config:
show ethernet devices known to kernel:Code:ip a route -n
show physical connection on eth0 device:Code:ls /sys/class/net
show contents of eth0 ip configuration file:Code:ethtool eth0|grep Link
Code:cat /etc/sysconfig/network-scripts/ifcfg-eth0
- 06-28-2011 #3Just Joined!
- Join Date
- Jun 2011
- Posts
- 20
Im sorry if I was unclear. Turns out when I run
NetworkManager starts up and I finally can connect to the internet. However it seems like I have to do this everytime I reboot. Is there a way to get NetworkManager starting up on its own?Code:/etc/init.d/NetworkManager status
- 06-28-2011 #4Linux Guru
- Join Date
- May 2011
- Posts
- 1,843
Code:chkconfig NetworkManager on
- 06-28-2011 #5Just Joined!
- Join Date
- Jun 2011
- Posts
- 20
Still didnt work. NetworkManager still doesnt boot on startup.
- 06-28-2011 #6Linux Guru
- Join Date
- May 2011
- Posts
- 1,843
Not sure why. Does it start properly when you do "service NetworkManager start"?
Like I said, I don't use it, so I'm not much help. If you're not using wireless, I still say disable it and use good old /etc/init.d/network. Or is there some reason you have/want to use NetworkManager?


Reply With Quote