summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorDavid Gwynne <dlg@cvs.openbsd.org>2018-12-20 03:39:30 +0000
committerDavid Gwynne <dlg@cvs.openbsd.org>2018-12-20 03:39:30 +0000
commitc7cc332c4dd83f61f9ccbb992c439302be2e2dac (patch)
treea41d35695e73b3f033c379079e17c0b388ec5b19 /usr.sbin
parent62db8a6a0ba28c100a89a668942742adaf75389d (diff)
LLDP has it's own group address, so teach tcpdump about it.
ok deraadt@
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/tcpdump/addrtoname.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/tcpdump/addrtoname.c b/usr.sbin/tcpdump/addrtoname.c
index 693fa3b08b7..28483648941 100644
--- a/usr.sbin/tcpdump/addrtoname.c
+++ b/usr.sbin/tcpdump/addrtoname.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: addrtoname.c,v 1.38 2018/10/22 16:12:45 kn Exp $ */
+/* $OpenBSD: addrtoname.c,v 1.39 2018/12/20 03:39:29 dlg Exp $ */
/*
* Copyright (c) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997
@@ -737,6 +737,7 @@ static struct etherlist {
char *name;
} etherlist[] = {
{{ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }, "Broadcast" },
+ {{ 0x01, 0x80, 0xc2, 0x00, 0x00, 0x0e }, "LLDP_Multicast" },
{{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }, NULL }
};