Hi All,

we are trying to make calls to clearwater setup through sipp. we are facing the 
following issues. Could you please provide your guidance to solve the issue:


My Environment Detials:

1) All the components of ClearWater are running in a single Machine/VM.
2) Sipp is present in another Ubuntu system running in same network.


We used the script(run-simple-sipp.sh attached) to perform calls to clearwater 
using sip, we are unable to perform calls with sipp.

we have observed following error messages in Sprout logs of our Clearwater 
setup.

Sprout:

27-05-2015 11:06:58.056 UTC Error hssconnection.cpp:144: Failed to get 
Authentication Vector for 6505550247177.0.100.39
27-05-2015 11:06:58.156 UTC Error httpconnection.cpp:569: 
http://177.0.100.39:8888/impi/6505550247177.0.100.39/av?impu=sip%3A6505550247177
 .0.100.39 failed at server 177.0.100.39 : HTTP response code said error (22 
404) : fatal
27-05-2015 11:06:58.156 UTC Error httpconnection.cpp:667: cURL failure with 
cURL error code 22 (see man 3 libcurl-errors) and HTTP error code 404
27-05-2015 11:06:58.156 UTC Error hssconnection.cpp:144: Failed to get 
Authentication Vector for 6505550247177.0.100.39

Sipp Log:

------------------------------ Test Terminated --------------------------------


----------------------------- Statistics Screen ------- [1-9]: Change Screen --
  Start Time             | 2015-05-27   11:42:51:228    1432726971.228611
  Last Reset Time        | 2015-05-27   11:50:21:322    1432727421.322813
  Current Time           | 2015-05-27   11:50:26:863    1432727426.863465
-------------------------+---------------------------+--------------------------
  Counter Name           | Periodic value            | Cumulative value
-------------------------+---------------------------+--------------------------
  Elapsed Time           | 00:00:05:540              | 00:07:35:634
  Call Rate              |    5.415 cps              |    3.029 cps
-------------------------+---------------------------+--------------------------
  Incoming call created  |        0                  |        0
  OutGoing call created  |       30                  |     1380
  Total Call created     |                           |     1380
  Current Call           |       30                  |
-------------------------+---------------------------+--------------------------
  Successful call        |        0                  |        0
  Failed call            |       30                  |     1350
-------------------------+---------------------------+--------------------------
  Call Length            | 00:00:10:002              | 00:00:10:002
------------------------------ Test Terminated --------------------------------



I have attached the sipp command,the xml file and csv file used for the 
execution of singleuser-reg-unreg-test.

Please let us know if any information is needed.

Best Regards,
Sudhakoushik B





<?xml version="1.0" encoding="ISO-8859-1" ?>
<scenario name="Clearwater phone number registration">
<!--
 In client mode (sipp placing calls), the Call-ID MUST be         
-->

<!--
    Client #1 - The first register message
-->
<send>
    <![CDATA[

    REGISTER sip:[field0]@[service] SIP/2.0
    Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
    From: <sip:[field0]@[service]>;tag=[pid]reg[call_number]
    To: <sip:[field0]@[remote_ip]>
    Contact: <sip:[field0]@[local_ip]:[local_port];transport=[transport]>
    Call-ID: [call_id]
    CSeq: [cseq] REGISTER
    Expires: 60
    Max-Forwards: 70
    Allow: PRACK, INVITE, ACK, BYE, CANCEL, UPDATE, SUBSCRIBE, NOTIFY, REFER, MESSAGE, OPTIONS
    Content-Length: [len]
    ]]>
    <action>
        <log message="First msg sent"/>
    </action>
</send>

<!--
    Client #1 - Wait for authentication challenge         
-->
<recv response="200" optional="true"></recv>
<recv response="503" optional="true"></recv>
<recv response="401" auth="true"></recv>

<!--
    Client #1 - The second register message with username, passwd          
-->
<send>
    <![CDATA[

    REGISTER sip:[field0]@[service] SIP/2.0
    Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
    From: <sip:[field0]@[service]>;tag=[pid]reg[call_number]
    To: <sip:[field0]@[remote_ip]>
    Contact: <sip:[field0]@[local_ip]:[local_port];transport=[transport]>
    Call-ID: [call_id]
    CSeq: [cseq] REGISTER
    Expires: 60
    [field1]
    Max-Forwards: 70
    Allow: PRACK, INVITE, ACK, BYE, CANCEL, UPDATE, SUBSCRIBE, NOTIFY, REFER, MESSAGE, OPTIONS
    Content-Length: [len]
    ]]>
</send>

<!--
    Client #1 - Expect OK
-->
<recv response="503" optional="true"></recv>
<recv response="200"></recv>



<!--
    Registration done. 
    Pause for a while.
-->
<!--<pause milliseconds="1000"/> -->

