forked from mit-ll/dlep-wireshark-dissector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
61 lines (42 loc) · 2.21 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
Wireshark Dissector Plugin for DLEP
===================================
Wireshark dissector plugin for the Dynamic Link Exchange Protocol ([DLEP][dlep]).
Installation
------------
The following instructions are tailored and tested for Ubuntu 20.04 64-bit Desktop and Wireshark 3.2.3:
* Install wireshark together with dependencies and wireshark-dev package:
```sh
sudo apt install wireshark wireshark-dev
```
* Checkout plugin source, build and install:
```sh
git clone [email protected]:kylex2/dlep-wireshark-dissector.git
cd dlep-wireshark-dissector/
mkdir build && cd build
cmake ..
make
mkdir -p ~/.local/lib/wireshark/plugins/3.2/epan
cp dlep.so ~/.local/lib/wireshark/plugins/3.2/epan/
```
Usage
-----
* Verify installation by confirming that the plugin is listed in the following Wireshark menu:
Help -> About Wireshark -> Plugins
* Open up a sample capture file:
wireshark plugins/epan/dlep/test/capture1.pcapng
* There are two preferences that adjust the TCP port and UDP port associated with DLEP packets.
User preferences for this plugin may be set in the following menu:
Edit -> Preferences... -> Protocols -> DLEP
Testing
-------
Sample DLEP capture files and a README are located in ```dlep/test```.
The capture files may be opened in Wireshark as an example capture or used for fuzz-testing the plugin.
Caveats / Future Work
---------------------
* This dissector plugin adheres to [RFC 8175][rfc8175].
* This plugin attempts to decode all Data Items within a DLEP Signal or Message. While unrecognized Data Items are reported as such, invalid or disallowed duplicate Data Items are not indicated (Section 12.1 of [RFC 8175][rfc8175]).
* This plugin does not dissect Data Items belonging to DLEP extensions -- such Data Items are marked as "Unknown".
* While DLEP TCP/UDP ports are configurable via user preferences, this plugin does not dynamically register ports provided by IPv4/6 Connection Point Data Items.
* This plugin does not perform TCP segment reassembly. DLEP messages are assumed to not exceed the MTU of the link between a modem and router participating in the DLEP Session.
[dlep]: https://datatracker.ietf.org/doc/draft-ietf-manet-dlep
[rfc8175]: https://www.rfc-editor.org/rfc/rfc8175.txt