- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Network device utilization
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
06-06-2002 05:02 AM
06-06-2002 05:02 AM
Dear friends
I need to know which process is more using a network device in determined moment (lan2 or lan3). How i can make this? I use hp-ux 10.20.
Thank you
Wagner
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2002 05:14 AM
06-06-2002 05:14 AM
Re: Network device utilization
# gpm
Another command would be:
# netstat (see man pages for details)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2002 05:38 AM
06-06-2002 05:38 AM
Solutionwhat you are doing is very hard to accomplish , the data from Glance is normally information per interface or information per process , I have no knowledge of information linking the interface to the processes themselfs , that is because in fact there is no correlation between a lancard and a process , it is the routing stack which directs the process request to the appropriate port of the system , I doubt if even perfview is able to make that kind of asessement , Glance is indeed your best shot but as said I'm not aware of a function able to tdo this in Glance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2002 05:56 AM
06-06-2002 05:56 AM
Re: Network device utilization
I think you is right.
Through the Glance is not possible to identify which process cause my switch freezing. We have a broadcast storm in determined moments.
The maximum that i obtain is to see through glance the incredible increase in the number of packages passing through for a network device. I don??t obtain to identify the responsible process therefore.
Thanks
Wagner
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2002 06:12 AM
06-06-2002 06:12 AM
Re: Network device utilization
Run gpm, bring up process list, add metrics non disc logical reads and non disk logical writes. Sort columns so processes are listed by these 2 metrics (and you'll probably have to arrange columns to show these 2 first, then pid and user). Drop measurement interval to 5 seconds or less, then when a user does a large ftp (for example) either reading or pushing, it will show up under these 2 metrics above. Basically it sorts processes by network usage. My test doing large ftp's showed up easily on the above example - I could see which user was doing them and if sending or receiving ftp files.
This should help you find the process(es) hitting your network hard.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2002 06:24 AM
06-06-2002 06:24 AM
Re: Network device utilization
whith lsof you can list all processes "attached" to an ip address :
lsof -i @192.168.1.1
Hope it helps.
Rafa