- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Performance numbers on lan0
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
07-16-2002 07:38 AM
07-16-2002 07:38 AM
'netstat -I lan0' will return incoming and outgoing packets on the interface, but how do I determine the bytes?
Thanks in advance,
John
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2002 07:44 AM
07-16-2002 07:44 AM
Re: Performance numbers on lan0
you can get the Inbound Octets, Outbound Octets and other statistics with lanadmin.
Best regards
Juan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2002 07:49 AM
07-16-2002 07:49 AM
Re: Performance numbers on lan0
# lanadmin
Enter command: lan
Enter command: display
Is there another way to get this result from a single command?
Thanks,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2002 07:50 AM
07-16-2002 07:50 AM
SolutionAs far as my knowledge goes, all the default commands show only the packets on the interface. Packets can be of variable sizes.
You can either problem SNMP data or install any other third party tools like ethereal to get a snapshot of the utilization.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2002 08:09 AM
07-16-2002 08:09 AM
Re: Performance numbers on lan0
#(echo lan; echo ppa 2; echo display; echo ""; echo quit) |lanadmin > /tmp/lanadmin.out
You can grep octets from lanadmin.out.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2002 08:22 AM
07-16-2002 08:22 AM
Re: Performance numbers on lan0
lanadmin -g PPA|grep "^Inbound Octets"
where PPA is the number that follows lan:
lan0-->0
lan1-->1
..
Therefore, if you want to get graphics of this I would recommend you MRTG. With it you can get graphics over time of any SNMP variable (numeric of course) in html format.
Best regards,
Juan