0


猿创征文|【FreeSwitch开发实践】使用sipp对FreeSwitch进行压力测试

✨ 博客主页:小小马车夫的主页
✨ 所属专栏:FreeSwitch开发实践
✨ 专栏介绍:主要介绍博主在实际项目中使用FreeSwitch开发外呼类项目的一些经验心得,主要涉及FreeSwitch的基本安装编译、基本配置、ESL、WSS、录音、自定义模块、media bug、语音播放、MRCP及对接AI机器人等内容。内容在持续更新中,如果感兴趣可以对专栏进行订阅~

请添加图片描述

文章目录


前言

FreeSwitch作用外呼系统的底层服务器,其稳定性至关重要,因此有必要对FreeSwitch作一个压力测试。而在FreeSwitch压力测试方面,sipp是最好用的工具,也是FreeSwitch官方推荐的。本文对Sipp的编译安装、命令行参数及相关配置文件和对使用sipp对FreeSwitch压力测试作简要介绍,如想深入了解sipp工具可以参考:sipp官网。


1、sipp编译安装

运行环境

Ubuntu 18.04.7 LTS 64位

  • 依赖安装
apt-getinstall libncurses-dev
apt-getinstall libssl-dev
apt-getinstall libpcap-dev
atp-get install openssl
apt-getinstall sip-tester
tar -xvf sipp.svn.tar.gz
cd sipp.svn
make pcapplay_oss

编译完成会生成

sipp

可执行文件,可运行一下,验证是否编译成功:
sipp

2、sipp命令参数

• -s:指定外呼号码
• -sf:指定场景脚本文件,可分为注册,UAC,UAS等
• -inf:指定注册用户信息,CSV配置文件,里面有用户的帐号,密码,端口等信息
• -i:Sipp所在主机地址
• -p:Sipp端口号
• -r:每秒发送多少Sip消息, 常与rp参数联合使用, -r 1 -rp 3000 代码每3秒发送1个外呼
• -trace_screen:当程序结束时候打印统计信息并弹出屏幕
• -m:共发送多少Sip消息
• -t:使用tcp的传输模式,公司内网udp有限制,tn代表每个呼叫占用一个socket

  • -rtp:启用 rtp 回送功能

3、sipp注册csv文件

user_data.csv

SEQUENTIAL
900000001;123;
900000002;123;
900000003;123;

说明:

900000001

为主叫用户

123

为被叫用户,也可以是FreeSwitch中配置的

拨号计划

名称, 这里使用的正是拨号计划

4、sipp 压力测试UAC脚本文件

uac_test.xml

<?xml version="1.0" encoding="ISO-8859-1" ?><!DOCTYPEscenarioSYSTEM"sipp.dtd"><scenarioname="Basic Sipstone UAC"><sendretrans="500"><![CDATA[
      INVITE sip:[field1]@[remote_ip]:[remote_port] SIP/2.0
      Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
      From: [field0] <sip:[field0]@[remote_ip]:[remote_port]>;tag=[call_number]
      To: <sip:[field1]@[remote_ip]:5060>
      Call-ID: [call_id]
      CSeq: 1 INVITE
      Contact: sip:[field0]@[local_ip]:[local_port]
      Max-Forwards: 70
      Subject: FreeSwitch Performance Test
      Content-Type: application/sdp
      Content-Length: [len]

      v=0
      o=HuaweiFlexit1.0 20004 20004 IN IP4 10.130.30.7
      s=A call
      c=IN IP4 10.130.30.7
      t=1228447938 1228451538
      m=audio 10500 RTP/AVP 18 4 8 0 97
      a=rtpmap:18 G729/8000
      a=fmtp:18 annexb=no
      a=rtpmap:4 G723/8000
      a=rtpmap:8 PCMA/8000
      a=rtpmap:0 PCMU/8000
      a=rtpmap:97 telephone-event/8000
      a=fmtp:97 0-15
      a=sendrecv
      m=video 10510 RTP/AVP 34 98
      b=AS:376
      a=rtpmap:34 H263/90000
      a=fmtp:34 QCIF=1 CIF=4 MaxBR=3760
      a=rtpmap:98 MP4V-ES/90000
      a=fmtp:98 profile-level-id=2
      a=sendrecv
    ]]></send><recvresponse="100"></recv><recvresponse="180"optional="true"></recv><recvresponse="183"optional="true"></recv><recvresponse="200"></recv><send><![CDATA[
      ACK sip:mod_sofia@[remote_ip]:[remote_port];transport=udp SIP/2.0
      Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
      From: [field0] <sip:[field0]@[remote_ip]:[remote_port]>;tag=[call_number]
      To: <sip:[field1]@[remote_ip]:[remote_port]>[peer_tag_param]
      Call-ID: [call_id]
      CSeq: 1 ACK
      Max-Forwards: 70
      Subject: Performance Test
      Content-Length: 0
    ]]></send><pausemilliseconds="120000"/><sendretrans="500"><![CDATA[
      BYE sip:[field0]@[remote_ip]:[remote_port] SIP/2.0
      Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
      From: [field0] <sip:[field0]@[remote_ip]:[remote_port]>;tag=[call_number]
      To: [field1] <sip:[field1]@[remote_ip]:[remote_port]>[peer_tag_param]
      Call-ID: [call_id]
      CSeq: 2 BYE
      Contact: sip:[field0]@[local_ip]:[local_port]
      Max-Forwards: 70
      Subject: Performance Test
      Content-Length: 0
    ]]></send><recvresponse="200"crlf="true"></recv><ResponseTimeRepartitionvalue="10, 20, 30, 40, 50, 100, 150, 200"/><CallLengthRepartitionvalue="10, 50, 100, 500, 1000, 5000, 10000"/></scenario>

5、FreeSwitch相关配置

<extensionname="sipp_test"><conditionfield="destination_number"expression="^123$"><actionapplication="answer"/><actionapplication="sleep"data="1000"/><actionapplication="playback"data="/data/1.wav"/><actionapplication="sleep"data="1000"/><actionapplication="hangup"/></condition></extension>

说明:

<action application="playback" data="/data/1.wav"/>

回放音频文件 /data/1.wav
当进行sipp压力测试,每一个呼叫通过上述拨号计划打进来, FreeSwitch会播放音频文件,持续时间为wav文件时长

FreeSwitch外呼数量限制修改

autoload_configs/switch.conf.xml
<!--
        Max number of sessions to allow at any given time.
        
        NOTICE: If you're driving 28 T1's in a single box you should set this to 644*2 or 1288
        this will ensure you're able to use the entire DS3 without a problem.  Otherwise you'll
        be 144 channels short of always filling that DS3 up which can translate into waste.
    --><paramname="max-sessions"value="5000"/><!--Most channels to create per second --><paramname="sessions-per-second"value="60"/>

其中

max-sessions

为FreeSwitch配置的最大并发外呼数量,压测时可根据实际情况修改

6、sipp对FreeSwitch压力测试命令

./sipp 10.7.40.3:5060 -i 172.28.37.88 -p 2345 -m 1000 -r 20 -rp 1000 -l 1000 -t tn  -max_socket 5000  -sf uac_test.xml -inf user_data.csv -rtp_echo -trace_screen -trace_err

压测完成输出:

在这里插入图片描述

其中 Successful call为1000, Failed call为0, 说明1000呼任务全部成功。

FreeSwitch呼叫并发数和CPU占用率查看:
在FreeSwitch命令行中输出:

show calls

, 在另一个bash命令行中输入

top

freeswitch

7、可能遇到的问题及解决办法

修改

vars.xml
<X-PRE-PROCESScmd="set"data="internal_auth_calls=false"/>

最后

以上就是本次的内容,来总结一下吧:

  • sipp的安装和编译
  • sipp参数介绍
  • sipp 用户脚本介绍
  • sipp uac呼叫脚本介绍
  • FreeSwitch相关配置
  • sipp对FreeSwitch压力测试
  • 可能遇到的问题及解决办法

如果觉得有些帮助或觉得文章还不错,请关注一下博主,你的关注是我持续写作的动力。另外,如果有什么问题,可以在评论区留言,或者私信博主,博主看到后会第一时间进行回复。
【间歇性的努力和蒙混过日子,都是对之前努力的清零】
欢迎转载,转载请注明出处:https://blog.csdn.net/xxm524/article/details/126680594


本文转载自: https://blog.csdn.net/xxm524/article/details/126680594
版权归原作者 小小马车夫 所有, 如有侵权,请联系我们删除。

“猿创征文|【FreeSwitch开发实践】使用sipp对FreeSwitch进行压力测试”的评论:

还没有评论