使用dahdi和freeswitch记录ISDN事件

问题描述 投票:0回答:1

我正在使用freeswitchdahdi。我需要记录落在PBX(freeswitch)上的所有呼叫的ISDN事件。有没有办法做到这一点?我非常感谢你的帮助。

提前致谢。

freeswitch isdn
1个回答
1
投票

切换到您的dahdi源目录并发出:

apt-get install libpcap-dev || yum install libpcap-devel
sed 's/^.*\(\#define\s\+CONFIG_DAHDI_MIRROR\).*$/\1/' linux/include/dahdi/dahdi_config.h
make clean
make all
make install
cd tools
make dahdi_pcap

如果编译没有错误,您现在有一个名为dahdi_pcap的工具,您可以捕获信号到pcap文件并使用wireshark进行分析。用法示例:

./dahdi_pcap -p lapd -c 1 -f isdn.pcap
© www.soinside.com 2019 - 2024. All rights reserved.