<label id="1"/>
<send>
    <![CDATA[

    REGISTER sip:[field0]@[service] SIP/2.0
    Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
    From: <sip:[field0]@[service]>;tag=[pid]reg[call_number]
    To: <sip:[field0]@[remote_ip]>
    Contact: <sip:[field0]@[local_ip]:[local_port];transport=[transport]>
    Call-ID: [call_id]
    CSeq: [cseq] REGISTER
    Expires: 0
    Max-Forwards: 70
    Allow: PRACK, INVITE, ACK, BYE, CANCEL, UPDATE, SUBSCRIBE, NOTIFY, REFER, MESSAGE, OPTIONS
    Content-Length: [len]
    ]]>
    <action>
        <log message="First msg sent"/>
    </action>
</send>


<!--
    Client #1 - Wait for authentication challenge         
-->
<!-- <recv response="200" optional="true"></recv>
<recv response="503" optional="true"></recv>
<recv response="401" auth="true"></recv> -->

<!--
    Client #1 - Unregistration second message         
-->
<!-- <send>
    <![CDATA[

    REGISTER sip:[field0]@[service] SIP/2.0
    Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
    From: <sip:[field0]@[service]>;tag=[pid]reg[call_number]
    To: <sip:[field0]@[remote_ip]>
    Contact: <sip:[field0]@[local_ip]:[local_port]>;transport=[transport]
    Call-ID: [call_id]
    CSeq: [cseq] REGISTER
    Expires: 0
    [field1]
    Max-Forwards: 70
    Allow: PRACK, INVITE, ACK, BYE, CANCEL, UPDATE, SUBSCRIBE, NOTIFY, REFER, MESSAGE, OPTIONS
    Content-Length: [len]
    ]]>
</send> -->

<!--
    Client #1 - Expect OK
-->
<recv response="503" optional="true"></recv>
<recv response="200"></recv>

<CallLengthRepartition value="10, 20, 30, 40, 50, 60, 70, 80, 90, 100, 200, 300, 400, 500, 600, 700, 800, 900, 1000, 2000, 3000, 4000, 5000, 10000"/>



<!--
    Client #1 - Unregistration first message
-->
<!-- <send>
    <![CDATA[

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

    ]]>
</send> -->

<!--
    Client #1 - Wait for authentication challenge         
-->
<!-- <recv response="200" optional="true"></recv>
<recv response="503" optional="true"></recv>
<recv response="401" auth="true"></recv> -->

<!--
    Client #1 - Unregistration second message         
-->
<!-- <send>
    <![CDATA[

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

    ]]>
</send> -->

<!--
    Client #1 - Expect OK
-->
<!-- <recv response="503" optional="true"></recv>
<recv response="200" rtd="true"></recv>

<label id="2"/> -->

</scenario>
SEQUENTIAL
6505550247;[authentication [email protected] password=557qR3FF6];
#[email protected];557qR3FF6;
SEQUENTIAL
6505550247;[authentication [email protected] password=557qR3FF6];
#[email protected];557qR3FF6;
2015-05-27      12:09:23:740    1432728563.740304: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:23:840    1432728563.840304: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:23:940    1432728563.940304: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:24:040    1432728564.040304: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:24:140    1432728564.140303: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:24:240    1432728564.240304: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:24:340    1432728564.340304: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:24:440    1432728564.440315: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:24:540    1432728564.540304: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:24:640    1432728564.640304: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:24:740    1432728564.740304: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:24:840    1432728564.840304: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:24:940    1432728564.940304: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:25:040    1432728565.040305: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:25:140    1432728565.140303: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:32:242    1432728572.242305: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:32:342    1432728572.342304: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:32:442    1432728572.442304: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:32:542    1432728572.542304: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:32:642    1432728572.642304: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:32:742    1432728572.742309: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:32:842    1432728572.842304: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:32:942    1432728572.942304: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:33:042    1432728573.042304: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:33:142    1432728573.142304: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:33:242    1432728573.242307: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:33:342    1432728573.342304: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:33:442    1432728573.442304: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:33:542    1432728573.542304: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:33:642    1432728573.642304: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:33:742    1432728573.742303: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:33:842    1432728573.842304: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:33:942    1432728573.942303: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:34:042    1432728574.042304: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:34:142    1432728574.142304: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:34:242    1432728574.242303: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:34:342    1432728574.342303: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:34:442    1432728574.442307: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:34:542    1432728574.542304: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:34:642    1432728574.642304: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:34:742    1432728574.742304: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:34:842    1432728574.842304: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:34:942    1432728574.942304: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:35:042    1432728575.042303: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
2015-05-27      12:09:35:142    1432728575.142304: Call-Id: 
[email protected], receive timeout on message Clearwater phone number 
registration:1 without label to jump to (ontimeout attribute): aborting call.
_______________________________________________
Clearwater mailing list
[email protected]
http://lists.projectclearwater.org/listinfo/clearwater

Reply via email to