Project

General

Profile

WireSharkPage » History » Version 4

matt, 10/22/2017 09:18 AM

1 2 matt
h1. Extending Wireshark 
2 3 matt
3 1 zecke
The !WireShark packet sniffer normally doesn't support APCO P25. If you want to sniff P25 traffic using !WireShark then you'll need to patch the sources and rebuild it.
4
5 2 matt
h2. Downloading !WireShark
6 3 matt
7 1 zecke
You first need to obtain the source code for !WireShark. The stable release of !WireShark is available from the [http://www.wireshark.org/download.html downloads section of the !WireShark web-site]. On that page you should be go to the "Get !WireShark" for the stable release (1.8.5 at the time of writing). Click on "Source Code" to download the file.
8
9 2 matt
h2. Unpacking !WireShark
10 3 matt
11 1 zecke
To unpack the source tree you need to open a shell and execute the following commands:
12 2 matt
@
13 1 zecke
mkdir -p SourceCode
14
cd SourceCode
15
tar xjvf ~/Downloads/wireshark-1.8.5.tar.bz2
16
cd wireshark-1.8.5
17 2 matt
@
18 1 zecke
(Remember your download directory may not be in ~/Downloads and the version number of !WireShark you download maybe different to that used here).
19
20 2 matt
h2. Patching !WireShark
21 3 matt
22 1 zecke
Once you've downloaded the wireshark source tree, check out p25 plugin:
23
24 4 matt
@(cd plugins && svn checkout http://op25.osmocom.org/svn/trunk/wireshark/plugins/p25 p25)@
25 1 zecke
26
This adds the necessary code to !WireShark for it to decode APCO P25 messages. A few small changes also need to be made to the !WireShark tree outside of the plugins directory. To do this the easiest way is to apply the appropriate patch. This can be done as follows:
27
28 2 matt
@
29 1 zecke
svn checkout http://op25.osmocom.org/svn/trunk/wireshark/patches
30
patch -p1 < patches/wireshark-1.8.5.patch
31 2 matt
@
32 1 zecke
33
Of course, it is inevitable that you will download a !WireShark version for which we haven't provided a patch. Don't fret - the patches will probably work for your version but if it fails to apply you may need to download one an earlier version of !WireShark for which we have a patch or make the changes manually using the existing patch as a guide.
34
35 2 matt
h2. Building + Installing !WireShark
36 1 zecke
37
You may need to install prerequisites beforehand. These are a minimum set for Ubuntu/Debian based systems:
38 2 matt
@
39 1 zecke
sudo apt-get install bison flex libgtk2.0-dev libpcap-dev
40 2 matt
@
41 1 zecke
42
The standard build for wireshark requires that ./autogen.sh be run first. To compile !WireShark run the following commands:
43
44 2 matt
@
45 1 zecke
./autogen.sh && ./configure && make clean && make
46 2 matt
@
47 1 zecke
48
If it compiles cleanly then you can install it as follows:
49
50 2 matt
@
51 1 zecke
sudo make install
52 2 matt
@
53 1 zecke
54 2 matt
h2. Using !WireShark to sniff P25
55 1 zecke
56
Now you've got a modified !WireShark installed it should be a simple matter to start the receiver and use !WireShark to capture its output. To do so simply sniff on your computer's network interface and use the following capture filter: "udp port 23456". At present all P25 traffic is sent to the multicast address 224.0.0.1 so it should be visible on other computers on your subnet - this allows you to sniff in one place and monitor from another.
Add picture from clipboard (Maximum size: 48.8 MB)