Created
April 22, 2024 19:33
-
-
Save giavac/419086bfa81982d139124994a491aaf0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="iso-8859-2" ?> | |
<!DOCTYPE scenario SYSTEM "sipp.dtd"> | |
<scenario name="UAC INVITE + call"> | |
<send retrans="500"> | |
<![CDATA[ | |
INVITE sip:[field3]@[field4]:5061;transport=tls SIP/2.0 | |
Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch] | |
From: sipp <sip:[field0]@[field1]>;tag=[call_number] | |
To: <sip:[field3]@[field1]:[remote_port]> | |
Call-ID: [call_id] | |
CSeq: 1 INVITE | |
Contact: sip:[field0]@[local_ip]:[local_port] | |
Max-Forwards: 100 | |
Content-Length: 0 | |
]]> | |
</send> | |
<recv response="100" optional="true"> | |
</recv> | |
<recv response="180" optional="true"> | |
</recv> | |
<recv response="183" optional="true"> | |
</recv> | |
<recv response="200" rrs="true"> | |
</recv> | |
<send> | |
<![CDATA[ | |
ACK [next_url] SIP/2.0 | |
Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch] | |
From: <sip:[field0]@[field1]>;tag=[call_number] | |
[last_To:] | |
[routes] | |
Call-ID: [call_id] | |
CSeq: 1 ACK | |
Contact: sip:[field0]@[local_ip]:[local_port] | |
Max-Forwards: 100 | |
Content-Type: application/sdp | |
Content-Length: [len] | |
v=0 | |
o=user1 53655765 2353687637 IN IP[local_ip_type] [local_ip] | |
s=- | |
c=IN IP[media_ip_type] [media_ip] | |
t=0 0 | |
m=audio [media_port] RTP/AVP 8 | |
a=rtpmap:8 PCMA/8000 | |
m=video [media_port+2] RTP/AVP 103 116 118 | |
a=rtpmap:103 H264/90000 | |
a=fmtp:103 profile-level-id=42E020; packetization-mode=1; sprop-parameter-sets=Z0LAFoyNQFAekA8IhGo=,aM48gA== | |
a=rtpmap:116 VP8/90000 | |
a=rtpmap:118 H264/90000 | |
a=fmtp:118 profile-level-id=42E020; packetization-mode=0; sprop-parameter-sets=Z0LAFoyNQFAekA8IhGo=,aM48gA== | |
]]> | |
</send> | |
<pause milliseconds="20000" /> | |
<send retrans="500"> | |
<![CDATA[ | |
BYE [next_url] SIP/2.0 | |
Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch] | |
From: <sip:[field0]@[field1]>;tag=[call_number] | |
[last_To:] | |
[routes] | |
Call-ID: [call_id] | |
CSeq: 3 BYE | |
Contact: sip:sipp@[local_ip]:[local_port] | |
Max-Forwards: 100 | |
Content-Length: 0 | |
]]> | |
</send> | |
<!-- The 'crlf' option inserts a blank line in the statistics report. --> | |
<recv response="200" crlf="true"> | |
</recv> | |
<!-- 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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment