- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to identify a network card bottleneck
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
Discussions
Discussions
Discussions
Forums
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
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-23-2005 01:36 AM
тАО09-23-2005 01:36 AM
How to identify a network card bottleneck
Is possible to make some test to identify if a bottleneck is in a network card?
Thanks,
Nascimento
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-23-2005 02:00 AM
тАО09-23-2005 02:00 AM
Re: How to identify a network card bottleneck
You can use the following command:
netstat -p tcp
Some general tips:
* Make sure your network card is running full duplex. Some auto-negotiation protocols
with the network hardware may inadvertently set your card into half-duplex mode. Avoid autonegotiation when possible.
* Use of the automounter can cause unproductive flushes of data from the buffer cache. If possible, use AutoFS instead of Automount.
* If you need NFS, use NFS V3. Clients need to be talking V3 as well as the server.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-23-2005 02:20 AM
тАО09-23-2005 02:20 AM
Re: How to identify a network card bottleneck
The best tool to use is MeasureWare & it's main component PerfView.
But, these are "pay-per-view" products.
But, seriously, they're well worth it.
My 2 cents,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-26-2005 04:30 AM
тАО09-26-2005 04:30 AM
Re: How to identify a network card bottleneck
Glance and Measureware can track a number of link-level statistics which can indicate a NIC saturation - for example, if the outbound transmit queue of the NIC stays "high" for a prolonged period of time (for subjective definitions of high and prolonged) they will flag the NIC as a possible bottlenect.
If there are inbound or outbound discards on the NIC, that too can be flagged (and may appear as retransmissions in TCP).
You can look at the lanadmin statistics yourself if you prefer:
lanadmin -g mibstats
Related to a NIC bottleneck, glance and measureware can tell you if a specific CPU is "pegged" - ie completely consumed - with interrupt time. You can correlate that with the information from the intctl command to see which NIC is interrupting which CPU.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-26-2005 07:32 AM
тАО09-26-2005 07:32 AM
Re: How to identify a network card bottleneck
The Non pay per view version. The network management toolset here is pretty good. It will identify issues involving the network and other possible bottlenecks.
Glance is better, but this is free.
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-26-2005 03:02 PM
тАО09-26-2005 03:02 PM
Re: How to identify a network card bottleneck
#How many network hops (i.e. bridges, hubs, routers, switches, etc.) do network packets traverse between the client and the server systems?
#What is the speed of each link separating these systems?
#Does your network equipment use auto-negotiation to set speed and duplex settings?
#Are your network interfaces configured for half-duplex or full-duplex mode?
#Do your switch port settings match the speed and duplex settings of your host interfaces?
#What is the maximum transmission unit (MTU) size of the links between these systems?
#If the links are using different MTU sizes, how are the packets being translated? For example, if the NFS client resides in an FDDI ring and uses an MTU size of 4352 and the NFS server uses a 100BT interface with an MTU size of 1500, how are the 4352 byte packets from the client being fragmented into 1500 byte packets for the server?
#Do packets sent from the client to the server take the same route through the network as the packets sent from the server to the client?
You can man netstat to find what you want to know about your network statistics.The traceroute(1M) tool provides a simple means of determining the path through the network taken by packets sent from one system to another.Another tool shipping with HP-UX that can simplify the process of collecting network topology information is ping(1M).The lanadmin command allows a system administrator to display many useful statistics kept by the LAN driver subsystem, regardless of the interface type.
You can try using tools such as:
ttcp: http://ftp.arl.mil/ftp/pub/ttcp
netperf:http://netperf.org