LATER... ei_kerberos_kdc_session_key ...
[wireshark-sm.git] / doc / man_pages / udpdump.adoc
blob37b5934c26b2e1ded5bd161d10030343505a15d3
1 include::../attributes.adoc[]
2 = udpdump(1)
3 :doctype: manpage
4 :stylesheet: ws.css
5 :linkcss:
6 :copycss: {css_dir}/{stylesheet}
8 == NAME
10 udpdump - Provide a UDP receiver that gets packets from network devices (like Aruba routers) and exports them in PCAP format.
12 == SYNOPSIS
14 [manarg]
15 *udpdump*
16 [ *--help* ]
17 [ *--version* ]
18 [ *--extcap-interfaces* ]
19 [ *--extcap-dlts* ]
20 [ *--extcap-interface*=<interface> ]
21 [ *--extcap-config* ]
22 [ *--capture* ]
23 [ *--fifo*=<path to file or pipe> ]
24 [ *--port*=<port> ]
25 [ *--payload*=<type> ]
27 == DESCRIPTION
29 *udpdump* is a extcap tool that provides a UDP receiver that listens for exported datagrams coming from
30 any source (like Aruba routers) and exports them in PCAP format. This provides the user two basic
31 functionalities: the first one is to have a listener that prevents the localhost to send back an ICMP
32 port-unreachable packet. The second one is to strip out the lower layers (layer 2, IP, UDP) that are useless
33 (are used just as export vector). The format of the exported datagrams are EXPORTED_PDU, as specified in
34 https://gitlab.com/wireshark/wireshark/-/raw/master/epan/exported_pdu.h
36 == OPTIONS
38 --help::
39 Print program arguments.
41 --version::
42 Print program version.
44 --extcap-interfaces::
45 List available interfaces.
47 --extcap-interface=<interface>::
48 Use specified interfaces.
50 --extcap-dlts::
51 List DLTs of specified interface.
53 --extcap-config::
54 List configuration options of specified interface.
56 --capture::
57 Start capturing from specified interface save saved it in place specified by --fifo.
59 --fifo=<path to file or pipe>::
60 Save captured packet to file or send it through pipe.
62 --port=<port>::
63 Set the listener port. Port 5555 is the default.
65 --payload=<type>::
66 Set the payload of the exported PDU. Default: data.
68 == EXAMPLES
70 To see program arguments:
72     udpdump --help
74 To see program version:
76     udpdump --version
78 To see interfaces:
80     udpdump --extcap-interfaces
82 .Example output
83     interface {value=udpdump}{display=UDP Listener remote capture}
85 To see interface DLTs:
87     udpdump --extcap-interface=udpdump --extcap-dlts
89 .Example output
90     dlt {number=252}{name=udpdump}{display=Exported PDUs}
92 To see interface configuration options:
94     udpdump --extcap-interface=udpdump --extcap-config
96 .Example output
97     arg {number=0}{call=--port}{display=Listen port}{type=unsigned}{range=1,65535}{default=5555}{tooltip=The port the receiver listens on}
99 To capture:
101     udpdump --extcap-interface=randpkt --fifo=/tmp/randpkt.pcapng --capture
103 NOTE: To stop capturing CTRL+C/kill/terminate the application.
105 == SEE ALSO
107 xref:wireshark.html[wireshark](1), xref:tshark.html[tshark](1), xref:dumpcap.html[dumpcap](1), xref:extcap.html[extcap](4)
109 == NOTES
111 *udpdump* is part of the *Wireshark* distribution.  The latest version
112 of *Wireshark* can be found at https://www.wireshark.org.
114 HTML versions of the Wireshark project man pages are available at
115 https://www.wireshark.org/docs/man-pages.
117 == AUTHORS
119 .Original Author
120 [%hardbreaks]
121 Dario Lombardo <lomato[AT]gmail.com>