diff options
author | Gerard Garcia <ggarcia@deic.uab.cat> | 2016-06-14 16:45:44 +0200 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2019-04-16 15:12:13 +0100 |
commit | cda9bf8c5f842fc7110fbbf2234bcc898f78c0bd (patch) | |
tree | 3a2880bbc250be66df26e923612e2271b89026ad /CMakeLists.txt | |
parent | 40274117132e13996a6af0daae3394b8663bb730 (diff) | |
download | tcpdump-cda9bf8c5f842fc7110fbbf2234bcc898f78c0bd.tar.gz |
Add printing support for vsockmon devices.
Print Linux 4.12 vsockmon captures:
# modprobe vsockmon
# ip link add type vsockmon
# ip link set vsockmon0 up
# tcpdump -i vsockmon0
16:25:24.987917 VIRTIO 3.1025 > 2.1234 CONNECT, length 76
16:25:24.987963 VIRTIO 2.1234 > 3.1025 CONNECT, length 76
16:25:26.568271 VIRTIO 3.1025 > 2.1234 PAYLOAD, length 82
16:25:26.568512 VIRTIO 2.1234 > 3.1025 CONTROL, length 76
16:25:28.411335 VIRTIO 3.1025 > 2.1234 DISCONNECT, length 76
16:25:28.411628 VIRTIO 2.1234 > 3.1025 DISCONNECT, length 76
For more information about vsock see:
http://wiki.qemu.org/Features/VirtioVsock
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 095d1f9f..905bc787 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1066,6 +1066,7 @@ set(NETDISSECT_SOURCE_LIST_C print-vjc.c print-vqp.c print-vrrp.c + print-vsock.c print-vtp.c print-vxlan.c print-vxlan-gpe.c |