]>
The Tcpdump Group git mirrors - tcpdump/blob - print-vrrp.c
2 * Copyright (c) 2000 William C. Fenner.
5 * Kevin Steves <ks@hp.se> July 2000
7 * - print version, type string and packet length
8 * - print IP address count if > 1 (-v)
9 * - verify checksum (-v)
10 * - print authentication string (-v)
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that: (1) source code
14 * distributions retain the above copyright notice and this paragraph
15 * in its entirety, and (2) distributions including binary code include
16 * the above copyright notice and this paragraph in its entirety in
17 * the documentation or other materials provided with the distribution.
18 * The name of William C. Fenner may not be used to endorse or
19 * promote products derived from this software without specific prior
20 * written permission. THIS SOFTWARE IS PROVIDED ``AS IS'' AND
21 * WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT
22 * LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23 * FOR A PARTICULAR PURPOSE.
27 static const char rcsid
[] =
28 "@(#) $Header: /tcpdump/master/tcpdump/print-vrrp.c,v 1.2 2000-07-29 06:22:17 assar Exp $";
39 #include "interface.h"
41 #include "addrtoname.h"
46 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
47 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
48 * |Version| Type | Virtual Rtr ID| Priority | Count IP Addrs|
49 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
50 * | Auth Type | Adver Int | Checksum |
51 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
53 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
57 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
59 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
60 * | Authentication Data (1) |
61 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
62 * | Authentication Data (2) |
63 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
66 vrrp_print(register const u_char
*bp
, register u_int len
, int ttl
)
68 int version
, type
, auth_type
;
72 version
= (bp
[0] & 0xf0) >> 4;
78 printf("VRRPv%d-%s %d: ", version
, type_s
, len
);
80 printf("[ttl=%d!] ", ttl
);
81 if (version
!= 2 || type
!= 1)
84 printf("vrid=%d prio=%d", bp
[1], bp
[2]);
88 printf(" authtype=%d", auth_type
);
89 printf(" intvl=%d", bp
[5]);
95 if (TTEST2(bp
[0], len
) && in_cksum((const u_short
*)bp
, len
, 0))
96 printf(" (bad vrrp cksum %x!)",
97 EXTRACT_16BITS(&bp
[6]));
100 printf("(%d)", naddrs
);
104 for (i
= 0; i
< naddrs
; i
++) {
106 printf("%c%s", c
, ipaddr_string(bp
));
110 if (auth_type
== 1) { /* simple text password */
112 printf(" auth %.8s", bp
);