- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- network will not work
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-21-2006 08:52 AM
09-21-2006 08:52 AM
network will not work
RHEL4 U4 on ProLiant DL360 G5
The OS loaded fine without troubles, the startup says "bring up eth0 - success" but still unable to connect to the system.
Unable to ping the gateway but can ping the localhost
Checked the /etc/sysconfig/network-scripts and looks OK.
Where else could I look?
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-21-2006 09:22 AM
09-21-2006 09:22 AM
Re: network will not work
service iptables stop
Check that the network link is detected:
ethtool eth0
Ensure that you receive packets, check RX OK from the output of:
ifconfig
netstat -ni
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-21-2006 06:23 PM
09-21-2006 06:23 PM
Re: network will not work
iptables is a good start, but if things were set right the system should still be on the network.
1) More basic, check the link light. If its not on, check the switch if its on move down this list.
2) On another machien check the arp table with the arp command. See if somone is on the network with the same ip address.
3) ping -b broadcast address see whats out there.
4) Try setting up eth1, maybe eth0 is bad.
I'll post back when I'm awake and something normal comes to mind.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-21-2006 06:54 PM
09-21-2006 06:54 PM
Re: network will not work
if the network card wasn't configured as DHCP client, then "bring up eth0" doesn't necessarily means that it's IP resides in apropriate LAN. Unless you've found the solution already you can post the /etc/sysconfig/network and /etc/sysconfig/network-scripts/ifcfg-eth{0,1} and the output of ethtool eth0 and ethtool eth1.
One more thing to try-replace the network cable.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2006 01:16 AM
09-22-2006 01:16 AM
Re: network will not work
You'd be surprised at how many customers make this mistake. And with linux and the methods it uses to discover network devices, what you think is eth0 may not be......or it can move from boot to boot.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2006 05:28 PM
11-07-2006 05:28 PM
Re: network will not work
2. ifconfig -a (check if iface is up)
3. try ping locally not 'localhost', but your machine ip on eth0\1\2.
try manually:
A) /etc/init.d/network stop
(imho i was a bad idea to start\stop net from init.d)
B) /etc/init.d/iptables stop (or any kind of FW you are using)
C) /sbin/ifconfig eth0 IP_ADDR netmask NET_MASK broadcast BCAST up
D) use tcpdump after that to listen for packets.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-13-2006 11:35 PM
11-13-2006 11:35 PM
Re: network will not work
try to shut-down all iptables rules on both eth and try if the machine is reachable from another machine.
Also, use a sniffer like "tcpdump" or "ethereal" on linux and another machine to see the inbound-outbound traffic.