Sorry, I forgot attach again ims_reg.xml

On Tue, Oct 7, 2008 at 1:06 PM, Vanessa Tejada Muñoz <[EMAIL PROTECTED]>wrote:

> As I read in the documentation, I execute manager.xml then sipp comand and
> finally press 'e' key in manager execution and finally the sipp comand, but
> the manager stop at time and I have to finish the test with crtl+c because
> nothing change.
>
> I attach the screens, usuarios.csv, ims_reg.xml (because I changed one line
> in REGISTER authentication) and log_sipp.
>
>
>
>
>
>
>
> On Tue, Oct 7, 2008 at 12:36 PM, Verbeiren, David <
> [EMAIL PROTECTED]> wrote:
>
>>  Could you please send screen output and log files from manager and sipp
>> ?
>>
>>
>>
>> Note that, as described in
>> http://sipp.sourceforge.net/ims_bench/reference.html#Running, once all
>> desired components are started (and you see they all connected to the
>> manager) you should press the 'e' key in the manager console.
>> (alternatively, you can configured the expected number of SIPp instances and
>> have the manager start automatically once they all have connected).
>>
>>
>>
>> -David
>>
>>
>>  ------------------------------
>>
>> *From:* Vanessa Tejada Muñoz [mailto:[EMAIL PROTECTED]
>> *Sent:* mardi 7 octobre 2008 12:16
>> *To:* [email protected]
>> *Subject:* [Sipp-users] Run basic scenarios IMS bench.
>>
>>
>>
>> Hi all,
>>
>> I'm trying to run the basic scenarios in IMS Bench which appears in a
>> folder called scen when you install it all.
>>
>> I execute ./manager - f manager.xml and then the comand: ./sipp
>> ip_core_ims:4060 -rmctrl ip_manager_machine:5000 -user_inf scen/usuarios.csv
>> -i ip_manager_machine -p 5000
>>
>> But the problem is that anything happen... Can anybody tell me how to test
>> the basic scripts please? I think that understanding the basic funcionality
>> I can create my own scenarios
>>
>> Best regards
>>
>>
>> --
>>
>>     Vanessa Tejada
>>
>> ---------------------------------------------------------------------
>> Intel Corporation NV/SA
>> Rond point Schuman 6, B-1040 Brussels
>> RPM (Bruxelles) 0415.497.718.
>> Citibank, Brussels, account 570/1031255/09
>>
>> This e-mail and any attachments may contain confidential material for
>> the sole use of the intended recipient(s). Any review or distribution
>> by others is strictly prohibited. If you are not the intended
>> recipient, please contact the sender and delete all copies.
>>
>>
>
>
> --
>
>     Vanessa Tejada
>



-- 

    Vanessa Tejada
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE scenario SYSTEM "sipp.dtd">
<!-- This program is free software; you can redistribute it and/or      -->
<!-- modify it under the terms of the GNU General Public License as     -->
<!-- published by the Free Software Foundation; either version 2 of the -->
<!-- License, or (at your option) any later version.                    -->
<!--                                                                    -->
<!-- This program is distributed in the hope that it will be useful,    -->
<!-- but WITHOUT ANY WARRANTY; without even the implied warranty of     -->
<!-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the      -->
<!-- GNU General Public License for more details.                       -->
<!--                                                                    -->
<!-- You should have received a copy of the GNU General Public License  -->
<!-- along with this program; if not, write to the                      -->
<!-- Free Software Foundation, Inc.,                                    -->
<!-- 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA             -->
<!--                                                                    -->
<!--          IMS Benchmark Registration scenario                       -->
<!--                                                                    -->
<!-- Author : David Verbeiren from Intel Corporation - July 2007        -->
<!--          Xavier Simonart from Intel Corporation - July 2007        -->
<!--          Philippe Lecluse from Intel Corporation - July 2007       -->
<!--                                                                    -->

<scenario name="ims_reg" on_unexpected="9" default_behavior="false">
  <info>
    <metric ref="PX_TRT-REG1" rtd="1" max="2000"/>
    <metric ref="PX_TRT-REG2" rtd="2" max="2000"/>
  </info>

<!-- *** STEP 1 *** -->
 <!-- Select a user from the 'Unregistered' pool and place it into a           -->
 <!-- '(De)Registration ongoing' pool so we don't register it multiple times   -->
 <!-- in parallel.                                                             -->
  <nop>
    <action>
      <assign_user pool="0" scheme="rand_uni"/>   <!-- 'Unregistered' user  -->
      <move_user pool="1"/>                       <!-- Registration ongoing -->
    </action>
  </nop>

<!-- *** STEP 2 *** -->
 <!-- Now that our preparation step is done, we wait for the time when the scenario -->
 <!-- must actually start, according to the random scenario arrival distribution.   -->
  <sync crlf="true">
    <action>
      <exec int_cmd="set_start_time"/>
    </action>
  </sync>

<!-- *** STEP 3 *** -->
 <!-- Now the SIP scenario really starts -->

  <send retrans="500" start_rtd="1">
    <![CDATA[
      REGISTER sip:[field1] SIP/2.0
      Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
      From: "[field0]" <sip:[EMAIL PROTECTED]>;tag=[call_number]
      To: "[field0]" <sip:[EMAIL PROTECTED]>
      Call-ID: [call_id]
      CSeq: 1 REGISTER
      Contact: <sip:[EMAIL PROTECTED]:[local_port]>;expires=[%RegistrationExpire]
      Expires: [%RegistrationExpire]
      Content-Length: 0
      Authorization: Digest username="[EMAIL PROTECTED]", realm="[field3]"
      Supported: path
    ]]>
  </send>


  <recv response="401" auth="true" auth_assign_to="u2" rtd="1">
  </recv>


  <send retrans="500" start_rtd="2">
    <![CDATA[
      REGISTER sip:[field1] SIP/2.0
      Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
      From: "[field0]" <sip:[EMAIL PROTECTED]>;tag=[call_number]
      To: "[field0]" <sip:[EMAIL PROTECTED]>
      Call-ID: [call_id]
      CSeq: 2 REGISTER
      Contact: <sip:[EMAIL PROTECTED]:[local_port]>;expires=[%RegistrationExpire]
      Expires: [%RegistrationExpire]
      Content-Length: 0
      [field4]
      Supported: path
    ]]>
  </send>


  <recv response="200" rtd="2" crlf="true" next="10">
    <action>
      <ereg regexp=".*" search_in="hdr" header="Service-Route:" check_it="true" assign_to="u1" />
       <!-- We store the Service-Route indicated by the SUT into a user variable  -->
       <!-- because we must use it as Route for subsequent dialogs we'll initiate -->
       <!-- as part of executing other scenarios for the registered user.         -->
      <move_user pool="2"/>    <!-- User is now 'Registered' -->
    </action>
  </recv>


  <label id="9"/>  <!-- FAILURE CASE -->

  <nop>
    <action>
      <move_user pool="0"/>    <!-- We ASSUME user is still 'Not Registered' -->
    </action>
  </nop>


  <label id="10"/> <!-- END OF SCENARIO -->


  <!-- definition of the response time repartition table (unit is ms)   -->
  <ResponseTimeRepartition value="10, 20"/>

  <!-- definition of the call length repartition table (unit is ms)     -->
  <CallLengthRepartition value="10"/>

</scenario>
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Sipp-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/sipp-users

Reply via email to