我在dahdi中使用freeswitch。我需要记录所有落地到用户交换机(freeswitch)上的呼叫的综合业务数字网事件。有什么办法可以做到这一点吗?我非常感谢你的帮助。
提前谢谢。
发布于 2012-09-09 04:33:28
切换到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.pcaphttps://stackoverflow.com/questions/12153010
复制相似问题