Skip to content

Instantly share code, notes, and snippets.

@govind0229
govind0229 / Capturing SIP and RTP traffic using tcpdump.md
Last active April 21, 2025 06:33
Capturing SIP and RTP traffic using TcpDump

Capturing SIP and RTP traffic using TcpDump

  • Tcpdump is a command-line packet analyzer, It has a lot of cool features to capture the network traffic. Let’s see the command to capture the SIP and RTP traffic using the Tcpdump.

Capturing only SIP traffic using the Tcpdump:

 tcpdump -i any -n -s 0 port 5060 -vvv -w /tmp/capture_file_name.pcap
#!/usr/bin/env bash
# -------------------------------------------------
# Infiworx Docker Project
# Govind Kumar < [email protected]>
# -------------------------------------------------
set -o nounset
cd /usr/local/src/
echo "dowloading python latest version"