- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Late Collisions
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
12-12-2001 12:12 PM
12-12-2001 12:12 PM
The newly installed NIC is running at 100MB Full Duplex, while the older server is running at 100MB Half Duplex, again both on the same switch.
I tested transfer rates using ftp and transfering a 60MB file to and from the machines, both only getting around 50Kb/s, which is pretty horrible considering they are on the same switch. We noticed the problem during our normal backups when the clients were taking forever to backup.
Here is the output from the server where the newly installed 100MB FD NIC is installed:
Alignment Errors = 0
FCS Errors = 0
Single Collision Frames = 1018
Multiple Collision Frames = 44
Deferred Transmissions = 4
Late Collisions = 338341
Excessive Collisions = 2
Internal MAC Transmit Errors = 0
Carrier Sense Errors = 1
Frames Too Long = 0
Internal MAC Receive Errors = 0
What do I need to do to avoid the "Late Collisions" and increase the speed to normal 100MB transfer rates?
I'm assuming there should be no problem with one card talking half duplex and the other talking full duplex as the switch should take care of these issues, but I may be wrong here.
Where should I start to troubleshoot and what steps do I need to take next? Any help would be greatly appericated, thanks.
-Mike
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2001 12:16 PM
12-12-2001 12:16 PM
SolutionAfter much frustration, I have learned to never trust Auto-negotiate on either end when connected to these servers. Hard set to whatever value you like on the servers and then hard-set the values on the switch as well and I think your problems will completely disappear.
Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2001 12:24 PM
12-12-2001 12:24 PM
Re: Late Collisions
I have found much less troublesome to hard set both the switch ports and the cards on the servers to the speed and duplex you want. I hate auto-negotiation. It hardly ever works.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2001 12:30 PM
12-12-2001 12:30 PM
Re: Late Collisions
Make sure that auto-negotiation is turned OFF and that your configuration file settings match your switch. To see the current setting, do:
# lanadmin -x
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2001 12:40 PM
12-12-2001 12:40 PM
Re: Late Collisions
Suggest you have the port on the switch configured for 100MBPS fullduplex, no-autoneg for the server with 100FD card and the other port configured for 100MBPS half duplex, no-autoneg. This is to avoid auto neg which is always a problem.
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2001 01:25 PM
12-12-2001 01:25 PM
Re: Late Collisions
Ditto on the auto-neg and duplex mismatch between a server and a switch.
Also, I'd set 100FD on the NIC (and switch port) that is currently at 100HD. It should support full duplex.
Darrell
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2001 06:05 AM
12-13-2001 06:05 AM
Re: Late Collisions
/etc/rc.config.d/hpgsc100conf
#####################################################################
# @(#) hpGSC100conf PHNE_13940 $Revision: 1.2 $ $Date: 98/01/29 12:00:01 $
# hpGSC100conf : contains configuration values for HP 100Mb interfaces
#
# HP_GSC100_INTERFACE_NAME Name of interface (lan0, lan1...)
# HP_GSC100_STATION_ADDRESS Station address of interface
# configured through lanadmin(1m)
# Prefixed with "0x".
# HP_GSC100_DUPLEX Half or full duplex mode (half is default)
#
# HP_GSC100_SPEED Manually set the driver's speed. Can be one
# of: 10HD, 10FD, 100HD, 100FD, auto_on
#
# The interface name, major number, card instance and nmid may be
# obtained from the lanscan(1m) command.
#
# The station address and duplex are set through the lanadmin(1m) command.
#
#####################################################################
Now here is where I configure this instance of the card:
HP_GSC100_INTERFACE_NAME[2]=lan2
HP_GSC100_STATION_ADDRESS[2]=0x001083361313
HP_GSC100_SPEED[2]=100FD
Does 100FD in the speed setting not clearly state 100FD? Well in lanadmin it shows the following:
Description = lan2 Hewlett-Packard 10/100 TX Half-Duplex Hw
Rev 0. TT = 1500
So I'm assuming it's set to half duplex, while the switch is set to full causing the late collisions. Lanadmin also shows the speed for this instance of the NIC to be '100', while on my other server where I have the same NIC running at half duplex shows the speed as '100000000'. This configuration file seems a bit flaky to me, as I'm passing the same parameters on the other host and I get different results. Both of these servers are running HP-UX 10.20 and the March quarterly patches. Any ideas? Thanks.
-Mike
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2001 06:29 AM
12-13-2001 06:29 AM
Re: Late Collisions
1) Are you sure that the card instance is lan2? Do a lanscan and see what cards you have.
2) I would get rid of the value that you have set in the station address field. Let the card set its own MAC address.
I think the difference you are seeing with the speed (100000000 vs. 100) is a patch issue if I remember correctly. The speed on both is 100 Mb. The lanadmin output should show Full Duplex once the card is set to FD.
How is the [1] instance of that card set up?