51Testing软件测试论坛

标题: 用过SIPP这个开源软件的大虾帮忙看看 [打印本页]

作者: flykiller    时间: 2008-11-12 11:42
标题: 用过SIPP这个开源软件的大虾帮忙看看
sipp注册流程不能返回200OK    (redhat环境编译的 make ossl)
在收到401后发送第2个REG消息后没有返回200OK(是不是MD5加密有问题)
用到的XML文件:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE scenario SYSTEM "sipp.dtd">
<scenario name="branch_client">
  <send retrans="500">
    <![CDATA[

      REGISTER sip:[remote_ip] SIP/2.0
      Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
      From: [field0] <sip:[field0]@[local_ip]:[local_port]>;tag=[call_number]
      To: [field0] <sip:[field0]@[remote_ip]:[remote_port]>
      Call-ID: [call_id]
      CSeq: 1 REGISTER
      Contact: sip:[field0]@[local_ip]:[local_port]
      Content-Length: 0
      Expires: 300

    ]]>
   </send>
        
  <recv response="401" auth="true" next="1">
  </recv>
   
  <!--  send invite with authentication messages -->
  <label id="1"/>
  <send retrans="500">
  <![CDATA[

      REGISTER sip:[field0]@[remote_ip]:[remote_port] SIP/2.0
      Via: SIP/2.0/[transport] [local_ip]:[local_port]
      From: [field0] <sip:[field0]@[local_ip]:[local_port]>;tag=[call_number]
      To: [field0] <sip:[field0]@[remote_ip]:[remote_port]>
      Call-ID: [call_id]
      CSeq: 2 REGISTER
      Contact: sip:[field0]@[local_ip]:[local_port]
      [field1]
      Content-Length: [len]
      Expires: 3600
    ]]>
  </send>
  
  <recv response="200"  next="2">
  </recv>
  
  <label id="2"/>
  <pause milliseconds="1000"/>
   
   
  <!-- definition of the response time repartition table (unit is ms)   -->
  <ResponseTimeRepartition value="10, 20, 30, 40, 50, 100, 150, 200"/>

  <!-- definition of the call length repartition table (unit is ms)     -->
  <CallLengthRepartition value="10, 50, 100, 500, 1000, 5000, 10000"/>

</scenario>

CSV文件内容:
RANDOM
8000;[authentication username=8000 password=123456]
8001;[authentication username=8001 password=123456]
8002;[authentication username=8002 password=123456]
8003;[authentication username=8003 password=123456]
8004;[authentication username=8004 password=123456]
作者: xingcyx    时间: 2009-6-19 10:45
抓包看一下,如果[field1]的认证密码没有加密,那就是MD5没有生效了。




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2