Displaying 2 results from an estimated 2 matches for "eth_sip_traffic".
2015 Jan 19
2
sip show channelstats reliable?
I would recommend capturing traffic outside your Asterisk server with
Wireshark, then running the Telephony/Rtp/Analysize Streams option to
determine if you have packet loss at that point in the network.
On Mon, Jan 19, 2015 at 1:00 PM, Todd R. <tjrlist at live.com> wrote:
> Thanks but no Adtran here.
>
> I do think these stats are indicating an issue, I just don't know how to
2015 Jan 20
0
sip show channelstats reliable?
...pdump and
tshark(wireshark)
1. Capture output of Asterisk SIP channels in a log file ax_log_yyyymmdd
$while :; do date; asterisk -rnx 'sip show channelstats'; sleep 5 ; done
>> ax_log_yyyymmdd
2. Capture tcpdump traffic on the asterisk server:
$tcpdump -nq -s 0 -i eth0 -G3600 -w eth_sip_traffic-%F-%H-%M-%S.pcap port
5060 or port 5061
[this saves the all the ethernet traffic of ports 5060 & 5061 in the pcap
file for every hour(-G 3600) ]
3. Once you can see the data loss in the ax_log_yyyymmdd, check for the
same time in the eth_sip_traffic.pcap
Analyze the eth_sip_traffic.pcap
$tsh...