- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: network cards issue.
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-27-2004 08:59 AM
09-27-2004 08:59 AM
network cards issue.
I am facing a problem if I leave the machine on for 2 - 3 hours it loose the connectivity. I mean nobody would be able to ping or to connect with this machine by any ways.
I checked both cards are up, ip addresses are properly bound, there is no screen saver or power management option is running.
Also at that time I am not able to use webmail also.
However if I do ping locally to these cards, suddenly they start working. This is a behaviour of all the three cards.
Can some help me out
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2004 09:12 AM
09-27-2004 09:12 AM
Re: network cards issue.
Have you had a look in /var/log/messages, well that is also in all of the files in the /var/log .. perhaps this could get you on the trace of what is wrong .... also dmesg may help you here ... tell us about you finding so we can help futher.
J-P
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2004 09:33 AM
09-27-2004 09:33 AM
Re: network cards issue.
You've choosen an ip address thats a duplicate of another ip address somewhere else on the network.
It could be some windows workstation or wheatever and when it goes on, you lose network connectivity. There should be a message about this in /var/log/messages.
Then it happens, from a workstation, do a traceroute (tracert) from windows. Is the route taken the expected route.
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-27-2004 08:15 PM
09-27-2004 08:15 PM
Re: network cards issue.
I totally agree with Stepen in his suggestion. From what you have explained it defintely looks like this is a typical symptom of duplicate IP.
I would suggest that you rule this out before proceeding with any other suggestions that are thrown at you or that come to your mind
regards
Mobeen
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2004 06:39 AM
09-28-2004 06:39 AM
Re: network cards issue.
eth1 NIC Link is Up 10 Mbps Half Duplex
Is there any possbility to change it full duplex and change the speed to 100mbps?? and it will resolve the problem.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2004 08:35 AM
09-29-2004 08:35 AM
Re: network cards issue.
1)Could you give the output of ifconfig -a for this server?
2)Also do you see any messages for "NIC Link DOWN"?
3)when you say Linux 7.x do you mean redhat or some other flavour?
-Regards
Govind
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2004 01:44 AM
10-04-2004 01:44 AM
Re: network cards issue.
what type of card are you using. some drivers allow some parameters while loading.
For example Intel e1000:
modprobe e1000 duplex=2 Speed=1000
means load driver for e1000 based card with full duplex and 1000MBps
Have a look at
for explanation of parameters for all supported nic's.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2004 02:41 AM
10-04-2004 02:41 AM
Re: network cards issue.
To disable autonegotiation, and force the MII to 100baseTx-FD use -F option to mii-tool. This utility checks or sets the status of a network interface's Media Independent Interface (MII) unit. Most fast ethernet adapters use an MII to autonegotiate link speed and duplex setting.
If you want to check current settings on all network interfaces just type:
/sbin/mii-tool
To disable autonegotiation, and force the MII to 100baseTx-FD on eth1 use:
/sbin/mii-tool -F 100baseTx-FD eth1
To make these settings persist a reboot add them in /etc/rc.d/rc.local
Add something like this to the end of it:
#Force 100baseTx Full Duplex for eth0 & eth1
/sbin/mii-tool -F 100baseTx-FD eth0
/sbin/mii-tool -F 100baseTx-FD eth1
HTH,
Ross
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2004 02:46 AM
10-04-2004 02:46 AM
Re: network cards issue.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2004 06:23 PM
10-04-2004 06:23 PM
Re: network cards issue.
does the other end point (switch, hub, router) support 100MBps Full Duplex?
Could it be that the port on the switch is set to 10MBps Half Duplex?
Did you use the nic before in another computer? Did you use a DOS tool to configure the nic to some settings?