Advertisement
Guest User

Untitled

a guest
Apr 27th, 2010
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.61 KB | None | 0 0
  1. <?xml version="1.0" encoding="ISO-8859-1" ?>
  2. <!DOCTYPE scenario SYSTEM "sipp.dtd">
  3.  
  4. <!-- This program is free software; you can redistribute it and/or -->
  5. <!-- modify it under the terms of the GNU General Public License as -->
  6. <!-- published by the Free Software Foundation; either version 2 of the -->
  7. <!-- License, or (at your option) any later version. -->
  8. <!-- -->
  9. <!-- This program is distributed in the hope that it will be useful, -->
  10. <!-- but WITHOUT ANY WARRANTY; without even the implied warranty of -->
  11. <!-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -->
  12. <!-- GNU General Public License for more details. -->
  13. <!-- -->
  14. <!-- You should have received a copy of the GNU General Public License -->
  15. <!-- along with this program; if not, write to the -->
  16. <!-- Free Software Foundation, Inc., -->
  17. <!-- 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -->
  18. <!-- -->
  19. <!-- Sipp 'uac' scenario with pcap (rtp) play -->
  20. <!-- -->
  21.  
  22. <scenario name="UAC with media">
  23. <!-- In client mode (sipp placing calls), the Call-ID MUST be -->
  24. <!-- generated by sipp. To do so, use [call_id] keyword. -->
  25. <send retrans="500">
  26. <![CDATA[
  27.  
  28. INVITE sip:[field0]@[remote_ip]:[remote_port] SIP/2.0
  29. Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
  30. From: <sip:[field1]@[local_ip]:[local_port]>;tag=[call_number]
  31. To: <sip:[field0]@[remote_ip]:[remote_port]>
  32. Call-ID: [call_id]
  33. CSeq: 1 INVITE
  34. Contact: sip:[field1]@[local_ip]:[local_port]
  35. Max-Forwards: 70
  36. Subject: Performance Test
  37. Content-Type: application/sdp
  38. Content-Length: [len]
  39.  
  40. v=0
  41. o=user1 53655765 2353687637 IN IP[local_ip_type] [local_ip]
  42. s=-
  43. c=IN IP[local_ip_type] [local_ip]
  44. t=0 0
  45. m=audio [auto_media_port] RTP/AVP 18 101
  46. a=fmtp:18 annexb=no
  47. a=rtpmap:101 telephone-event/8000
  48. a=fmtp:101 0-11,16
  49. ]]>
  50. </send>
  51.  
  52. <recv response="100" optional="true">
  53. </recv>
  54.  
  55. <recv response="180" optional="true">
  56. </recv>
  57.  
  58. <recv response="183" optional="true">
  59. </recv>
  60.  
  61. <!-- By adding rrs="true" (Record Route Sets), the route sets -->
  62. <!-- are saved and used for following messages sent. Useful to test -->
  63. <!-- against stateful SIP proxies/B2BUAs. -->
  64. <recv response="200" rtd="true" crlf="true">
  65. </recv>
  66.  
  67. <!-- Packet lost can be simulated in any send/recv message by -->
  68. <!-- by adding the 'lost = "10"'. Value can be [1-100] percent. -->
  69. <send>
  70. <![CDATA[
  71.  
  72. ACK sip:[field0]@[remote_ip]:[remote_port] SIP/2.0
  73. Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
  74. From: <sip:[field1]@[local_ip]:[local_port]>;tag=[call_number]
  75. To: <sip:[field0]@[remote_ip]:[remote_port]>[peer_tag_param]
  76. Call-ID: [call_id]
  77. CSeq: 1 ACK
  78. Contact: sip:[field1]@[local_ip]:[local_port]
  79. Max-Forwards: 70
  80. Subject: Performance Test
  81. Content-Length: 0
  82.  
  83. ]]>
  84. </send>
  85.  
  86. <!-- Play a pre-recorded PCAP file (RTP stream) -->
  87. <nop><action><exec play_pcap_audio="pcap/g729.pcap"/></action></nop>
  88. <pause milliseconds="140000"/>
  89.  
  90.  
  91. <!-- The 'crlf' option inserts a blank line in the statistics report. -->
  92. <send retrans="500">
  93. <![CDATA[
  94.  
  95. BYE sip:[field0]@[remote_ip]:[remote_port] SIP/2.0
  96. Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
  97. From: <sip:[field1]@[local_ip]:[local_port]>;tag=[call_number]
  98. To: <sip:[field0]@[remote_ip]:[remote_port]>[peer_tag_param]
  99. Call-ID: [call_id]
  100. CSeq: 2 BYE
  101. Contact: sip:[field1]@[local_ip]:[local_port]
  102. Max-Forwards: 70
  103. Subject: Performance Test
  104. Content-Length: 0
  105.  
  106. ]]>
  107. </send>
  108.  
  109. <recv response="100" optional="true">
  110. </recv>
  111.  
  112. <recv response="200" crlf="true">
  113. </recv>
  114.  
  115. <!-- definition of the response time repartition table (unit is ms) -->
  116. <ResponseTimeRepartition value="10, 20, 30, 40, 50, 100, 150, 200"/>
  117.  
  118. <!-- definition of the call length repartition table (unit is ms) -->
  119. <CallLengthRepartition value="10, 50, 100, 500, 1000, 5000, 10000"/>
  120.  
  121. </scenario>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement