5f58f409d1f8151e5a207c4118a3919a445840e7
[obnox/wireshark/wip.git] / doc / tethereal.pod.template
1
2 =head1 NAME
3
4 tethereal - Dump and analyze network traffic
5
6 =head1 SYNOPSYS
7
8 B<tethereal>
9 S<[ B<-a> capture autostop condition ] ...>
10 S<[ B<-b> number of ring buffer files ]>
11 S<[ B<-c> count ]>
12 S<[ B<-D> ]>
13 S<[ B<-f> capture filter expression ]>
14 S<[ B<-F> file format ]>
15 S<[ B<-h> ]>
16 S<[ B<-i> interface ]> 
17 S<[ B<-l> ]>
18 S<[ B<-n> ]>
19 S<[ B<-N> resolving flags ]>
20 S<[ B<-o> preference setting ] ...>
21 S<[ B<-p> ]>
22 S<[ B<-q> ]>
23 S<[ B<-r> infile ]>
24 S<[ B<-R> display filter expression ]>
25 S<[ B<-s> snaplen ]>
26 S<[ B<-S> ]>
27 S<[ B<-t> time stamp format ]>
28 S<[ B<-v> ]>
29 S<[ B<-V> ]>
30 S<[ B<-w> savefile ]>
31 S<[ B<-x> ]>
32 S<[ B<-z> statistics-string ]>
33 S<[ filter expression ]>
34
35 =head1 DESCRIPTION
36
37 B<Tethereal> is a network protocol analyzer.  It lets you capture packet
38 data from a live network, or read packets from a previously saved
39 capture file, either printing a decoded form of those packets to the
40 standard output or writing the packets to a file.  B<Tethereal>'s native
41 capture file format is B<libpcap> format, which is also the format used
42 by B<tcpdump> and various other tools.  In addition, B<Tethereal> can
43 read capture files from B<snoop> and B<atmsnoop>, Shomiti/Finisar
44 B<Surveyor>, Novell B<LANalyzer>, Network General/Network Associates
45 DOS-based B<Sniffer> (compressed or uncompressed), Microsoft B<Network
46 Monitor>, AIX's B<iptrace>, Cinco Networks B<NetXRay>, Network
47 Associates Windows-based B<Sniffer>, AG Group/WildPackets
48 B<EtherPeek>/B<TokenPeek>/B<AiroPeek>, B<RADCOM>'s WAN/LAN analyzer,
49 B<Lucent/Ascend> router debug output, HP-UX's B<nettl>, the dump output
50 from B<Toshiba's> ISDN routers, the output from B<i4btrace> from the
51 ISDN4BSD project, the output in B<IPLog> format from the Cisco Secure
52 Intrusion Detection System, B<pppd logs> (pppdump format), the output
53 from VMS's B<TCPIPtrace> utility, the text output from the B<DBS
54 Etherwatch> VMS utility, traffic capture files from Visual Networks'
55 Visual UpTime, and the output from B<CoSine> L2 debug.  There is no 
56 need to tell B<Tethereal> what type of file you are reading; it will 
57 determine the file type by itself. B<Tethereal> is also capable of 
58 reading any of these file formats if they are compressed using gzip.  
59 B<Tethereal> recognizes this directly from the file; the '.gz' extension 
60 is not required for this purpose.
61
62 If the B<-w> flag is not specified, B<Tethereal> prints a decoded form
63 of the packets it captures or reads; otherwise, it writes those packets
64 to the file specified by that flag.
65
66 When printing a decoded form of packets, B<Tethereal> prints, by
67 default, a summary line containing the fields specified by the
68 preferences file (which are also the fields displayed in the packet list
69 pane in B<Ethereal>), although if it's printing packets as it captures
70 them, rather than printing packets from a saved capture file, it won't
71 print the "frame number" field.  If the B<-V> flag is specified, it
72 prints intead a protocol tree, showing all the fields of all protocols
73 in the packet.
74
75 When writing packets to a file, B<Tethereal>, by default, writes the
76 file in B<libpcap> format, and writes all of the packets it sees to the
77 output file.  The B<-F> flag can be used to specify the format in which
78 to write the file; it can write the file in B<libpcap> format (standard
79 B<libpcap> format, a modified format used by some patched versions of
80 B<libpcap>, or the format used by Red Hat Linux 6.1), B<snoop> format,
81 uncompressed B<Sniffer> format, Microsoft B<Network Monitor> 1.x format,
82 the format used by Windows-based versions of the B<Sniffer>
83 software, and the format used by Visual Networks' software.
84
85 Read filters in B<Tethereal>, which allow you to select which packets
86 are to be decoded or written to a file, are very powerful; more fields
87 are filterable in B<Tethereal> than in other protocol analyzers, and the
88 syntax you can use to create your filters is richer.  As B<Tethereal>
89 progresses, expect more and more protocol fields to be allowed in read
90 filters.
91
92 Packet capturing is performed with the pcap library.  The capture filter
93 syntax follows the rules of the pcap library.  This syntax is different
94 from the read filter syntax.  A read filter can also be specified when
95 capturing, and only packets that pass the read filter will be displayed
96 or saved to the output file; note, however, that capture filters are much
97 more efficient than read filters, and it may be more difficult for
98 B<Tethereal> to keep up with a busy network if a read filter is
99 specified for a live capture.
100
101 Compressed file support uses (and therefore requires) the zlib library. 
102 If the zlib library is not present, B<Tethereal> will compile, but will
103 be unable to read compressed files.
104
105 A capture or read filter can either be specified with the B<-f> or B<-R>
106 option, respectively, in which case the entire filter expression must be
107 specified as a single argument (which means that if it contains spaces,
108 it must be quoted), or can be specified with command-line arguments
109 after the option arguments, in which case all the arguments after the
110 filter arguments are treated as a filter expression.  If the filter is
111 specified with command-line arguments after the option arguments, it's a
112 capture filter if a capture is being done (i.e., if no B<-r> flag was
113 specified) and a read filter if a capture file is being read (i.e., if a
114 B<-r> flag was specified).
115
116 =head1 OPTIONS
117
118 =over 4
119
120 =item -a
121
122 Specify a criterion that specifies when B<Tethereal> is to stop writing
123 to a capture file.  The criterion is of the form I<test>B<:>I<value>,
124 where I<test> is one of:
125
126 =for man .RS
127
128 =for html <P><DL>
129
130 =item duration
131
132 Stop writing to a capture file after I<value> seconds have elapsed.
133
134 =item filesize
135
136 Stop writing to a capture file after it reaches a size of I<value>
137 kilobytes (where a kilobyte is 1000 bytes, not 1024 bytes).
138
139 =for man .RE
140
141 =for html </DL>
142
143 =item -b
144
145 If a maximum capture file size was specified, cause B<Tethereal> to run
146 in "ring buffer" mode, with the specified number of files.  In "ring
147 buffer" mode, B<Tethereal> will write to several capture files; the name
148 of the first file, while the capture is in progress, will be the name
149 specified by the B<-w> flag, and subsequent files with have .I<n>
150 appended, with I<n> counting up.
151
152 When the first capture file fills up, B<Tethereal> will switch to
153 writing to the next file, until it fills up the last file, at which
154 point it'll discard the data in the first file and start writing to that
155 file.  When that file fills up, B<Tethereal> will discard the data in
156 the next file and start writing to it, and so on.
157
158 When the capture completes, the files will be renamed to have names
159 based on the number of the file and on the date and time at which
160 packets most recently started being written to the file.
161
162 You can only save files in B<libpcap> format when using a ring buffer.
163
164 =item -c
165
166 Set the default number of packets to read when capturing live
167 data.
168
169 =item -D
170
171 Print a list of the interfaces on which B<Tethereal> can capture, and
172 exit.  Note that "can capture" means that B<Tethereal> was able to open
173 that device to do a live capture; if, on your system, a program doing a
174 network capture must be run from an account with special privileges (for
175 example, as root), then, if B<Tethereal> is run with the B<-D> flag and
176 is not run from such an account, it will not list any interfaces.
177
178 =item -f
179
180 Set the capture filter expression.
181
182 =item -F
183
184 Set the file format of the output capture file.
185
186 =item -h
187
188 Print the version and options and exits.
189
190 =item -i
191
192 Set the name of the network interface to use for live packet capture. 
193 It should match one of the names listed in "B<netstat -i>" or
194 "B<ifconfig -a>".  If no interface is specified, B<Tethereal> searches
195 the list of interfaces, choosing the first non-loopback interface if
196 there are any non-loopback interfaces, and choosing the first loopback
197 interface if there are no non-loopback interfaces; if there are no
198 interfaces, B<Tethereal> reports an error and doesn't start the capture.
199
200 =item -l
201
202 Flush the standard output after the information for each packet is
203 printed.  (This is not, strictly speaking, line-buffered if B<-V>
204 was specified; however, it is the same as line-buffered if B<-V> wasn't
205 specified, as only one line is printed for each packet, and, as B<-l> is
206 normally used when piping a live capture to a program or script, so that
207 output for a packet shows up as soon as the packet is seen and
208 dissected, it should work just as well as true line-buffering.  We do
209 this as a workaround for a deficiency in the Microsoft Visual C++ C
210 library.)
211
212 This may be useful when piping the output of B<Tethereal> to another
213 program, as it means that the program to which the output is piped will
214 see the dissected data for a packet as soon as B<Tethereal> sees the
215 packet and generates that output, rather than seeing it only when the
216 standard output buffer containing that data fills up.
217
218 =item -n
219
220 Disable network object name resolution (such as hostname, TCP and UDP port
221 names).
222
223 =item -N
224
225 Turn on name resolving for particular types of addresses and port
226 numbers, with name resolving for other types of addresses and port
227 numbers turned off; the argument is a string that may contain the
228 letters B<m> to enable MAC address resolution, B<n> to enable network
229 address resolution, and B<t> to enable transport-layer port number
230 resolution.  This overrides B<-n> if both B<-N> and B<-n> are present.
231
232 =item -o
233
234 Set a preference value, overriding the default value and any value read
235 from a preference file.  The argument to the flag is a string of the
236 form I<prefname>B<:>I<value>, where I<prefname> is the name of the
237 preference (which is the same name that would appear in the preference
238 file), and I<value> is the value to which it should be set.
239
240 =item -p
241
242 I<Don't> put the interface into promiscuous mode.  Note that the
243 interface might be in promiscuous mode for some other reason; hence,
244 B<-p> cannot be used to ensure that the only traffic that is captured is
245 traffic sent to or from the machine on which B<Tethereal> is running,
246 broadcast traffic, and multicast traffic to addresses received by that
247 machine.
248
249 =item -q
250
251 Don't display the continuous count of packets captured that is normally
252 shown when saving a capture to a file; instead, just display, at the end
253 of the capture, a count of packets captured.
254
255 =item -r
256
257 Read packet data from I<infile>.
258
259 =item -R
260
261 Cause the specified filter (which uses the syntax of read filters,
262 rather than that of capture filters) to be applied before printing a
263 decoded form of packets or writing packets to a file; packets not
264 matching the filter are discarded rather than being printed or written.
265
266 =item -s
267
268 Set the default snapshot length to use when capturing live data. 
269 No more than I<snaplen> bytes of each network packet will be read into
270 memory, or saved to disk.
271
272 =item -S
273
274 Decode and display packets even while writing to file.
275
276 =item -t
277
278 Set the format of the packet timestamp printed in summary lines.  The
279 format can be one of 'r' (relative), 'a' (absolute), 'ad' (absolute with
280 date), or 'd' (delta).  The relative time is the time elapsed between
281 the first packet and the current packet.  The absolute time is the
282 actual time the packet was captured, with no date displayed; the
283 absolute date and time is the actual time and date the packet was
284 captured.  The delta time is the time since the previous packet was
285 captured.  The default is relative.
286
287 =item -v
288
289 Print the version and exit.
290
291 =item -V
292
293 Cause B<Tethereal> to print a protocol tree for each packet rather than
294 a one-line summary of the packet.
295
296 =item -w
297
298 Write packet data to I<savefile> or to the standard output if
299 I<savefile> is "-".
300
301 =item -x
302
303 Cause B<Tethereal> to print a hex and ASCII dump of the packet data
304 after printing the summary or protocol tree.
305
306 =item -z
307
308 Get B<Tethereal> to collect various types of statistics and display the result
309 after finishing reading the capture file.
310 Currently implemented statistics are:
311
312 B<-z> rpc,rtt,I<program>,I<version>[,I<filter>]
313
314 Collect call/reply RTT data for I<program>/I<version>.  Data collected
315 is number of calls for each procedure, MinRTT, MaxRTT and AvgRTT. 
316 Example: use B<-z rpc,rtt,100003,3> to collect data for NFS v3.  This
317 option can be used multiple times on the command line. 
318
319 If the optional filterstring is provided, the stats will only be calculated
320 on those calls that match that filter.
321 Example: use B<-z rpc,rtt,100003,3,nfs.fh.hash==0x12345678> to collect NFS v3
322 RTT statistics for a specific file.
323
324
325 B<-z> rpc,programs
326
327 Collect call/reply RTT data for all known ONC-RPC programs/versions.  
328 Data collected is number of calls for each protocol/version, MinRTT, 
329 MaxRTT and AvgRTT. 
330 This option can only be used once on the command line.
331
332 =back
333
334 =head1 CAPTURE FILTER SYNTAX
335
336 See manual page of tcpdump(8).
337
338 =head1 READ FILTER SYNTAX
339
340 Read filters help you remove the noise from a packet trace and let you
341 see only the packets that interest you.  If a packet meets the
342 requirements expressed in your read filter, then it is printed.  Read
343 filters let you compare the fields within a protocol against a specific
344 value, compare fields against fields, and to check the existence of
345 specified fields or protocols.
346
347 The simplest read filter allows you to check for the existence of a
348 protocol or field.  If you want to see all packets which contain the IPX
349 protocol, the filter would be "ipx".  (Without the quotation marks) To
350 see all packets that contain a Token-Ring RIF field, use "tr.rif".
351
352 Fields can also be compared against values.  The comparison operators
353 can be expressed either through C-like symbols, or through English-like
354 abbreviations:
355
356     eq, ==    Equal
357     ne, !=    Not equal
358     gt, >     Greater than
359     lt, <     Less Than
360     ge, >=    Greater than or Equal to
361     le, <=    Less than or Equal to
362
363 Furthermore, each protocol field is typed. The types are:
364
365     Unsigned integer (either 8-bit, 16-bit, 24-bit, or 32-bit)
366     Signed integer (either 8-bit, 16-bit, 24-bit, or 32-bit)
367     Boolean
368     Ethernet address (6 bytes)
369     Byte string (n-number of bytes)
370     IPv4 address
371     IPv6 address
372     IPX network number
373     String (text)
374     Double-precision floating point number
375
376 An integer may be expressed in decimal, octal, or hexadecimal notation. 
377 The following three read filters are equivalent:
378
379     frame.pkt_len > 10
380     frame.pkt_len > 012
381     frame.pkt_len > 0xa
382
383 Boolean values are either true or false.  In a read filter expression
384 testing the value of a Boolean field, "true" is expressed as 1 or any
385 other non-zero value, and "false" is expressed as zero.  For example, a
386 token-ring packet's source route field is boolean.  To find any
387 source-routed packets, a read filter would be:
388
389     tr.sr == 1
390
391 Non source-routed packets can be found with:
392
393     tr.sr == 0
394
395 Ethernet addresses, as well as a string of bytes, are represented in hex
396 digits.  The hex digits may be separated by colons, periods, or hyphens:
397
398     fddi.dst eq ff:ff:ff:ff:ff:ff
399     ipx.srcnode == 0.0.0.0.0.1
400     eth.src == aa-aa-aa-aa-aa-aa
401
402 If a string of bytes contains only one byte, then it is represented as
403 an unsigned integer.  That is, if you are testing for hex value 'ff' in
404 a one-byte byte-string, you must compare it agains '0xff' and not 'ff'. 
405
406 IPv4 addresses can be represented in either dotted decimal notation, or
407 by using the hostname:
408
409     ip.dst eq www.mit.edu
410     ip.src == 192.168.1.1
411
412 IPv4 addresses can be compared with the same logical relations as numbers:
413 eq, ne, gt, ge, lt, and le.  The IPv4 address is stored in host order,
414 so you do not have to worry about how the endianness of an IPv4 address
415 when using it in a read filter.
416
417 Classless InterDomain Routing (CIDR) notation can be used to test if an
418 IPv4 address is in a certain subnet.  For example, this display filter
419 will find all packets in the 129.111 Class-B network:
420
421     ip.addr == 129.111.0.0/16
422
423 Remember, the number after the slash represents the number of bits used
424 to represent the network.  CIDR notation can also be used with
425 hostnames, in this example of finding IP addresses on the same Class C
426 network as 'sneezy':
427
428     ip.addr eq sneezy/24
429
430 The CIDR notation can only be used on IP addresses or hostnames, not in
431 variable names.  So, a display filter like "ip.src/24 == ip.dst/24" is
432 not valid.  (yet)
433
434 IPX networks are represented by unsigned 32-bit integers.  Most likely
435 you will be using hexadecimal when testing for IPX network values:
436
437     ipx.srcnet == 0xc0a82c00
438
439 A slice operator also exists.  You can check the substring
440 (byte-string) of any protocol or field.  For example, you can filter on
441 the vendor portion of an ethernet address (the first three bytes) like
442 this:
443
444     eth.src[0:3] == 00:00:83
445
446 If the length of your byte-slice is only one byte, then it is still
447 represented in hex, but without the preceding "0x": 
448
449     llc[3] == aa
450
451 You can use the slice operator on a protocol name, too.  And
452 remember, the "frame" protocol encompasses the entire packet, allowing
453 you to look at the nth byte of a packet regardless of its frame type
454 (Ethernet, token-ring, etc.).
455
456     token[0:5] ne 0.0.0.1.1
457     ipx[0:2] == ff:ff
458     llc[3:1] eq 0xaa
459
460 The following syntax governs slices:
461
462         [i:j]   i = start_offset, j = length
463         [i-j]   i = start_offet, j = end_offset, inclusive.
464         [i]     i = start_offset, length = 1
465         [:j]    start_offset = 0, length = j
466         [i:]    start_offset = i, end_offset = end_of_field
467
468 Offsets and lengths can be negative, in which case they indicate the
469 offset from the B<end> of the field.  Here's how to check the last 4
470 bytes of a frame:
471
472     frame[-4:4] == 0.1.2.3
473
474 or
475
476     frame[-4:] == 0.1.2.3
477
478 You can create complex concatenations of slices using the comma operator:
479
480         field[1,3-5,9:] == 01:03:04:05:09:0a:0b
481
482 All the above tests can be combined together with logical expressions. 
483 These too are expressable in C-like syntax or with English-like
484 abbreviations:
485
486     and, &&   Logical AND
487     or, ||    Logical OR
488     not, !    Logical NOT
489
490 Expressions can be grouped by parentheses as well.  The following are
491 all valid read filter expression:
492
493     tcp.port == 80 and ip.src == 192.168.2.1
494     not llc
495     (ipx.srcnet == 0xbad && ipx.srnode == 0.0.0.0.0.1) || ip
496     tr.dst[0:3] == 0.6.29 xor tr.src[0:3] == 0.6.29
497
498 A special caveat must be given regarding fields that occur more than
499 once per packet.  "ip.addr" occurs twice per IP packet, once for the
500 source address, and once for the destination address.  Likewise,
501 tr.rif.ring fields can occur more than once per packet.  The following
502 two expressions are not equivalent:
503
504         ip.addr ne 192.168.4.1
505     not ip.addr eq 192.168.4.1
506
507 The first filter says "show me IP packets where an ip.addr exists that
508 does not equal 192.168.4.1".  That is, as long as one ip.addr in the
509 packet does not equal 192.168.44.1, the packet passes the read
510 filter.  The second filter "don't show me any packets that have at least
511 one ip.addr field equal to 192.168.4.1".  If one ip.addr is 192.168.4.1,
512 the packet does not pass.  If B<neither> ip.addr fields is 192.168.4.1,
513 then the packet passes.
514
515 It is easy to think of the 'ne' and 'eq' operators as having an implict
516 "exists" modifier when dealing with multiply-recurring fields.  "ip.addr
517 ne 192.168.4.1" can be thought of as "there exists an ip.addr that does
518 not equal 192.168.4.1".
519
520 Be careful with multiply-recurring fields; they can be confusing.
521
522 Care must also be taken when using the read filter to remove noise
523 from the packet trace. If you want to e.g. filter out all IP multicast
524 packets to address 224.1.2.3, then using:
525
526     ip.dst ne 224.1.2.3
527
528 may be too restrictive. Filtering with "ip.dst" selects only those
529 B<IP> packets that satisfy the rule. Any other packets, including all
530 non-IP packets, will not printed. For printing also the non-IP
531 packets, you can use one of the following two expressions:
532
533     not ip or ip.dst ne 224.1.2.3
534     not ip.addr eq 224.1.2.3
535
536 The first filter uses "not ip" to include all non-IP packets and then
537 lets "ip.dst ne 224.1.2.3" to filter out the unwanted IP packets. The
538 second filter has already been explained above where filtering with
539 multiply occuring fields was discussed.
540
541 The following is a table of protocol and protocol fields that are
542 filterable in B<Tethereal>.  The abbreviation of the protocol or field is
543 given.  This abbreviation is what you use in the read filter.  The
544 type of the field is also given.
545
546 =insert_dfilter_table
547
548 =head1 FILES
549
550 The F<ethereal.conf> file, which is installed in the F<etc> directory
551 under the main installation directory (for example, F</usr/local/etc>)
552 on UNIX-compatible systems, and in the main installation directory (for
553 example, F<C:\Program Files\Ethereal>) on Windows systems, and the
554 personal preferences file, which is F<$HOME/.ethereal/preferences> on
555 UNIX-compatible systems and F<%APPDATA%\Ethereal\preferences> (or, if
556 %APPDATA% isn't defined,
557 F<%USERPROFILE%\Application Data\Ethereal\preferences>) on
558 Windows systems, contain system-wide and personal preference settings,
559 respectively.  The file contains preference settings of the form
560 I<prefname>B<:>I<value>, one per line, where I<prefname> is the name of
561 the preference (which is the same name that would appear in the
562 preference file), and I<value> is the value to which it should be set;
563 white space is allowed between B<:> and I<value>.  A preference setting
564 can be continued on subsequent lines by indenting the continuation lines
565 with white space.  A B<#> character starts a comment that runs to the
566 end of the line.
567
568 The system-wide preference file is read first, if it exists, overriding
569 B<Tethereal>'s default values; the personal preferences file is then
570 read, if it exists, overriding default values and values read from the
571 system-wide preference file.
572
573 The F<ethers> file, which is found in the F</etc> directory on
574 UNIX-compatible systems, and in the main installation directory (for
575 example, F<C:\Program Files\Ethereal>) on Windows systems, is consulted
576 to correlate 6-byte hardware addresses to names.  If an address is not
577 found in the F<ethers> file, the F<$HOME/.ethereal/ethers> file on
578 UNIX-compatible systems, and the F<%APPDATA%\Ethereal\ethers> file (or, if
579 %APPDATA% isn't defined, the
580 F<%USERPROFILE%\Application Data\Ethereal\ethers> file) on Windows
581 systems is consulted next.  Each line contains one hardware
582 address and name, separated by whitespace.  The digits of the hardware
583 address are separated by either a colon (:), a dash (-), or a period
584 (.).  The following three lines are valid lines of an ethers file:
585
586   ff:ff:ff:ff:ff:ff          Broadcast
587   c0-00-ff-ff-ff-ff          TR_broadcast
588   00.00.00.00.00.00          Zero_broadcast
589
590 The F<manuf> file, which is installed in the F<etc> directory under the
591 main installation directory (for example, F</usr/local/etc>) on
592 UNIX-compatible systems, and in the main installation directory (for
593 example, F<C:\Program Files\Ethereal>) on Windows systems, matches the
594 3-byte vendor portion of a 6-byte hardware address with the
595 manufacturer's name; it can also contain well-known MAC addresses and
596 address ranges specified with a netmask.  The format of the file is the
597 same as the F<ethers> file, except that entries of the form
598
599   00:00:0C      Cisco
600
601 can be provided, with the 3-byte OUI and the name for a vendor, and
602 entries of the form
603
604   00-00-0C-07-AC/40     All-HSRP-routers
605
606 can be specified, with a MAC address and a mask indicating how many bits
607 of the address must match.  Trailing zero bytes can be omitted from
608 address ranges.  That entry, for example, will match addresses from
609 00-00-0C-07-AC-00 through 00-00-0C-07-AC-FF.  The mask need not be a
610 multiple of 8.
611
612 The F<ipxnets> file, which is found in the F</etc> directory on
613 UNIX-compatible systems, and in the main installation directory (for
614 example, F<C:\Program Files\Ethereal>) on Windows systems, correlates
615 4-byte IPX network numbers to names.  If a network number is not found
616 in the F<ipxnets> file, the F<$HOME/.ethereal/ipxnets> file on
617 UNIX-compatible systems, and the F<%APPDATA%\Ethereal\ipxnets> file (or,
618 if %APPDATA% isn't defined, the
619 F<%USERPROFILE%\Application Data\Ethereal\ipxnets> file)
620 on Windows systems, is consulted next.  The format is the same as the
621 F<ethers> file, except that each address if four bytes instead of six. 
622 Additionally, the address can be represented a single hexadecimal
623 number, as is more common in the IPX world, rather than four hex octets. 
624 For example, these four lines are valid lines of an ipxnets file.
625
626   C0.A8.2C.00              HR
627   c0-a8-1c-00              CEO
628   00:00:BE:EF              IT_Server1
629   110f                     FileServer3
630
631 =head1 SEE ALSO
632
633 I<ethereal(1)>, I<editcap(1)>, I<tcpdump(8)>, I<pcap(3)>
634
635 =head1 NOTES
636
637 B<Tethereal> is part of the B<Ethereal> distribution.  The latest version
638 of B<Ethereal> can be found at B<http://www.ethereal.com>.
639
640 =head1 AUTHORS
641
642 B<Tethereal> uses the same packet dissection code that B<Ethereal> does,
643 as well as using many other modules from B<Ethereal>; see the list of
644 authors in the B<Ethereal> man page for a list of authors of that code.