]> The Tcpdump Group git mirrors - tcpdump/blob - CHANGES
Makefile: Run shellcheck for build_common.sh too. [skip ci]
[tcpdump] / CHANGES
1 Monthday, Month DD, YYYY by gharris and denis
2 Summary for 5.0.0 tcpdump release (so far!)
3 Refine protocol decoding for:
4 EIGRP: Get the packet header fields right.
5 OpenFlow 1.0: Fix indentation of PORT_MOD.
6 RIP: Make a couple trivial protocol updates.
7 NetFlow: Use tcp_flag_values[] for TCP flags.
8 OSPF: Update to match the Router Properties registry.
9 MPLS: Rename the "exp" field to "tc".
10 VQP: Do not print unknown error codes twice.
11 ZMTP: Replace custom code with bittok2str().
12 BFD: Add support for S-BFD and spell LAG in uppercase.
13 Source code:
14 Use %zu when printing a sizeof to squelch compiler warnings
15 (FIXME: somebody please wrap the line below just before the release)
16 AODV, AppleTalk, BOOTP, EGP, EIGRP, ForCES, Geneve, L2TP, NetFlow, NTP, OLSR, PGM, RIP, RSVP, SCTP, SNMP, TCP, UDP: Modernize packet parsing style
17 DCCP, EGP: Replace custom code with tok2str()
18 UDP: Clean up address and port printing.
19 AppleTalk: Declutter appletalk.h.
20 Introduce new ND_LCHECK*() macros to deduplicate more code.
21 IEEE 802.11: Simplify handle_action().
22 RPKI-Router: Refine length and bounds checks.
23 Building and testing:
24 Handle some Autoconf/make errors better.
25 Fix "make releasetar" on AIX and Solaris.
26
27 Wednesday, June 9, 2021 by gharris
28 Summary for 4.99.1 tcpdump release
29 Source code:
30 Squelch some compiler warnings
31 ICMP: Update the snapend for some nested IP packets.
32 MACsec: Update the snapend thus the ICV field is not payload
33 for the caller.
34 EIGRP: Fix packet header fields
35 SMB: Disable printer by default in CMake builds
36 OLSR: Print the protocol name even if the packet is invalid
37 MSDP: Print ": " before the protocol name
38 ESP: Remove padding, padding length and next header from the buffer
39 DHCPv6: Update the snapend for nested DHCPv6 packets
40 OpenFlow 1.0: Get snapend right for nested frames.
41 TCP: Update the snapend before decoding a MPTCP option
42 Ethernet, IEEE 802.15.4, IP, L2TP, TCP, ZEP: Add bounds checks
43 ForCES: Refine SPARSEDATA-TLV length check.
44 ASCII/hex: Use nd_trunc_longjmp() in truncation cases
45 GeoNet: Add a ND_TCHECK_LEN() call
46 Replace ND_TCHECK_/memcpy() pairs with GET_CPY_BYTES().
47 BGP: Fix overwrites of global 'astostr' temporary buffer
48 ARP: fix overwrites of static buffer in q922_string().
49 Frame Relay: have q922_string() handle errors better.
50 Building and testing:
51 Rebuild configure script when building release
52 Fix "make clean" for out-of-tree autotools builds
53 CMake: add stuff from CMAKE_PREFIX_PATH to PKG_CONFIG_PATH.
54 Documentation:
55 man: Update a reference as www.cifs.org is gone. [skip ci]
56 man: Update DNS sections
57 Solaris:
58 Fix a compile error with Sun C
59
60 Wednesday, December 30, 2020, by mcr@sandelman.ca, denis and fxl.
61 Summary for 4.99.0 tcpdump release
62 Improve the contents, wording and formatting of the man page.
63 Print unsupported link-layer protocol packets in hex.
64 Add support for new network protocols and DLTs: Arista, Autosar SOME/IP,
65 Broadcom LI and Ethernet switches tag, IEEE 802.15.9, IP-over-InfiniBand
66 (IPoIB), Linux SLL2, Linux vsockmon, MACsec, Marvell Distributed Switch
67 Architecture, OpenFlow 1.3, Precision Time Protocol (PTP), SSH, WHOIS,
68 ZigBee Encapsulation Protocol (ZEP).
69 Make protocol-specific updates for: AH, DHCP, DNS, ESP, FRF.16, HNCP,
70 ICMP6, IEEE 802.15.4, IPv6, IS-IS, Linux SLL, LLDP, LSP ping, MPTCP, NFS,
71 NSH, NTP, OSPF, OSPF6, PGM, PIM, PPTP, RADIUS, RSVP, Rx, SMB, UDLD,
72 VXLAN-GPE.
73 User interface:
74 Make SLL2 the default for Linux "any" pseudo-device.
75 Add --micro and --nano shorthands.
76 Add --count to print a counter only instead of decoding.
77 Add --print, to cause packet printing even with -w.
78 Add support for remote capture if libpcap supports it.
79 Display the "wireless" flag and connection status.
80 Flush the output packet buffer on a SIGUSR2.
81 Add the snapshot length to the "reading from file ..." message.
82 Fix local time printing (DST offset in timestamps).
83 Allow -C arguments > 2^31-1 GB if they can fit into a long.
84 Handle very large -f files by rejecting them.
85 Report periodic stats only when safe to do so.
86 Print the number of packets captured only as often as necessary.
87 With no -s, or with -s 0, don't specify the snapshot length with newer
88 versions of libpcap.
89 Improve version and usage message printing.
90 Building and testing:
91 Install into bindir, not sbindir.
92 autoconf: replace --with-system-libpcap with --disable-local-libpcap.
93 Require the compiler to support C99.
94 Better detect and use various C compilers and their features.
95 Add CMake as the second build system.
96 Make out-of-tree builds more reliable.
97 Use pkg-config to detect libpcap if available.
98 Improve Windows support.
99 Add more tests and improve the scripts that run them.
100 Test both with "normal" and "x87" floating-point.
101 Eliminate dependency on libdnet.
102 FreeBSD:
103 Print a proper error message about monitor mode VAP.
104 Use libcasper if available.
105 Fix failure to capture on RDMA device.
106 Include the correct capsicum header.
107 Source code:
108 Start the transition to longjmp() for packet truncation handling.
109 Introduce new helper functions, including GET_*(), nd_print_protocol(),
110 nd_print_invalid(), nd_print_trunc(), nd_trunc_longjmp() and others.
111 Put integer signedness right in many cases.
112 Introduce nd_uint*, nd_mac_addr, nd_ipv4 and nd_ipv6 types to fix
113 alignment issues, especially on SPARC.
114 Fix many C compiler, Coverity, UBSan and cppcheck warnings.
115 Fix issues detected with AddressSanitizer.
116 Remove many workarounds for older compilers and OSes.
117 Add a sanity check on packet header length.
118 Add and remove plenty of bounds checks.
119 Clean up pcap_findalldevs() call to find the first interface.
120 Use a short timeout, rather than immediate mode, for text output.
121 Handle DLT_ENC files *not* written on the same OS and byte-order host.
122 Add, and use, macros to do locale-independent case mapping.
123 Use a table instead of getprotobynumber().
124 Get rid of ND_UNALIGNED and ND_TCHECK().
125 Make roundup2() generally available.
126 Resync SMI list against Wireshark.
127 Fix many typos.
128
129 Friday, September 20, 2019, by mcr@sandelman.ca
130 A huge thank you to Denis, Francois-Xavier and Guy who did much of the heavy lifting.
131 Summary for 4.9.3 tcpdump release
132 Fix buffer overflow/overread vulnerabilities:
133 CVE-2017-16808 (AoE)
134 CVE-2018-14468 (FrameRelay)
135 CVE-2018-14469 (IKEv1)
136 CVE-2018-14470 (BABEL)
137 CVE-2018-14466 (AFS/RX)
138 CVE-2018-14461 (LDP)
139 CVE-2018-14462 (ICMP)
140 CVE-2018-14465 (RSVP)
141 CVE-2018-14881 (BGP)
142 CVE-2018-14464 (LMP)
143 CVE-2018-14463 (VRRP)
144 CVE-2018-14467 (BGP)
145 CVE-2018-10103 (SMB - partially fixed, but SMB printing disabled)
146 CVE-2018-10105 (SMB - too unreliably reproduced, SMB printing disabled)
147 CVE-2018-14880 (OSPF6)
148 CVE-2018-16451 (SMB)
149 CVE-2018-14882 (RPL)
150 CVE-2018-16227 (802.11)
151 CVE-2018-16229 (DCCP)
152 CVE-2018-16301 (was fixed in libpcap)
153 CVE-2018-16230 (BGP)
154 CVE-2018-16452 (SMB)
155 CVE-2018-16300 (BGP)
156 CVE-2018-16228 (HNCP)
157 CVE-2019-15166 (LMP)
158 CVE-2019-15167 (VRRP)
159 Fix for cmdline argument/local issues:
160 CVE-2018-14879 (tcpdump -V)
161
162 Sunday September 3, 2017 denis@ovsienko.info
163 Summary for 4.9.2 tcpdump release
164 Do not use getprotobynumber() for protocol name resolution. Do not do
165 any protocol name resolution if -n is specified.
166 Improve errors detection in the test scripts.
167 Fix a segfault with OpenSSL 1.1 and improve OpenSSL usage.
168 Clean up IS-IS printing.
169 Fix buffer overflow vulnerabilities:
170 CVE-2017-11543 (SLIP)
171 CVE-2017-13011 (bittok2str_internal)
172 Fix infinite loop vulnerabilities:
173 CVE-2017-12989 (RESP)
174 CVE-2017-12990 (ISAKMP)
175 CVE-2017-12995 (DNS)
176 CVE-2017-12997 (LLDP)
177 Fix buffer over-read vulnerabilities:
178 CVE-2017-11541 (safeputs)
179 CVE-2017-11542 (PIMv1)
180 CVE-2017-12893 (SMB/CIFS)
181 CVE-2017-12894 (lookup_bytestring)
182 CVE-2017-12895 (ICMP)
183 CVE-2017-12896 (ISAKMP)
184 CVE-2017-12897 (ISO CLNS)
185 CVE-2017-12898 (NFS)
186 CVE-2017-12899 (DECnet)
187 CVE-2017-12900 (tok2strbuf)
188 CVE-2017-12901 (EIGRP)
189 CVE-2017-12902 (Zephyr)
190 CVE-2017-12985 (IPv6)
191 CVE-2017-12986 (IPv6 routing headers)
192 CVE-2017-12987 (IEEE 802.11)
193 CVE-2017-12988 (telnet)
194 CVE-2017-12991 (BGP)
195 CVE-2017-12992 (RIPng)
196 CVE-2017-12993 (Juniper)
197 CVE-2017-12994 (BGP)
198 CVE-2017-12996 (PIMv2)
199 CVE-2017-12998 (ISO IS-IS)
200 CVE-2017-12999 (ISO IS-IS)
201 CVE-2017-13000 (IEEE 802.15.4)
202 CVE-2017-13001 (NFS)
203 CVE-2017-13002 (AODV)
204 CVE-2017-13003 (LMP)
205 CVE-2017-13004 (Juniper)
206 CVE-2017-13005 (NFS)
207 CVE-2017-13006 (L2TP)
208 CVE-2017-13007 (Apple PKTAP)
209 CVE-2017-13008 (IEEE 802.11)
210 CVE-2017-13009 (IPv6 mobility)
211 CVE-2017-13010 (BEEP)
212 CVE-2017-13012 (ICMP)
213 CVE-2017-13013 (ARP)
214 CVE-2017-13014 (White Board)
215 CVE-2017-13015 (EAP)
216 CVE-2017-11543 (SLIP)
217 CVE-2017-13016 (ISO ES-IS)
218 CVE-2017-13017 (DHCPv6)
219 CVE-2017-13018 (PGM)
220 CVE-2017-13019 (PGM)
221 CVE-2017-13020 (VTP)
222 CVE-2017-13021 (ICMPv6)
223 CVE-2017-13022 (IP)
224 CVE-2017-13023 (IPv6 mobility)
225 CVE-2017-13024 (IPv6 mobility)
226 CVE-2017-13025 (IPv6 mobility)
227 CVE-2017-13026 (ISO IS-IS)
228 CVE-2017-13027 (LLDP)
229 CVE-2017-13028 (BOOTP)
230 CVE-2017-13029 (PPP)
231 CVE-2017-13030 (PIM)
232 CVE-2017-13031 (IPv6 fragmentation header)
233 CVE-2017-13032 (RADIUS)
234 CVE-2017-13033 (VTP)
235 CVE-2017-13034 (PGM)
236 CVE-2017-13035 (ISO IS-IS)
237 CVE-2017-13036 (OSPFv3)
238 CVE-2017-13037 (IP)
239 CVE-2017-13038 (PPP)
240 CVE-2017-13039 (ISAKMP)
241 CVE-2017-13040 (MPTCP)
242 CVE-2017-13041 (ICMPv6)
243 CVE-2017-13042 (HNCP)
244 CVE-2017-13043 (BGP)
245 CVE-2017-13044 (HNCP)
246 CVE-2017-13045 (VQP)
247 CVE-2017-13046 (BGP)
248 CVE-2017-13047 (ISO ES-IS)
249 CVE-2017-13048 (RSVP)
250 CVE-2017-13049 (Rx)
251 CVE-2017-13050 (RPKI-Router)
252 CVE-2017-13051 (RSVP)
253 CVE-2017-13052 (CFM)
254 CVE-2017-13053 (BGP)
255 CVE-2017-13054 (LLDP)
256 CVE-2017-13055 (ISO IS-IS)
257 CVE-2017-13687 (Cisco HDLC)
258 CVE-2017-13688 (OLSR)
259 CVE-2017-13689 (IKEv1)
260 CVE-2017-13690 (IKEv2)
261 CVE-2017-13725 (IPv6 routing headers)
262
263 Sunday July 23, 2017 denis@ovsienko.info
264 Summary for 4.9.1 tcpdump release
265 CVE-2017-11108/Fix bounds checking for STP.
266 Make assorted documentation updates and fix a few typos in tcpdump output.
267 Fixup -C for file size >2GB (GH #488).
268 Show AddressSanitizer presence in version output.
269 Fix a bug in test scripts (exposed in GH #613).
270 On FreeBSD adjust Capsicum capabilities for netmap.
271 On Linux fix a use-after-free when the requested interface does not exist.
272
273 Wednesday January 18, 2017 devel.fx.lebail@orange.fr
274 Summary for 4.9.0 tcpdump release
275 General updates:
276 Fix some heap overflows found with American Fuzzy Lop by Hanno Boeck and others
277 (More information in the log with CVE-2016-* and CVE-2017-*)
278 Change the way protocols print link-layer addresses (Fix heap overflows
279 in CALM-FAST and GeoNetworking printers)
280 Pass correct caplen value to ether_print() and some other functions
281 Fix lookup_nsap() to match what isonsap_string() expects
282 Clean up relative time stamp printing (Fix an array overflow)
283 Fix some alignment issues with GCC on Solaris 10 SPARC
284 Add some ND_TTEST_/ND_TCHECK_ macros to simplify writing bounds checks
285 Add a fn_printztn() which returns the number of bytes processed
286 Add nd_init() and nd_cleanup() functions. Improve libsmi support
287 Add CONTRIBUTING file
288 Add a summary comment in all printers
289 Compile with more warning options in devel mode if supported (-Wcast-qual, ...)
290 Fix some leaks found by Valgrind/Memcheck
291 Fix a bunch of de-constifications
292 Squelch some Coverity warnings and some compiler warnings
293 Update Coverity and Travis-CI setup
294 Update Visual Studio files
295
296 Frontend:
297 Fix capsicum support to work with zerocopy buffers in bpf
298 Try opening interfaces by name first, then by name-as-index
299 Work around pcap_create() failures fetching time stamp type lists
300 Fix a segmentation fault with 'tcpdump -J'
301 Improve addrtostr6() bounds checking
302 Add exit_tcpdump() function
303 Don't drop CAP_SYS_CHROOT before chrooting
304 Fixes issue where statistics not reported when -G and -W options used
305
306 Updated printers:
307 802.11: Beginnings of 11ac radiotap support
308 802.11: Check the Protected bit for management frames
309 802.11: Do bounds checking on last_presentp before dereferencing it (Fix a heap overflow)
310 802.11: Fix the radiotap printer to handle the special bits correctly
311 802.11: If we have the MCS field, it's 11n
312 802.11: Only print unknown frame type or subtype messages once
313 802.11: Radiotap dBm values get printed as dB; Update a test output accordingly
314 802.11: Source and destination addresses were backwards
315 AH: Add a bounds check
316 AH: Report to our caller that dissection failed if a bounds check fails
317 AP1394: Print src > dst, not dst > src
318 ARP: Don't assume the target hardware address is <= 6 octets long (Fix a heap overflow)
319 ATALK: Add bounds and length checks (Fix heap overflows)
320 ATM: Add some bounds checks (Fix a heap overflow)
321 ATM: Fix an incorrect bounds check
322 BFD: Update specification from draft to RFC 5880
323 BFD: Update to print optional authentication field
324 BGP: Add support for the AIGP attribute (RFC7311)
325 BGP: Print LARGE_COMMUNITY Path Attribute
326 BGP: Update BGP numbers from IANA; Print minor values for FSM notification
327 BOOTP: Add a bounds check
328 Babel: Add decoder for source-specific extension
329 CDP: Filter out non-printable characters
330 CFM: Fixes to match the IEEE standard, additional bounds and length checks
331 CSLIP: Add more bounds checks (Fix a heap overflow)
332 ClassicalIPoATM: Add a bounds check on LLC+SNAP header (Fix a heap overflow)
333 DHCP: Fix MUDURL and TZ options
334 DHCPv6: Process MUDURL and TZ options
335 DHCPv6: Update Status Codes with RFCs/IANA names
336 DNS: Represent the "DNSSEC OK" bit as "DO" instead of "OK". Add a test case
337 DTP: Improve packet integrity checks
338 EGP: Fix bounds checks
339 ESP: Don't use OpenSSL_add_all_algorithms() in OpenSSL 1.1.0 or later
340 Ethernet: Add some bounds checking before calling isoclns_print (Fix a heap overflow)
341 Ethernet: Print the Length/Type field as length when needed
342 FDDI: Fix -e output for FDDI
343 FR: Add some packet-length checks and improve Q.933 printing (Fix heap overflows)
344 GRE: Add some bounds checks (Fix heap overflows)
345 Geneve: Fix error message with invalid option length; Update list option classes
346 HNCP: Fix incorrect time interval format. Fix handling of IPv4 prefixes
347 ICMP6: Fetch a 32-bit big-endian quantity with EXTRACT_32BITS()
348 IGMP: Add a length check
349 IP: Add a bounds check (Fix a heap overflow)
350 IP: Check before fetching the protocol version (Fix a heap overflow)
351 IP: Don't try to dissect if IP version != 4 (Fix a heap overflow)
352 IP: Stop processing IPPROTO_ values once we hit IPPROTO_IPCOMP
353 IPComp: Check whether we have the CPI before we fetch it (Fix a heap overflow)
354 IPoFC: Fix -e output (IP-over-Fibre Channel)
355 IPv6: Don't overwrite the destination IPv6 address for routing headers
356 IPv6: Fix header printing
357 IPv6: Stop processing IPPROTO_ values once we hit IPPROTO_IPCOMP
358 ISAKMP: Clean up parsing of IKEv2 Security Associations
359 ISOCLNS/IS-IS: Add support for Purge Originator Identifier (RFC6232) and test cases
360 ISOCLNS/IS-IS: Don't overwrite packet data when checking the signature
361 ISOCLNS/IS-IS: Filter out non-printable characters
362 ISOCLNS/IS-IS: Fix segmentation faults
363 ISOCLNS/IS-IS: Have signature_verify() do the copying and clearing
364 ISOCLNS: Add some bounds checks
365 Juniper: Make sure a Juniper header TLV isn't bigger than what's left in the packet (Fix a heap overflow)
366 LLC/SNAP: With -e, print the LLC header before the SNAP header; without it, cut the SNAP header
367 LLC: Add a bounds check (Fix a heap overflow)
368 LLC: Clean up printing of LLC packets
369 LLC: Fix the printing of RFC 948-style IP packets
370 LLC: Skip the LLC and SNAP headers with -x for 802.11 and some other protocols
371 LLDP: Implement IANA OUI and LLDP MUD option
372 MPLS LSP ping: Update printing for RFC 4379, bug fixes, more bounds checks
373 MPLS: "length" is now the *remaining* packet length
374 MPLS: Add bounds and length checks (Fix a heap overflow)
375 NFS: Don't assume the ONC RPC header is nicely aligned
376 NFS: Don't overflow the Opaque_Handle buffer (Fix a segmentation fault)
377 NFS: Don't run past the end of an NFSv3 file handle
378 OLSR: Add a test to cover a HNA sgw case
379 OLSR: Fix 'Advertised networks' count
380 OLSR: Fix printing of smart-gateway HNAs in IPv4
381 OSPF: Add a bounds check for the Hello packet options
382 OSPF: Do more bounds checking
383 OSPF: Fix a segmentation fault
384 OSPF: Fix printing 'ospf_topology_values' default
385 OTV: Add missing bounds checks
386 PGM: Print the formatted IP address, not the raw binary address, as a string
387 PIM: Add some bounds checking (Fix a heap overflow)
388 PIMv2: Fix checksumming of Register messages
389 PPP: Add some bounds checks (Fix a heap overflow)
390 PPP: Report invalid PAP AACK/ANAK packets
391 Q.933: Add a missing bounds check
392 RADIUS: Add Value 13 "VLAN" to Tunnel-Type attribute
393 RADIUS: Filter out non-printable characters
394 RADIUS: Translate UDP/1700 as RADIUS
395 RESP: Do better checking of RESP packets
396 RPKI-RTR: Add a return value check for "fn_printn" call
397 RPKI-RTR: Remove printing when truncated condition already detected
398 RPL: Fix 'Consistency Check' control code
399 RPL: Fix suboption print
400 RSVP: An INTEGRITY object in a submessage covers only the submessage
401 RSVP: Fix an infinite loop; Add bounds and length checks
402 RSVP: Fix some if statements missing brackets
403 RSVP: Have signature_verify() do the copying and clearing
404 RTCP: Add some bounds checks
405 RTP: Add some bounds checks, fix two segmentation faults
406 SCTP: Do more bounds checking
407 SFLOW: Fix bounds checking
408 SLOW: Fix bugs, add checks
409 SMB: Before fetching the flags2 field, make sure we have it
410 SMB: Do bounds checks on NBNS resource types and resource data lengths
411 SNMP: Clean up the "have libsmi but no modules loaded" case
412 SNMP: Clean up the object abbreviation list and fix the code to match them
413 SNMP: Do bounds checks when printing character and octet strings
414 SNMP: Improve ASN.1 bounds checks
415 SNMP: More bounds and length checks
416 STP: Add a bunch of bounds checks, and fix some printing (Fix heap overflows)
417 STP: Filter out non-printable characters
418 TCP: Add bounds and length checks for packets with TCP option 20
419 TCP: Correct TCP option Kind value for TCP Auth and add SCPS-TP
420 TCP: Fix two bounds checks (Fix heap overflows)
421 TCP: Make sure we have the data offset field before fetching it (Fix a heap overflow)
422 TCP: Put TCP-AO option decoding right
423 TFTP: Don't use strchr() to scan packet data (Fix a heap overflow)
424 Telnet: Add some bounds checks
425 TokenRing: Fix -e output
426 UDLD: Fix an infinite loop
427 UDP: Add a bounds check (Fix a heap overflow)
428 UDP: Check against the packet length first
429 VAT: Add some bounds checks
430 VTP: Add a test on Mgmt Domain Name length
431 VTP: Add bounds checks and filter out non-printable characters
432 VXLAN: Add a bound check and a test case
433 ZeroMQ: Fix an infinite loop
434
435 Tuesday October 25, 2016 mcr@sandelman.ca
436 Summary for 4.8.1 tcpdump release
437 Fix "-x" for Apple PKTAP and PPI packets
438 Improve separation frontend/backend (tcpdump/libnetdissect)
439 Fix display of timestamps with -tt, -ttt and -ttttt options
440 Add support for the Marvell Extended Distributed Switch Architecture header
441 Use PRIx64 to print a 64-bit number in hex.
442 Printer for HNCP (RFCs 7787 and 7788).
443 dagid is always an IPv6 address, not an opaque 128-bit string, and other fixes to RPL printer.
444 RSVP: Add bounds and length checks
445 OSPF: Do more bounds checking
446 Handle OpenSSL 1.1.x.
447 Initial support for the REdis Serialization Protocol known as RESP.
448 Add printing function for Generic Protocol Extension for VXLAN
449 draft-ietf-nvo3-vxlan-gpe-01
450 Network Service Header: draft-ietf-sfc-nsh-01
451 Don't recompile the filter if the new file has the same DLT.
452 Pass an adjusted struct pcap_pkthdr to the sub-printer.
453 Add three test cases for already fixed CVEs
454 CVE-2014-8767: OLSR
455 CVE-2014-8768: Geonet
456 CVE-2014-8769: AODV
457 Don't do the DDP-over-UDP heuristic first: GitHub issue #499.
458 Use the new debugging routines in libpcap.
459 Harmonize TCP source or destination ports tests with UDP ones
460 Introduce data types to use for integral values in packet structures.
461 RSVP: Fix an infinite loop
462 Support of Type 3 and Type 4 LISP packets.
463 Don't require IPv6 library support in order to support IPv6 addresses.
464 Many many changes to support libnetdissect usage.
465 Add a test that makes unaligned accesses: GitHub issue #478.
466 add a DNSSEC test case: GH #445 and GH #467.
467 BGP: add decoding of ADD-PATH capability
468 fixes to LLC header printing, and RFC948-style IP packets
469
470 Friday April 10, 2015 guy@alum.mit.edu
471 Summary for 4.7.4 tcpdump release
472 RPKI to Router Protocol: Fix Segmentation Faults and other problems
473 RPKI to Router Protocol: print strings with fn_printn()
474 wb: fix some bounds checks
475
476 Wednesday March 11, 2015 mcr@sandelman.ca
477 Summary for 4.7.3 tcpdump release
478 Capsicum fixes for FreeBSD 10
479
480 Tuesday March 10, 2015 mcr@sandelman.ca
481 Summary for 4.7.2 tcpdump release
482 DCCP: update Packet Types with RFC4340/IANA names
483 fixes for CVE-2015-0261: IPv6 mobility header check issue
484 fixes for CVE-2015-2153, 2154, 2155: kday packets
485
486 Friday Nov. 12, 2014 guy@alum.mit.edu
487 Summary for 4.7.0 tcpdump release
488 changes to hex printing of CDP packets
489 Fix PPI printing
490 Radius: update Packet Type Codes and Attribute Types with RFC/IANA names
491 Add a routine to print "text protocols", and add FTP/HTTP/SMTP/RTSP support.
492 improvements to telnet printer, even if not -v
493 omit length for bcp, print-tcp uses it
494 formatting fixes for a bunch of protocols
495 new bounds checks for a number of protocols
496 split netflow 1,6, and 6 dissector up.
497 added geneve dissector
498 CVE-2014-9140 PPP dissector fixed.
499
500 Tuesday Sep. 2, 2014 mcr@sandelman.ca
501 Summary for 4.6.2 tcpdump release
502 fix out-of-source-tree builds: find libpcap that is out of source
503 better configure check for libsmi
504
505 Saturday Jul. 19, 2014 mcr@sandelman.ca
506 Summary for 4.6.1 tcpdump release
507 added FreeBSD capsicum
508 add a short option '#', same as long option '--number'
509
510 Wednesday Jul. 2, 2014 mcr@sandelman.ca
511 Summary for 4.6.0 tcpdump release
512 all of tcpdump is now using the new "NDO" code base (Thanks Denis!)
513 nflog, mobile, forces, pptp, AODV, AHCP, IPv6, OSPFv4, RPL, DHCPv6 enhancements/fixes
514 M3UA decode added.
515 many new test cases: 82 in 4.5.1 to 133 in 4.6.0
516 many improvements to travis continuous integration system: OSX, and Coverity options
517 cleaned up some unnecessary header files
518 Added bittok2str().
519 a number of unaligned access faults fixed
520 -A flag does not consider CR to be printable anymore
521 fx.lebail took over coverity baby sitting
522 default snapshot size increased to 256K for accommodate USB captures
523 WARNING: this release contains a lot of very worthwhile code churn.
524
525 Wednesday Jan. 15, 2014 guy@alum.mit.edu
526 Summary for 4.5.2 tcpdump release
527 Man page fix
528 Fix crashes on SPARC
529
530 Monday Nov. 11, 2013 mcr@sandelman.ca
531 Summary for 4.5.1 tcpdump release
532 CREDITS file fixes
533
534 Thursday Nov. 7, 2013 mcr@sandelman.ca and guy@alum.mit.edu.
535 Summary for 4.5.0 tcpdump release
536 some NFSv4 fixes for printing
537 fix printing of unknown TCP options, and tcp fast-open
538 fixes for syslog parser
539 some gcc-version-specific flag tuning
540 adopt MacOS deprecation workarounds for openssl
541 improvements to babel printing
542 add OpenFlow 1.0 (no SSL) and test cases
543 GeoNet printer.
544 added STBC Rx support
545 improvements to DHCPv6 decoder
546 clarify which autoconf is needed
547 Point users to the the-tcpdump-group repository on GitHub rather
548 than the mcr repository
549 Add MSDP printer.
550 Fixed IPv6 check on Solaris and other OSes requiring extra
551 networking libraries.
552 Add support for VXLAN (draft-mahalingam-dutt-dcops-vxlan-03),
553 and add "vxlan" as an option for -T.
554 Add support for OTV (draft-hasmit-otv-04).
555 fixes for DLT_IEEE802_11_RADIO datalink types
556 added MPTCP decoder
557
558 Saturday April 6, 2013 guy@alum.mit.edu.
559 Summary for 4.4.0 tcpdump release
560 RPKI-RTR (RFC6810) is now official (TCP Port 323)
561 Fix detection of OpenSSL libcrypto.
562 Add DNSSL (RFC6106) support.
563 Add "radius" as an option for -T.
564 Update Action codes for handle_action function according to
565 802.11s amendment.
566 Decode DHCPv6 AFTR-Name option (RFC6334).
567 Updates for Babel.
568 Fix printing of infinite lifetime in ICMPv6.
569 Added support for SPB, SPBM Service Identifier, and Unicast
570 Address sub-TLV in ISIS.
571 Decode RIPv2 authentication up to RFC4822.
572 Fix RIP Request/full table decoding issues.
573 On Linux systems with cap-ng.h, drop root privileges
574 using Linux Capabilities.
575 Add support for reading multiple files.
576 Add MS NLB heartbeat printer.
577 Separate multiple nexthops in BGP.
578
579 Wednesday November 28, 2012 guy@alum.mit.edu.
580 Summary for 4.3.1 tcpdump release
581 Print "LLDP, length N" for LLDP packets even when not in verbose
582 mode, so something is printed even if only the timestamp is
583 present
584 Document "-T carp"
585 Print NTP poll interval correctly (it's an exponent, so print
586 both its raw value and 2^value)
587 Document that "-e" is used to get MAC addresses
588 More clearly document that you need to escape or quote
589 backslashes in filter expressions on the command line
590 Fix some "the the" in the man page
591 Use the right maximum path length
592 Don't treat 192_1_2, when passed to -i, as an interface number
593
594 Friday April 3, 2012. mcr@sandelman.ca.
595 Summary for 4.3.0 tcpdump release
596 fixes for forces: SPARSE data (per RFC 5810)
597 some more test cases added
598 updates to documentation on -l, -U and -w flags.
599 Fix printing of BGP optional headers.
600 Tried to include DLT_PFSYNC support, failed due to headers required.
601 added TIPC support.
602 Fix LLDP Network Policy bit definitions.
603 fixes for IGMPv3's Max Response Time: it is in units of 0.1 second.
604 SIGUSR1 can be used rather than SIGINFO for stats
605 permit -n flag to affect print-ip for protocol numbers
606 ND_OPT_ADVINTERVAL is in milliseconds, not seconds
607 Teach PPPoE parser about RFC 4638
608
609
610 Friday December 9, 2011. guy@alum.mit.edu.
611 Summary for 4.2.1 tcpdump release
612 Only build the Babel printer if IPv6 is enabled.
613 Support Babel on port 6696 as well as 6697.
614 Include ppi.h in release tarball.
615 Include all the test files in the release tarball, and don't
616 "include" test files that no longer exist.
617 Don't assume we have <rpc/rpc.h> - check for it.
618 Support "-T carp" as a way of dissecting IP protocol 112 as CARP
619 rather than VRRP.
620 Support Hilscher NetAnalyzer link-layer header format.
621 Constify some pointers and fix compiler warnings.
622 Get rid of never-true test.
623 Fix an unintended fall-through in a case statement in the ARP
624 printer.
625 Fix several cases where sizeof(sizeof(XXX)) was used when just
626 sizeof(XXX) was intended.
627 Make stricter sanity checks in the ES-IS printer.
628 Get rid of some GCCisms that caused builds to fai with compilers
629 that don't support them.
630 Fix typo in man page.
631 Added length checks to Babel printer.
632
633 Sunday July 24, 2011. mcr@sandelman.ca.
634 Summary for 4.2.+
635 merged 802.15.4 decoder from Dmitry Eremin-Solenikov <dbaryshkov
636 at gmail dot com>
637 updates to forces for new port numbers
638 Use "-H", not "-h", for the 802.11s option. (-h always help)
639 Better ICMPv6 checksum handling.
640 add support for the RPKI/Router Protocol, per -ietf-sidr-rpki-rtr-12
641 get rid of uuencoded pcap test files, git can do binary.
642 sFlow changes for 64-bit counters.
643 fixes for PPI packet header handling and printing.
644 Add DCB Exchange protocol (DCBX) version 1.01.
645 Babel dissector, from Juliusz Chroboczek and Grégoire Henry.
646 improvements to radiotap for rate values > 127.
647 Many improvements to ForCES decode, including fix SCTP TML port
648 updated RPL type code to RPL-17 draft
649 Improve printout of DHCPv6 options.
650 added support and test case for QinQ (802.1q VLAN) packets
651 Handle DLT_IEEE802_15_4_NOFCS like DLT_IEEE802_15_4.
652 Build fixes for Sparc and other machines with alignment restrictions.
653 Merged changes from Debian package.
654 PGM: Add ACK decoding and add PGMCC DATA and FEEDBACK options.
655 Build fixes for OSX (Snow Leopard and others)
656 Add support for IEEE 802.15.4 packets
657
658 Tue. July 20, 2010. guy@alum.mit.edu.
659 Summary for 4.1.2 tcpdump release
660 If -U is specified, flush the file after creating it, so it's
661 not zero-length
662 Fix TCP flags output description, and some typos, in the man
663 page
664 Add a -h flag, and only attempt to recognize 802.11s mesh
665 headers if it's set
666 When printing the link-layer type list, send *all* output to
667 stderr
668 Include the CFLAGS setting when configure was run in the
669 compiler flags
670
671 Thu. April 1, 2010. guy@alum.mit.edu.
672 Summary for 4.1.1 tcpdump release
673 Fix build on systems with PF, such as FreeBSD and OpenBSD.
674 Don't blow up if a zero-length link-layer address is passed to
675 linkaddr_string().
676
677 Thu. March 11, 2010. ken@netfunctional.ca/guy@alum.mit.edu.
678 Summary for 4.1.0 tcpdump release
679 Fix printing of MAC addresses for VLAN frames with a length
680 field
681 Add some additional bounds checks and use the EXTRACT_ macros
682 more
683 Add a -b flag to print the AS number in BGP packets in ASDOT
684 notation rather than ASPLAIN notation
685 Add ICMPv6 RFC 5006 support
686 Decode the access flags in NFS access requests
687 Handle the new DLT_ for memory-mapped USB captures on Linux
688 Make the default snapshot (-s) the maximum
689 Print name of device (when -L is used)
690 Support for OpenSolaris (and SXCE build 125 and later)
691 Print new TCP flags
692 Add support for RPL DIO
693 Add support for TCP User Timeout (UTO)
694 Add support for non-standard Ethertypes used by 3com PPPoE gear
695 Add support for 802.11n and 802.11s
696 Add support for Transparent Ethernet Bridge ethertype in GRE
697 Add 4 byte AS support for BGP printer
698 Add support for the MDT SAFI 66 BG printer
699 Add basic IPv6 support to print-olsr
700 Add USB printer
701 Add printer for ForCES
702 Handle frames with an FCS
703 Handle 802.11n Control Wrapper, Block Acq Req and Block Ack frames
704 Fix TCP sequence number printing
705 Report 802.2 packets as 802.2 instead of 802.3
706 Don't include -L/usr/lib in LDFLAGS
707 On x86_64 Linux, look in lib64 directory too
708 Lots of code clean ups
709 Autoconf clean ups
710 Update testcases to make output changes
711 Fix compiling with/out smi (--with{,out}-smi)
712 Fix compiling without IPv6 support (--disable-ipv6)
713
714 Mon. October 27, 2008. ken@netfunctional.ca. Summary for 4.0.0 tcpdump release
715 Add support for Bluetooth Sniffing
716 Add support for Realtek Remote Control Protocol (openrrcp.org.ru)
717 Add support for 802.11 AVS
718 Add support for SMB over TCP
719 Add support for 4 byte BGP AS printing
720 Add support for compiling on case-insensitive file systems
721 Add support for ikev2 printing
722 Update support for decoding AFS
723 Update DHCPv6 printer
724 Use newer libpcap API's (allows -B option on all platforms)
725 Add -I to turn on monitor mode
726 Bugfixes in lldp, lspping, dccp, ESP, NFS printers
727 Cleanup unused files and various cruft
728
729 Mon. September 10, 2007. ken@xelerance.com. Summary for 3.9.8 tcpdump release
730 Rework ARP printer
731 Rework OSPFv3 printer
732 Add support for Frame-Relay ARP
733 Decode DHCP Option 121 (RFC 3442 Classless Static Route)
734 Decode DHCP Option 249 (MS Classless Static Route) the same as Option 121
735 TLV: Add support for Juniper .pcap extensions
736 Print EGP header in new-world-order style
737 Converted print-isakmp.c to NETDISSECT
738 Moved AF specific stuff into af.h
739 Test subsystem now table driven, and saves outputs and diffs to one place
740 Require <net/pfvar.h> for pf definitions - allows reading of pflog formatted
741 libpcap files on an OS other than where the file was generated
742
743
744 Wed. July 23, 2007. mcr@xelerance.com. Summary for 3.9.7 libpcap release
745
746 NFS: Print unsigned values as such.
747 RX: parse safely.
748 BGP: fixes for IPv6-less builds.
749 801.1ag: use standard codepoint.
750 use /dev/bpf on systems with such a device.
751 802.11: print QoS data, avoid dissect of no-data frame, ignore padding.
752 smb: make sure that we haven't gone past the end of the captured data.
753 smb: squelch an uninitialized complaint from coverity.
754 NFS: from NetBSD; don't interpret the reply as a possible NFS reply
755 if it got MSG_DENIED.
756 BGP: don't print TLV values that didn't fit, from www.digit-labs.org.
757 revised INSTALL.txt about libpcap dependency.
758
759 Wed. April 25, 2007. ken@xelerance.com. Summary for 3.9.6 tcpdump release
760 Update man page to reflect changes to libpcap
761 Changes to both TCP and IP Printer Output
762 Fix a potential buffer overflow in the 802.11 printer
763 Print basic info about a few more Cisco LAN protocols.
764 mDNS cleanup
765 ICMP MPLS rework of the extension code
766 bugfix: use the correct codepoint for the OSPF simple text auth token
767 entry, and use safeputs to print the password.
768 Add support in pflog for additional values
769 Add support for OIF RSVP Extensions UNI 1.0 Rev. 2 and additional RSVP objects
770 Add support for the Message-id NACK c-type.
771 Add support for 802.3ah loopback ctrl msg
772 Add support for Multiple-STP as per 802.1s
773 Add support for rapid-SPT as per 802.1w
774 Add support for CFM Link-trace msg, Link-trace-Reply msg,
775 Sender-ID tlv, private tlv, port, interface status
776 Add support for unidirectional link detection as per
777 https://tools.ietf.org/id/draft-foschiano-udld-02.txt
778 Add support for the olsr protocol as per RFC 3626 plus the LQ
779 extensions from olsr.org
780 Add support for variable-length checksum in DCCP, as per section 9 of
781 RFC 4340.
782 Add support for per-VLAN spanning tree and per-VLAN rapid spanning tree
783 Add support for Multiple-STP as per 802.1s
784 Add support for the cisco propriatry 'dynamic trunking protocol'
785 Add support for the cisco proprietary VTP protocol
786 Update dhcp6 options table as per IETF standardization activities
787
788
789 Tue. September 19, 2006. ken@xelerance.com. Summary for 3.9.5 tcpdump release
790
791 Fix compiling on AIX (, at end of ENUM)
792 Updated list of DNS RR typecodes
793 Use local Ethernet defs on WIN32
794 Add support for Frame-Relay ARP
795 Fixes for compiling under MSVC++
796 Add support for parsing Juniper .pcap files
797 Add support for FRF.16 Multilink Frame-Relay (DLT_MFR)
798 Rework the OSPFv3 printer
799 Fix printing for 4.4BSD/NetBSD NFS Filehandles
800 Add support for Cisco style NLPID encapsulation
801 Add cisco prop. eigrp related, extended communities
802 Add support for BGP signaled VPLS
803 Cleanup the bootp printer
804 Add support for PPP over Frame-Relay
805 Add some bounds checking to the IP options code, and clean up
806 the options output a bit.
807 Add additional modp groups to ISAKMP printer
808 Add support for Address-Withdraw and Label-Withdraw Msgs
809 Add support for the BFD Discriminator TLV
810 Fixes for 64bit compiling
811 Add support for PIMv2 checksum verification
812 Add support for further dissection of the IPCP Compression Option
813 Add support for Cisco's proposed VQP protocol
814 Add basic support for keyed authentication TCP option
815 Lots of minor cosmetic changes to output printers
816
817
818 Mon. September 19, 2005. ken@xelerance.com. Summary for 3.9.4 tcpdump release
819 Decoder support for more Juniper link-layer types
820 Fix a potential buffer overflow (although it can't occur in
821 practice).
822 Fix the handling of unknown management frame types in the 802.11
823 printer.
824 Add FRF.16 support, fix various Frame Relay bugs.
825 Add support for RSVP integrity objects, update fast-reroute
826 object printer to latest spec.
827 Clean up documentation of vlan filter expression, document mpls
828 filter expression.
829 Document new pppoed and pppoes filter expressions.
830 Update diffserver-TE codepoints as per RFC 4124.
831 Spelling fixes in ICMPv6.
832 Don't require any fields other than flags to be present in IS-IS
833 restart signaling TLVs, and only print the system ID in
834 those TLVs as system IDs, not as node IDs.
835 Support for DCCP.
836
837 Tue. July 5, 2005. ken@xelerance.com. Summary for 3.9.3 tcpdump release
838
839 Option to chroot() when dropping privs
840 Fixes for compiling on nearly every platform,
841 including improved 64bit support
842 Many new testcases
843 Support for sending packets
844 Many compliation fixes on most platforms
845 Fixes for recent version of GCC to eliminate warnings
846 Improved Unicode support
847
848 Decoders & DLT Changes, Updates and New:
849 AES ESP support
850 Juniper ATM, FRF.15, FRF.16, PPPoE,
851 ML-FR, ML-PIC, ML-PPP, PL-PPP, LS-PIC
852 GGSN,ES,MONITOR,SERVICES
853 L2VPN
854 Axent Raptor/Symantec Firewall
855 TCP-MD5 (RFC 2385)
856 ESP-in-UDP (RFC 3948)
857 ATM OAM
858 LMP, LMP Service Discovery
859 IP over FC
860 IP over IEEE 1394
861 BACnet MS/TP
862 SS7
863 LDP over TCP
864 LACP, MARKER as per 802.3ad
865 PGM (RFC 3208)
866 LSP-PING
867 G.7041/Y.1303 Generic Framing Procedure
868 EIGRP-IP, EIGRP-IPX
869 ICMP6
870 Radio - via radiotap
871 DHCPv6
872 HDLC over PPP
873
874 Tue. March 30, 2004. mcr@sandelman.ottawa.on.ca. Summary for 3.8.3 release
875
876 No changes from 3.8.2. Version bumped only to maintain consistency
877 with libpcap 0.8.3.
878
879 Mon. March 29, 2004. mcr@sandelman.ottawa.on.ca. Summary for 3.8.2 release
880
881 Fixes for print-isakmp.c CVE: CAN-2004-0183, CAN-2004-0184
882 https://web.archive.org/web/20160328035955/https://www.rapid7.com/resources/advisories/R7-0017.jsp
883 IP-over-IEEE1394 printing.
884 some MINGW32 changes.
885 updates for autoconf 2.5
886 fixes for print-aodv.c - check for too short packets
887 formatting changes to print-ascii for hex output.
888 check for too short packets: print-bgp.c, print-bootp.c, print-cdp.c,
889 print-chdlc.c, print-domain.c, print-icmp.c, print-icmp6.c,
890 print-ip.c, print-lwres.c, print-ospf.c, print-pim.c,
891 print-ppp.c,print-pppoe.c, print-rsvp.c, print-wb.c
892 print-ether.c - better handling of unknown types.
893 print-isoclns.c - additional decoding of types.
894 print-llc.c - strings for LLC names added.
895 print-pfloc.c - various enhancements
896 print-radius.c - better decoding to strings.
897
898 Wed. November 12, 2003. mcr@sandelman.ottawa.on.ca. Summary for 3.8 release
899
900 changed syntax of -E argument so that multiple SAs can be decrypted
901 fixes for Digital Unix headers and Documentation
902 __attribute__ fixes
903 CDP changes from Terry Kennedy <terry@tmk.com>.
904 IPv6 mobility updates from Kazushi Sugyo <sugyo@pb.jp.nec.com>
905 Fixes for ASN.1 decoder for 2.100.3 forms.
906 Added a count of packets received and processed to clarify numbers.
907 Incorporated WinDUMP patches for Win32 builds.
908 PPPoE payload length headers.
909 Fixes for HP C compiler builds.
910 Use new pcap_breakloop() and pcap_findalldevs() if we can.
911 BGP output split into multiple lines.
912 Fixes to 802.11 decoding.
913 Fixes to PIM decoder.
914 SuperH is a CPU that can't handle unaligned access. Many fixes for
915 unaligned access work.
916 Fixes to Frame-Relay decoder for Q.933/922 frames.
917 Clarified when Solaris can do captures as non-root.
918 Added tests/ subdir for examples/regression tests.
919 New -U flag. -flush stdout after every packet
920 New -A flag -print ascii only
921 support for decoding IS-IS inside Cisco HDLC Frames
922 more verbosity for tftp decoder
923 mDNS decoder
924 new BFD decoder
925 cross compilation patches
926 RFC 3561 AODV support.
927 UDP/TCP pseudo-checksum properly for source-route options.
928 sanitized all files to modified BSD license
929 Add support for RFC 2625 IP-over-Fibre Channel.
930 fixes for DECnet support.
931 Support RFC 2684 bridging of Ethernet, 802.5 Token Ring, and FDDI.
932 RFC 2684 encapsulation of BPDUs.
933
934 Tuesday, February 25, 2003. fenner@research.att.com. 3.7.2 release
935
936 Fixed infinite loop when parsing invalid isakmp packets.
937 (reported by iDefense; already fixed in CVS)
938 Fixed infinite loop when parsing invalid BGP packets.
939 Fixed buffer overflow with certain invalid NFS packets.
940 Pretty-print unprintable network names in 802.11 printer.
941 Handle truncated nbp (appletalk) packets.
942 Updated DHCPv6 printer to match draft-ietf-dhc-dhcpv6-22.txt
943 Print IP protocol name even if we don't have a printer for it.
944 Print IP protocol name or number for fragments.
945 Print the whole MPLS label stack, not just the top label.
946 Print request header and file handle for NFS v3 FSINFO and PATHCONF
947 requests.
948 Fix NFS packet truncation checks.
949 Handle "old" DR-Priority and Bidir-Capable PIM HELLO options.
950 Handle unknown RADIUS attributes properly.
951 Fix an ASN.1 parsing error that would cause e.g. the OID
952 2.100.3 to be misrepresented as 4.20.3 .
953
954 Monday, January 21, 2002. mcr@sandelman.ottawa.on.ca. Summary for 3.7 release
955 keyword "ipx" added.
956 Better OSI/802.2 support on Linux.
957 IEEE 802.11 support, from clenahan@fortresstech.com, achirica@ttd.net.
958 LLC SAP support for FDDI/token ring/RFC-1483 style ATM
959 BXXP protocol was replaced by the BEEP protocol;
960 improvements to SNAP demux.
961 Changes to "any" interface documentation.
962 Documentation on pcap_stats() counters.
963 Fix a memory leak found by Miklos Szeredi - pcap_ether_aton().
964 Added MPLS encapsulation decoding per RFC3032.
965 DNS dissector handles TKEY, TSIG and IXFR.
966 adaptive SLIP interface patch from Igor Khristophorov <igor@atdot.org>
967 SMB printing has much improved bounds checks
968 OUI 0x0000f8 decoded as encapsulated ethernet for Cisco-custom bridging
969 Zephyr support, from Nickolai Zeldovich <kolya@MIT.EDU>.
970 Solaris - devices with digits in them. Stefan Hudson <hudson@mbay.net>
971 IPX socket 0x85be is for Cisco EIGRP over IPX.
972 Improvements to fragmented ESP handling.
973 SCTP support from Armando L. Caro Jr. <acaro@mail.eecis.udel.edu>
974 Linux ARPHDR_ATM support fixed.
975 Added a "netbeui" keyword, which selects NetBEUI packets.
976 IPv6 ND improvements, MobileIP dissector, 2292bis-02 for RA option.
977 Handle ARPHDR_HDLC from Marcus Felipe Pereira <marcus@task.com.br>.
978 Handle IPX socket 0x553 -> NetBIOS-over-IPX socket, "nwlink-dgm"
979 Better Linux libc5 compat.
980 BIND9 lwres dissector added.
981 MIPS and SPARC get strict alignment macros (affects print-bgp.c)
982 Apple LocalTalk LINKTYPE_ reserved.
983 New time stamp formats documented.
984 DHCP6 updated to draft-22.txt spec.
985 ICMP types/codes now accept symbolic names.
986 Add SIGINFO handler from LBL
987 encrypted CIPE tunnels in IRIX, from Franz Schaefer <schaefer@mond.at>.
988 now we are -Wstrict-prototype clean.
989 NetBSD DLT_PPP_ETHER; adapted from Martin Husemann <martin@netbsd.org>.
990 PPPoE dissector cleaned up.
991 Support for LocalTalk hardware, from Uns Lider <unslider@miranda.org>.
992 In dissector, now the caller prints the IP addresses rather than proto.
993 cjclark@alum.mit.edu: print the IP proto for non-initial fragments.
994 LLC frames with a DSAP and LSAP of 0xe0 are IPX frames.
995 Linux cooked frames with a type value of LINUX_SLL_P_802_3 are IPX.
996 captures on the "any" device won't be done in promiscuous mode
997 Token Ring support on DLPI - Onno van der Linden <onno@simplex.nl>
998 ARCNet support, from NetBSD.
999 HSRP dissector, from Julian Cowley <julian@lava.net>.
1000 Handle (GRE-encapsulated) PPTP
1001 added -C option to rotate save file every optarg * 1,000,000 bytes.
1002 support for "vrrp" name - NetBSD, by Klaus Klein <kleink@netbsd.org>.
1003 PPTP support, from Motonori Shindo <mshindo@mshindo.net>.
1004 IS-IS over PPP support, from Hannes Gredler <hannes@juniper.net>.
1005 CNFP support for IPv6,format. Harry Raaymakers <harryr@connect.com.au>.
1006 ESP printing updated to RFC2406.
1007 HP-UX can now handle large number of PPAs.
1008 MSDP printer added.
1009 L2TP dissector improvements from Motonori Shindo.
1010
1011 Tuesday January 9, 2001. mcr@sandelman.ottawa.on.ca. Summary for 3.6 release
1012 Cleaned up documentation.
1013 Promisc mode fixes for Linux
1014 IPsec changes/cleanups.
1015 Alignment fixes for picky architectures
1016
1017 Removed dependency on native headers for packet dissectors.
1018 Removed Linux specific headers that were shipped
1019
1020 libpcap changes provide for exchanging capture files between
1021 systems. Save files now have well known PACKET_ values instead of
1022 depending upon system dependent mappings of DLT_* types.
1023
1024 Support for computing/checking IP and UDP/TCP checksums.
1025
1026 Updated autoconf stock files.
1027
1028 IPv6 improvements: dhcp (draft-15), mobile-ip6, ppp, ospf6,
1029
1030 Added dissector support for: ISOCLNS, Token Ring, IGMPv3, bxxp,
1031 timed, vrrp, radius, chdlc, cnfp, cdp, IEEE802.1d, raw-AppleTalk
1032
1033 Added filtering support for: VLANs, ESIS, ISIS
1034
1035 Improvements to: print-telnet, IPTalk, bootp/dhcp, ECN, PPP,
1036 L2TP, PPPoE
1037
1038 HP-UX 11.0 -- find the right dlpi device.
1039 Solaris 8 - IPv6 works
1040 Linux - Added support for an "any" device to capture on all interfaces
1041
1042 Security fixes: buffer overrun audit done. Strcpy replaced with
1043 strlcpy, sprintf replaced with snprintf.
1044 Look for lex problems, and warn about them.
1045
1046
1047 v3.5 Fri Jan 28 18:00:00 PST 2000
1048
1049 Bill Fenner <fenner@research.att.com>
1050 - switch to config.h for autoconf
1051 - unify RCSID strings
1052 - Updated PIMv1, PIMv2, DVMRP, IGMP parsers, add Cisco Auto-RP parser
1053 - Really fix the RIP printer
1054 - Fix MAC address -> name translation.
1055 - some -Wall -Wformat fixes
1056 - update makemib to parse much of SMIv2
1057 - Print TCP sequence # with -vv even if you normally wouldn't
1058 - Print as much of IP/TCP/UDP headers as possible even if truncated.
1059
1060 itojun@iijlab.net
1061 - -X will make a ascii dump. from netbsd.
1062 - telnet command sequence decoder (ff xx xx). from netbsd.
1063 - print-bgp.c: improve options printing. ugly code exists for
1064 unaligned option parsing (need some fix).
1065 - const poisoning in SMB decoder.
1066 - -Wall -Werror clean checks.
1067 - bring in KAME IPv6/IPsec decoding code.
1068
1069 Assar Westerlund <assar@sics.se>
1070 - SNMPv2 and SNMPv3 printer
1071 - If compiled with libsmi, tcpdump can load MIBs on the fly to decode
1072 SNMP packets.
1073 - Incorporate NFS parsing code from NetBSD. Adds support for nfsv3.
1074 - portability fixes
1075 - permit building in different directories.
1076
1077 Ken Hornstein <kenh@cmf.nrl.navy.mil>
1078 - bring in code at
1079 /afs/transarc.com/public/afs-contrib/tools/tcpdump for parsing
1080 AFS3 packets
1081
1082 Andrew Tridgell <tridge@linuxcare.com>
1083 - SMB printing code
1084
1085 Love <lha@stacken.kth.se>
1086 - print-rx.c: add code for printing MakeDir and StoreStatus. Also
1087 change date format to the right one.
1088
1089 Michael C. Richardson <mcr@sandelman.ottawa.on.ca>
1090 - Created tcpdump.org repository
1091
1092 v3.4 Sat Jul 25 12:40:55 PDT 1998
1093
1094 - Hardwire Linux slip support since it's too hard to detect.
1095
1096 - Redo configuration of "network" libraries (-lsocket and -lnsl) to
1097 deal with IRIX. Thanks to John Hawkinson (jhawk@mit.edu)
1098
1099 - Added -a which tries to translate network and broadcast addresses to
1100 names. Suggested by Rob van Nieuwkerk (robn@verdi.et.tudelft.nl)
1101
1102 - Added a configure option to disable gcc.
1103
1104 - Added a "raw" packet printer.
1105
1106 - Not having an interface address is no longer fatal. Requested by John
1107 Hawkinson.
1108
1109 - Rework signal setup to accommodate Linux.
1110
1111 - OSPF truncation check fix. Also display the type of OSPF packets
1112 using MD5 authentication. Thanks to Brian Wellington
1113 (bwelling@tis.com)
1114
1115 - Fix truncation check bugs in the Kerberos printer. Reported by Ezra
1116 Peisach (epeisach@mit.edu)
1117
1118 - Don't catch SIGHUP when invoked with nohup(1). Thanks to Dave Plonka
1119 (plonka@mfa.com)
1120
1121 - Specify full install target as a way of detecting if install
1122 directory does not exist. Thanks to Dave Plonka.
1123
1124 - Bit-swap FDDI addresses for BSD/OS too. Thanks to Paul Vixie
1125 (paul@vix.com)
1126
1127 - Fix off-by-one bug when testing size of ethernet packets. Thanks to
1128 Marty Leisner (leisner@sdsp.mc.xerox.com)
1129
1130 - Add a local autoconf macro to check for routines in libraries; the
1131 autoconf version is broken (it only puts the library name in the
1132 cache variable name). Thanks to John Hawkinson.
1133
1134 - Add a local autoconf macro to check for types; the autoconf version
1135 is broken (it uses grep instead of actually compiling a code fragment).
1136
1137 - Modified to support the new BSD/OS 2.1 PPP and SLIP link layer header
1138 formats.
1139
1140 - Extend OSF ip header workaround to versions 1 and 2.
1141
1142 - Fix some signed problems in the nfs printer. As reported by David
1143 Sacerdote (davids@silence.secnet.com)
1144
1145 - Detect group wheel and use it as the default since BSD/OS' install
1146 can't hack numeric groups. Reported by David Sacerdote.
1147
1148 - AIX needs special loader options. Thanks to Jonathan I. Kamens
1149 (jik@cam.ov.com)
1150
1151 - Fixed the nfs printer to print port numbers in decimal. Thanks to
1152 Kent Vander Velden (graphix@iastate.edu)
1153
1154 - Find installed libpcap in /usr/local/lib when not using gcc.
1155
1156 - Disallow network masks with non-network bits set.
1157
1158 - Attempt to detect "egcs" versions of gcc.
1159
1160 - Add missing closing double quotes when displaying bootp strings.
1161 Reported by Viet-Trung Luu (vluu@picard.math.uwaterloo.ca)
1162
1163 v3.3 Sat Nov 30 20:56:27 PST 1996
1164
1165 - Added Linux support.
1166
1167 - GRE encapsulated packet printer thanks to John Hawkinson
1168 (jhawk@mit.edu)
1169
1170 - Rewrite gmt2local() to avoid problematic os dependencies.
1171
1172 - Suppress nfs truncation message on errors.
1173
1174 - Add missing m4 quoting in AC_LBL_UNALIGNED_ACCESS autoconf macro.
1175 Reported by Joachim Ott (ott@ardala.han.de)
1176
1177 - Enable "ip_hl vs. ip_vhl" workaround for OSF4 too.
1178
1179 - Print arp hardware type in host order. Thanks to Onno van der Linden
1180 (onno@simplex.nl)
1181
1182 - Avoid solaris compiler warnings. Thanks to Bruce Barnett
1183 (barnett@grymoire.crd.ge.com)
1184
1185 - Fix rip printer to not print one more route than is actually in the
1186 packet. Thanks to Jean-Luc Richier (Jean-Luc.Richier@imag.fr) and
1187 Bill Fenner (fenner@parc.xerox.com)
1188
1189 - Use autoconf endian detection since BYTE_ORDER isn't defined on all systems.
1190
1191 - Fix dvmrp printer truncation checks and add a dvmrp probe printer.
1192 Thanks to Danny J. Mitzel (mitzel@ipsilon.com)
1193
1194 - Rewrite ospf printer to improve truncation checks.
1195
1196 - Don't parse tcp options past the EOL. As noted by David Sacerdote
1197 (davids@secnet.com). Also, check tcp options to make sure they ar
1198 actually in the tcp header (in addition to the normal truncation
1199 checks). Fix the SACK code to print the N blocks (instead of the
1200 first block N times).
1201
1202 - Don't say really small UDP packets are truncated just because they
1203 aren't big enough to be a RPC. As noted by David Sacerdote.
1204
1205 v3.2.1 Sun Jul 14 03:02:26 PDT 1996
1206
1207 - Added rfc1716 icmp codes as suggested by Martin Fredriksson
1208 (martin@msp.se)
1209
1210 - Print mtu for icmp unreach need frag packets. Thanks to John
1211 Hawkinson (jhawk@mit.edu)
1212
1213 - Decode icmp router discovery messages. Thanks to Jeffrey Honig
1214 (jch@bsdi.com)
1215
1216 - Added a printer entry for DLT_IEEE802 as suggested by Tak Kushida
1217 (kushida@trl.ibm.co.jp)
1218
1219 - Check igmp checksum if possible. Thanks to John Hawkinson.
1220
1221 - Made changes for SINIX. Thanks to Andrej Borsenkow
1222 (borsenkow.msk@sni.de)
1223
1224 - Use autoconf's idea of the top level directory in install targets.
1225 Thanks to John Hawkinson.
1226
1227 - Avoid infinite loop in tcp options printing code. Thanks to Jeffrey
1228 Mogul (mogul@pa.dec.com)
1229
1230 - Avoid using -lsocket in IRIX 5.2 and earlier since it breaks snoop.
1231 Thanks to John Hawkinson.
1232
1233 - Added some more packet truncation checks.
1234
1235 - On systems that have it, use sigset() instead of signal() since
1236 signal() has different semantics on these systems.
1237
1238 - Fixed some more alignment problems on the alpha.
1239
1240 - Add code to massage unprintable characters in the domain and ipx
1241 printers. Thanks to John Hawkinson.
1242
1243 - Added explicit netmask support. Thanks to Steve Nuchia
1244 (steve@research.oknet.com)
1245
1246 - Add "sca" keyword (for DEC cluster services) as suggested by Terry
1247 Kennedy (terry@spcvxa.spc.edu)
1248
1249 - Add "atalk" keyword as suggested by John Hawkinson.
1250
1251 - Added an igrp printer. Thanks to Francis Dupont
1252 (francis.dupont@inria.fr)
1253
1254 - Print IPX net numbers in hex a la Novell Netware. Thanks to Terry
1255 Kennedy (terry@spcvxa.spc.edu)
1256
1257 - Fixed snmp extended tag field parsing bug. Thanks to Pascal Hennequin
1258 (pascal.hennequin@hugo.int-evry.fr)
1259
1260 - Added some ETHERTYPEs missing on some systems.
1261
1262 - Added truncated packet macros and various checks.
1263
1264 - Fixed endian problems with the DECnet printer.
1265
1266 - Use $CC when checking gcc version. Thanks to Carl Lindberg
1267 (carl_lindberg@blacksmith.com)
1268
1269 - Fixes for AIX (although this system is not yet supported). Thanks to
1270 John Hawkinson.
1271
1272 - Fix bugs in the autoconf misaligned accesses code fragment.
1273
1274 - Include sys/param.h to get BYTE_ORDER in a few places. Thanks to
1275 Pavlin Ivanov Radoslavov (pavlin@cs.titech.ac.jp)
1276
1277 v3.2 Sun Jun 23 02:28:10 PDT 1996
1278
1279 - Print new icmp unreachable codes as suggested by Martin Fredriksson
1280 (martin@msp.se). Also print code value when unknown for icmp redirect
1281 and time exceeded.
1282
1283 - Fix an alignment endian bug in getname(). Thanks to John Hawkinson.
1284
1285 - Define "new" domain record types if not found in arpa/nameserv.h.
1286 Resulted from a suggestion from John Hawkinson (jhawk@mit.edu). Also
1287 fixed an endian bug when printing mx record and added some new record
1288 types.
1289
1290 - Added RIP V2 support. Thanks to Jeffrey Honig (jch@bsdi.com)
1291
1292 - Added T/TCP options printing. As suggested by Richard Stevens
1293 (rstevens@noao.edu)
1294
1295 - Use autoconf to detect architectures that can't handle misaligned
1296 accesses.
1297
1298 v3.1 Thu Jun 13 20:59:32 PDT 1996
1299
1300 - Changed u_int32/int32 to u_int32_t/int32_t to be consistent with bsd
1301 and bind (as suggested by Charles Hannum).
1302
1303 - Port to GNU autoconf.
1304
1305 - Add support for printing DVMRP and PIM traffic thanks to
1306 Havard Eidnes (Havard.Eidnes@runit.sintef.no).
1307
1308 - Fix AppleTalk, IPX and DECnet byte order problems due to wrong endian
1309 define being referenced. Reported by Terry Kennedy.
1310
1311 - Minor fixes to the man page thanks to Mark Andrews.
1312
1313 - Endian fixes to RTP and vat packet dumpers, thanks to Bruce Mah
1314 (bmah@cs.berkeley.edu).
1315
1316 - Added support for new dns types, thanks to Rainer Orth.
1317
1318 - Fixed tftp_print() to print the block number for ACKs.
1319
1320 - Document -dd and -ddd. Resulted from a bug report from Charlie Slater
1321 (cslater@imatek.com).
1322
1323 - Check return status from malloc/calloc/etc.
1324
1325 - Check return status from pcap_loop() so we can print an error and
1326 exit with a bad status if there were problems.
1327
1328 - Bail if ip option length is <= 0. Resulted from a bug report from
1329 Darren Reed (darrenr@vitruvius.arbld.unimelb.edu.au).
1330
1331 - Print out a little more information for sun rpc packets.
1332
1333 - Add support for Kerberos 4 thanks to John Hawkinson (jhawk@mit.edu).
1334
1335 - Fixed the Fix EXTRACT_SHORT() and EXTRACT_LONG() macros (which were
1336 wrong on little endian machines).
1337
1338 - Fixed alignment bug in ipx_decode(). Thanks to Matt Crawford
1339 (crawdad@fnal.gov).
1340
1341 - Fix ntp_print() to not print garbage when the stratum is
1342 "unspecified." Thanks to Deus Ex Machina (root@belle.bork.com).
1343
1344 - Rewrote tcp options printer code to check for truncation. Added
1345 selective acknowledgment case.
1346
1347 - Fixed an endian bug in the ospf printer. Thanks to Jeffrey C Honig
1348 (jch@bsdi.com)
1349
1350 - Fix rip printer to handle 4.4 BSD sockaddr struct which only uses one
1351 octet for the sa_family member. Thanks to Yoshitaka Tokugawa
1352 (toku@dit.co.jp)
1353
1354 - Don't checksum ip header if we don't have all of it. Thanks to John
1355 Hawkinson (jhawk@mit.edu).
1356
1357 - Print out hostnames if possible in egp printer. Thanks to Jeffrey
1358 Honig (jhc@bsdi.com)
1359
1360
1361 v3.1a1 Wed May 3 19:21:11 PDT 1995
1362
1363 - Include time.h when SVR4 is defined to avoid problems under Solaris
1364 2.3.
1365
1366 - Fix etheraddr_string() in the ETHER_SERVICE to return the saved
1367 strings, not the local buffer. Thanks to Stefan Petri
1368 (petri@ibr.cs.tu-bs.de).
1369
1370 - Detect when pcap raises the snaplen (e.g. with snit). Print a warning
1371 that the selected value was not used. Thanks to Pascal Hennequin
1372 (Pascal.Hennequin@hugo.int-evry.fr).
1373
1374 - Add a truncated packet test to print-nfs.c. Thanks to Pascal Hennequin.
1375
1376 - BYTEORDER -> BYTE_ORDER Thanks to Terry Kennedy (terry@spcvxa.spc.edu).
1377
1378 v3.0.3 Sun Oct 1 18:35:00 GMT 1995
1379
1380 - Although there never was a 3.0.3 release, the linux boys cleverly
1381 "released" one in late 1995.
1382
1383 v3.0.2 Thu Apr 20 21:28:16 PDT 1995
1384
1385 - Change configuration to not use gcc v2 flags with gcc v1.
1386
1387 - Redo gmt2local() so that it works under BSDI (which seems to return
1388 an empty timezone struct from gettimeofday()). Based on report from
1389 Terry Kennedy (terry@spcvxa.spc.edu).
1390
1391 - Change configure to recognize IP[0-9]* as "mips" SGI hardware. Based
1392 on report from Mark Andrews (mandrews@alias.com).
1393
1394 - Don't pass cc flags to gcc. Resulted from a bug report from Rainer
1395 Orth (ro@techfak.uni-bielefeld.de).
1396
1397 - Fixed printout of connection id for uncompressed tcp slip packets.
1398 Resulted from a bug report from Richard Stevens (rstevens@noao.edu).
1399
1400 - Hack around deficiency in Ultrix's make.
1401
1402 - Add ETHERTYPE_TRAIL define which is missing from irix5.
1403
1404 v3.0.1 Wed Aug 31 22:42:26 PDT 1994
1405
1406 - Fix problems with gcc2 vs. malloc() and read() prototypes under SunOS 4.
1407
1408 v3.0 Mon Jun 20 19:23:27 PDT 1994
1409
1410 - Added support for printing tcp option timestamps thanks to
1411 Mark Andrews (mandrews@alias.com).
1412
1413 - Reorganize protocol dumpers to take const pointers to packets so they
1414 never change the contents (i.e., they used to do endian conversions
1415 in place). Previously, whenever more than one pass was taken over
1416 the packet, the packet contents would be dumped incorrectly (i.e.,
1417 the output form -x would be wrong on little endian machines because
1418 the protocol dumpers would modify the data). Thanks to Charles Hannum
1419 (mycroft@gnu.ai.mit.edu) for reporting this problem.
1420
1421 - Added support for decnet protocol dumping thanks to Jeff Mogul
1422 (mogul@pa.dec.com).
1423
1424 - Fix bug that caused length of packet to be incorrectly printed
1425 (off by ether header size) for unknown ethernet types thanks
1426 to Greg Miller (gmiller@kayak.mitre.org).
1427
1428 - Added support for IPX protocol dumping thanks to Brad Parker
1429 (brad@fcr.com).
1430
1431 - Added check to verify IP header checksum under -v thanks to
1432 Brad Parker (brad@fcr.com).
1433
1434 - Move packet capture code to new libpcap library (which is
1435 packaged separately).
1436
1437 - Prototype everything and assume an ansi compiler.
1438
1439 - print-arp.c: Print hardware ethernet addresses if they're not
1440 what we expect.
1441
1442 - print-bootp.c: Decode the cmu vendor field. Add RFC1497 tags.
1443 Many helpful suggestions from Gordon Ross (gwr@jericho.mc.com).
1444
1445 - print-fddi.c: Improvements. Thanks to Jeffrey Mogul
1446 (mogul@pa.dec.com).
1447
1448 - print-icmp.c: Byte swap netmask before printing. Thanks to
1449 Richard Stevens (rstevens@noao.edu). Print icmp type when unknown.
1450
1451 - print-ip.c: Print the inner ip datagram of ip-in-ip encapsulated packets.
1452 By default, only the inner packet is dumped, appended with the token
1453 "(encap)". Under -v, both the inner and output packets are dumped
1454 (on the same line). Note that the filter applies to the original packet,
1455 not the encapsulated packet. So if you run tcpdump on a net with an
1456 IP Multicast tunnel, you cannot filter out the datagrams using the
1457 conventional syntax. (You can filter away all the ip-in-ip traffic
1458 with "not ip proto 4".)
1459
1460 - print-nfs.c: Keep pending rpc's in circular table. Add generic
1461 nfs header and remove os dependences. Thanks to Jeffrey Mogul.
1462
1463 - print-ospf.c: Improvements. Thanks to Jeffrey Mogul.
1464
1465 - tcpdump.c: Add -T flag allows interpretation of "vat", "wb", "rpc"
1466 (sunrpc) and rtp packets. Added "inbound" and "outbound" keywords
1467 Add && and || operators
1468
1469 v2.2.1 Tue Jun 6 17:57:22 PDT 1992
1470
1471 - Fix bug with -c flag.
1472
1473 v2.2 Fri May 22 17:19:41 PDT 1992
1474
1475 - savefile.c: Remove hack that shouldn't have been exported. Add
1476 truncate checks.
1477
1478 - Added the 'icmp' keyword. For example, 'icmp[0] != 8 and icmp[0] != 0'
1479 matches non-echo/reply ICMP packets.
1480
1481 - Many improvements to filter code optimizer.
1482
1483 - Added 'multicast' keyword and extended the 'broadcast' keyword can now be
1484 so that protocol qualifications are allowed. For example, "ip broadcast"
1485 and "ether multicast" are valid filters.
1486
1487 - Added support for monitoring the loopback interface (i.e. 'tcpdump -i lo').
1488 Jeffrey Honig (jch@MITCHELL.CIT.CORNELL.EDU) contributed the kernel
1489 patches to netinet/if_loop.c.
1490
1491 - Added support for the Ungermann-Bass Ethernet on IBM/PC-RTs running AOS.
1492 Contact Jeffrey Honig (jch@MITCHELL.CIT.CORNELL.EDU) for the diffs.
1493
1494 - Added EGP and OSPF printers, thanks to Jeffrey Honig.
1495
1496 v2.1 Tue Jan 28 11:00:14 PST 1992
1497
1498 - Internal release (never publicly exported).
1499
1500 v2.0.1 Sun Jan 26 21:10:10 PDT
1501
1502 - Various byte ordering fixes.
1503
1504 - Add truncation checks.
1505
1506 - inet.c: Support BSD style SIOCGIFCONF.
1507
1508 - nametoaddr.c: Handle multi addresses for single host.
1509
1510 - optimize.c: Rewritten.
1511
1512 - pcap-bpf.c: don't choke when we get ptraced. only set promiscuous
1513 for broadcast nets.
1514
1515 - print-atal.c: Fix an alignment bug (thanks to
1516 stanonik@nprdc.navy.mil) Add missing printf() argument.
1517
1518 - print-bootp.c: First attempt at decoding the vendor buffer.
1519
1520 - print-domain.c: Fix truncation checks.
1521
1522 - print-icmp.c: Calculate length of packets from the ip header.
1523
1524 - print-ip.c: Print frag id in decimal (so it's easier to match up
1525 with non-frags). Add support for ospf, egp and igmp.
1526
1527 - print-nfs.c: Lots of changes.
1528
1529 - print-ntp.c: Make some verbose output depend on -v.
1530
1531 - print-snmp.c: New version from John LoVerso.
1532
1533 - print-tcp.c: Print rfc1072 tcp options.
1534
1535 - tcpdump.c: Print "0x" prefix for %x formats. Always print 6 digits
1536 (microseconds) worth of precision. Fix uid bugs.
1537
1538 - A packet dumper has been added (thanks to Jeff Mogul of DECWRL).
1539 With this option, you can create an architecture independent binary
1540 trace file in real time, without the overhead of the packet printer.
1541 At a later time, the packets can be filtered (again) and printed.
1542
1543 - BSD is supported. You must have BPF in your kernel.
1544 Since the filtering is now done in the kernel, fewer packets are
1545 dropped. In fact, with BPF and the packet dumper option, a measly
1546 Sun 3/50 can keep up with a busy network.
1547
1548 - Compressed SLIP packets can now be dumped, provided you use our
1549 SLIP software and BPF. These packets are dumped as any other IP
1550 packet; the compressed headers are dumped with the '-e' option.
1551
1552 - Machines with little-endian byte ordering are supported (thanks to
1553 Jeff Mogul).
1554
1555 - Ultrix 4.0 is supported (also thanks to Jeff Mogul).
1556
1557 - IBM RT and Stanford Enetfilter support has been added by
1558 Rayan Zachariassen <rayan@canet.ca>. Tcpdump has been tested under
1559 both the vanilla Enetfilter interface, and the extended interface
1560 (#ifdef'd by IBMRTPC) present in the MERIT version of the Enetfilter.
1561
1562 - TFTP packets are now printed (requests only).
1563
1564 - BOOTP packets are now printed.
1565
1566 - SNMP packets are now printed. (thanks to John LoVerso of Xylogics).
1567
1568 - Sparc architectures, including the Sparcstation-1, are now
1569 supported thanks to Steve McCanne and Craig Leres.
1570
1571 - SunOS 4 is now supported thanks to Micky Liu of Columbia
1572 University (micky@cunixc.cc.columbia.edu).
1573
1574 - IP options are now printed.
1575
1576 - RIP packets are now printed.
1577
1578 - There's a -v flag that prints out more information than the
1579 default (e.g., it will enable printing of IP ttl, tos and id)
1580 and -q flag that prints out less (e.g., it will disable
1581 interpretation of AppleTalk-in-UDP).
1582
1583 - The grammar has undergone substantial changes (if you have an
1584 earlier version of tcpdump, you should re-read the manual
1585 entry).
1586
1587 The most useful change is the addition of an expression
1588 syntax that lets you filter on arbitrary fields or values in the
1589 packet. E.g., "ip[0] > 0x45" would print only packets with IP
1590 options, "tcp[13] & 3 != 0" would print only TCP SYN and FIN
1591 packets.
1592
1593 The most painful change is that concatenation no longer means
1594 "and" -- e.g., you have to say "host foo and port bar" instead
1595 of "host foo port bar". The up side to this down is that
1596 repeated qualifiers can be omitted, making most filter
1597 expressions shorter. E.g., you can now say "ip host foo and
1598 (bar or baz)" to look at ip traffic between hosts foo and bar or
1599 between hosts foo and baz. [The old way of saying this was "ip
1600 host foo and (ip host bar or ip host baz)".]
1601
1602 v2.0 Sun Jan 13 12:20:40 PST 1991
1603
1604 - Initial public release.