aboutsummaryrefslogtreecommitdiffstats
path: root/README.hpux
diff options
context:
space:
mode:
Diffstat (limited to 'README.hpux')
-rw-r--r--README.hpux40
1 files changed, 20 insertions, 20 deletions
diff --git a/README.hpux b/README.hpux
index 53e3edca4d..eec07b997d 100644
--- a/README.hpux
+++ b/README.hpux
@@ -1,8 +1,8 @@
-Contents :
+Contents:
1 - Building ethereal
-2 - "libpcap" on HP-UX
-3 - nettl support
+2 - nettl support
+3 - "libpcap" on HP-UX
1 - Building ethereal
@@ -24,7 +24,23 @@ They appear to have used HP-UX's "cc" compiler, with the options "-Ae
-O"; there's a comment "Add -Dhpux_9 if building under 9.X". It may
also build with GCC.
-2 - "libpcap" on HP-UX
+2 - nettl support
+
+nettl is used on HP-UX to trace various streams based subsystems. Ethereal
+can read nettl files containing IP frames (NS_LS_IP subsystem) and LAPB
+frames (SX25L2 subsystem).
+It has been tested with files generated on HP-UX 9.04 and 10.20.
+
+Use the following commands to generate a trace (cf. nettl(1M)):
+
+# IP capture. 0x30000000 means PDU in and PDU out :
+nettl -tn 0x30000000 -e NS_LS_IP -f tracefile
+# X25 capture. You must specify an interface :
+nettl -tn 0x30000000 -e SX25l2 -d /dev/x25_0 -f tracefile
+# stop capture. subsystem is NS_LS_IP or SX25L2 :
+nettl -tf -e subsystem
+
+3 - "libpcap" on HP-UX
If you want to use Ethereal to capture packets, you will have to install
"libpcap"; the INSTALL file for "libpcap" has several comments about
@@ -553,19 +569,3 @@ to a DL_HP_PPA_REQ request, and "pcap-dlpi.c"):
-3 - nettl support
-
-nettl is used on HP-UX to trace various streams based subsystems. Ethereal
-can read nettl files containing IP frames (NS_LS_IP subsystem) and LAPB
-frames (SX25L2 subsystem).
-It has been tested with files generated on HP-UX 9.04 and 10.20.
-
-Use the following commands to generate a trace (cf. nettl(1M)):
-
-# IP capture. 0x30000000 means PDU in and PDU out :
-nettl -tn 0x30000000 -e NS_LS_IP -f tracefile
-# X25 capture. You must specify an interface :
-nettl -tn 0x30000000 -e SX25l2 -d /dev/x25_0 -f tracefile
-# stop capture. subsystem is NS_LS_IP or SX25L2 :
-nettl -tf -e subsystem
-