- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: how can I monitor the incoming and outgoing pa...
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
03-27-2006 09:03 PM
03-27-2006 09:03 PM
how can I monitor the incoming and outgoing packets
how can I monitor the incoming and outgoing packets that pass on every network card in my system?
thanks in advance.
bebravo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2006 09:05 PM
03-27-2006 09:05 PM
Re: how can I monitor the incoming and outgoing packets
--
Muthu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2006 09:06 PM
03-27-2006 09:06 PM
Re: how can I monitor the incoming and outgoing packets
http://hpux.connect.org.uk
You also need to install plibcap and then tcpdump.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2006 09:08 PM
03-27-2006 09:08 PM
Re: how can I monitor the incoming and outgoing packets
http://hpux.connect.org.uk/hppd/hpux/Sysadmin/sysmon-0.92/
http://hpux.connect.org.uk/hppd/hpux/Networking/Admin/libpcap-0.9.4/
--
Muthu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2006 09:25 PM
03-27-2006 09:25 PM
Re: how can I monitor the incoming and outgoing packets
I need something that is available on the Core OS install.
thanks in advance
bebravo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2006 09:31 PM
03-27-2006 09:31 PM
Re: how can I monitor the incoming and outgoing packets
thesedays, it also comes with a nice UI-nettladm
Read man pages for details.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2006 10:07 PM
03-27-2006 10:07 PM
Re: how can I monitor the incoming and outgoing packets
lanadmin -g mibstats 0
will provide you detailed information on interface, including packets/octets in/out
antonio.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2006 10:22 PM
03-27-2006 10:22 PM
Re: how can I monitor the incoming and outgoing packets
# netstat -ivn
Name Mtu Network Address Ipkts Ierrs Opkts Oerrs Coll
lan0 1500 192.168.22.0 192.168.22.1 16879706 0 17104973 0 0
lo0 4136 127.0.0.0 127.0.0.1 5877803 0 5877803 0 0
from http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1014485
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2006 11:36 PM
03-27-2006 11:36 PM
Re: how can I monitor the incoming and outgoing packets
Another, easier to use suggestion is ethereal, which ships as part of the Internet Express kit from software.hp.com
11i v1
http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=HPUXIEXP1111
11i v2
http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=HPUXIEXP1123
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
03-28-2006 12:29 AM
03-28-2006 12:29 AM
Re: how can I monitor the incoming and outgoing packets
You can log TCP and UDP connections with HP's IPfilter product.
I wrote a document about it, be careful though because it will create a lot of data in the log file.
The document is "UTRANKBRC00017096" in the ITRC knowledge base.
Here is the basic ipf.conf file.
pass in log first quick proto tcp from any to any flags S keep state
pass out log first quick proto tcp from any to any flags S keep state
pass in log first quick proto udp from any to any keep state
pass out log first quick proto udp from any to any keep state
pass in from any to any
pass out from any to any
Ipfiler is available for free of Internet express or via the HP software depot. Its loaded by default at 11.23.
http://www.hp.com/go/softwaredepot
Hope that helps
Todd