- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Tracing network communication for a specific p...
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
тАО08-27-2000 11:29 PM
тАО08-27-2000 11:29 PM
Tracing network communication for a specific port
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-27-2000 11:31 PM
тАО08-27-2000 11:31 PM
Re: Tracing network communication for a specific port
You can use HP-UX's standard commands, nettl and netfmt but most people use extra tools; tcpdump or ethereel to do this. Ive had big problems trying to get ethereel to work so I think tcpdump is the first one to try. You can download from software.hp.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-28-2000 02:06 AM
тАО08-28-2000 02:06 AM
Re: Tracing network communication for a specific port
http://my1.itrc.hp.com/cm/QuestionAnswer/1,1150,0xa25268c57f64d4118fee0090279cd0f9,00.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-29-2000 09:47 PM
тАО08-29-2000 09:47 PM
Re: Tracing network communication for a specific port
I downloaded ethereal from: http://hpux.asknet.de/hppd/hpux/Gtk/ethereal-0.8.11/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-29-2000 10:50 PM
тАО08-29-2000 10:50 PM
Re: Tracing network communication for a specific port
traceon:
========
#! /bin/ksh -p
echo Tracing TCP and UPD port $1 in
echo filter tcp_dport $1 > /root/scripts/netfmt.filter
echo filter udp_dport $1 >> /root/scripts/netfmt.filter
nettl -traceoff -entity all > /dev/null 2> /dev/null
# Turn off all tracing
nettl -traceon pduin -entity all -size 128 -file /tmp/raw
# Turn on tracing for data in (pduin)
netfmt -N -F -l -f /tmp/raw.TRC0 -c /root/scripts/netfmt.filter
# display that
-----------------
traceoff:
=========#! /bin/ksh -p
echo Tracing of TCP and UPD off!
nettl -traceoff -entity all > /dev/null 2> /dev/null
# Turn off all tracing