Mark Oliver's World

6 'voip' posts

All 6 posts tagged with 'voip' are displayed here, click a link to see the full post.


Changing RTP Playback In Wireshark

08/07/2024

In Wireshark's RTP Player, there is an option for "Playback Timing".

Thee options provided are:

  • Jitter Buffer
  • RTP Timestamp
  • Uninterrupted Mode

These options can have a significant effect on the playback of a capture RTP stream dependant on the quality of the recording.

For example, if the...


How To Retarget A Wireshark Capture To Different IP Addresses

04/07/2024

A Wireshark PCAP network capture is a very useful thing when working with network based Software.

It allows you to see what data is being sent around the network, and with the right tooling you can replay them.

But sometimes, the recording has...


Make A Wireshark Capture File More Focussed

09/04/2024

Wireshark capture files can be massive. So you may want to remove all the unnecessary data from the file before further analysis.

This can be done via the UI, but it is easier to do it via the command line.

Run the following tshark command, f...


Filtering A Pcap VoIP Recording To A Specific Call In Wireshark

10/12/2023

Open your Pcap file in Wireshark.

On the menu, choose Telephony->VoIP Calls calls

Then find the call you want in the list, and select it. (Look for an INVITE 200 in the Comments section, and a From that has a phone number in it).

Once selected, press `Prepare Filter...


Playing A Captured VoIP Recording Through Wireshark

09/12/2023

If you have a Pcap file network capture (generated by Wireshark perhaps) with a SIP or any Voice Over IP (VoIP) call traffic, you can listen to the raw calls within the Wireshark.

Open the pcap file in Wireshark.

On the menu, Choose Telephony->VoIP Calls
![VoIP Call Menu Opt...


Replaying Network Captures

08/12/2023

When building any network related software, sometimes you need to capture the network traffic to debug an issue. The tool of choice tends to be Wireshark, which is truly excellent and I have used it for many years debugging TELNET, HTTP, SIP, UDP & RTP traffic.

However...