summaryrefslogtreecommitdiff
path: root/contrib/scripts/sipp-sendfax.xml
blob: a249808fe3764ce686ea179e964ebcdab5943cd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE scenario SYSTEM "sipp.dtd">
<scenario name="INVITE (optional auth), re-INVITE to T38 and send a Fax, Walter Doekes 2012-2013">

  <!--

  NOTE: Creating a sipp-sendfax.pcap is as easy as:
  - receive a fax with asterisk
  - get the incoming side of the spansdp.log (use 'fax set debug on',
    check your logger.conf)
  - feed it to spandspflow2pcap.py

  NOTE: sipp-sendfax.xml requires image pcap play support in SIPp. This
  means a version above 3.5.0, or the master git branch from
  https://github.com/SIPp/sipp.

  -->

  <label id="invite"/>

  <send retrans="500" start_txn="invite">
    <![CDATA[

      INVITE sip:[tel]@[remote_ip]:[remote_port] SIP/2.0
      Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
      From: sip:[service]@[local_ip]:[local_port];tag=[pid]SIPpTag00[call_number]
      To: sip:[tel]@[remote_ip]:[remote_port]
      Contact: sip:[service]@[local_ip]:[local_port]
      Call-ID: [call_id]
      CSeq: [cseq] INVITE
      Max-Forwards: 70
      Content-Type: application/sdp
      Content-Length: [len]

      v=0
      o=- 144969 144969 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 0
      a=rtpmap:8 PCMA/8000
      a=rtpmap:0 PCMU/8000

    ]]>
  </send>

  <recv response="100" optional="true" response_txn="invite"/>

  <recv response="180" optional="true" response_txn="invite"/>

  <recv response="181" optional="true" response_txn="invite"/>

  <recv response="183" optional="true" response_txn="invite"/>

  <recv response="200" optional="true" rrs="true" response_txn="invite" next="invite-ack"/>

  <recv response="401" optional="true" rrs="true" next="invite-with-auth" auth="true" rrs="true" response_txn="invite"/>

  <recv response="407" auth="true" rrs="true" response_txn="invite"/>

  <label id="invite-with-auth"/>

  <send ack_txn="invite">
    <![CDATA[

      ACK sip:[tel]@[remote_ip]:[remote_port] SIP/2.0
      [last_Via:]
      [last_From:]
      [last_To:]
      Contact: sip:[service]@[local_ip]:[local_port]
      Call-ID: [call_id]
      CSeq: [cseq] ACK
      Max-Forwards: 70
      Content-Length: 0

    ]]>
  </send>

  <send retrans="500" start_txn="invite">
    <![CDATA[

      INVITE sip:[tel]@[remote_ip]:[remote_port] SIP/2.0
      Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
      From: sip:[service]@[local_ip]:[local_port];tag=[pid]SIPpTag00[call_number]
      To: sip:[tel]@[remote_ip]:[remote_port]
      Contact: sip:[service]@[local_ip]:[local_port]
      [authentication]
      Call-ID: [call_id]
      CSeq: [cseq] INVITE
      Max-Forwards: 70
      Content-Type: application/sdp
      Content-Length: [len]

      v=0
      o=- 144969 144969 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 0
      a=rtpmap:8 PCMA/8000
      a=rtpmap:0 PCMU/8000

    ]]>
  </send>

  <recv response="100" response_txn="invite"/>

  <recv response="180" optional="true" response_txn="invite"/>

  <recv response="181" optional="true" response_txn="invite"/>

  <recv response="183" optional="true" response_txn="invite"/>

  <recv response="200" rrs="true" response_txn="invite"/>

  <label id="invite-ack"/>

  <send ack_txn="invite">
    <![CDATA[

      ACK [next_url] SIP/2.0
      [last_Via:]
      [routes]
      [last_From:]
      [last_To:]
      Contact: sip:[service]@[local_ip]:[local_port]
      Call-ID: [call_id]
      CSeq: [cseq] ACK
      Max-Forwards: 70
      Content-Length: 0

    ]]>
  </send>

  <!-- Send a bit of noise to start the RTP. You may need to use
       the -i MY_IP command line option. -->
  <pause milliseconds="500"/>

  <nop>
    <action>
      <exec play_pcap_audio="g711a.pcap"/>
    </action>
  </nop>

  <pause milliseconds="500"/>


  <!-- *****************************************************************

  Initiate re-INVITE to T38.

  ****************************************************************** -->

  <send start_txn="t38invite">
    <![CDATA[

      INVITE [next_url] SIP/2.0
      Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
      [routes]
      [last_From:]
      [last_To:]
      Contact: sip:[service]@[local_ip]:[local_port]
      Call-ID: [call_id]
      CSeq: [cseq] INVITE
      Max-Forwards: 70
      Content-Type: application/sdp
      Content-Length: [len]

      v=0
      o=- 145280 145280 IN IP[local_ip_type] [local_ip]
      s=-
      c=IN IP[media_ip_type] [media_ip]
      t=0 0
      m=image [media_port] udptl t38
      a=T38FaxVersion:0
      a=T38MaxBitRate:14400
      a=T38FaxRateManagement:transferredTCF
      a=T38FaxMaxBuffer:200
      a=T38FaxMaxDatagram:200
      a=T38FaxUdpEC:t38UDPRedundancy

    ]]>
  </send>

  <recv response="100" optional="true" response_txn="t38invite"/>

  <recv response="488" optional="true" response_txn="t38invite" next="abort"/>

  <recv response="200" response_txn="t38invite"/>

  <send ack_txn="t38invite">
    <![CDATA[

      ACK [next_url] SIP/2.0
      [last_Via:]
      [routes]
      [last_From:]
      [last_To:]
      Contact: sip:[service]@[local_ip]:[local_port]
      Call-ID: [call_id]
      CSeq: [cseq] ACK
      Max-Forwards: 70
      Content-Length: 0

    ]]>
  </send>

  <!-- Enable the nop/action below to replay the FAX image. You may need to use
       the -i MY_IP command line option. -->
  <pause milliseconds="500"/>

  <nop>
    <action>
      <exec play_pcap_image="sipp-sendfax.pcap"/>
    </action>
  </nop>


  <!-- *****************************************************************

  Wait for re-INVITE back to audio.

  ****************************************************************** -->

  <recv request="INVITE"/>

  <send retrans="500">
    <![CDATA[

      SIP/2.0 200 OK
      [last_Via:]
      [last_Record-Route:]
      [last_From:]
      [last_To:]
      Contact: sip:[service]@[local_ip]:[local_port]
      [last_Call-ID:]
      [last_CSeq:]
      Max-Forwards: 70
      Content-Type: application/sdp
      Content-Length: [len]

      v=0
      o=- 146312 146312 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 0
      a=rtpmap:8 PCMA/8000
      a=rtpmap:0 PCMU/8000

    ]]>
  </send>

  <recv request="ACK"/>

  <recv request="BYE"/>

  <send next="done">
    <![CDATA[

      SIP/2.0 200 OK
      [last_Via:]
      [last_Record-Route:]
      [last_From:]
      [last_To:]
      Contact: sip:[service]@[local_ip]:[local_port]
      [last_Call-ID:]
      [last_CSeq:]
      Content-Length: 0

    ]]>
  </send>


  <!-- *****************************************************************

  Abort the call ourselves

  ****************************************************************** -->

  <label id="abort"/>

  <send ack_txn="t38invite">
    <![CDATA[

      ACK [next_url] SIP/2.0
      [last_Via:]
      [routes]
      [last_From:]
      [last_To:]
      Contact: sip:[service]@[local_ip]:[local_port]
      Call-ID: [call_id]
      CSeq: [cseq] ACK
      Max-Forwards: 70
      Content-Length: 0

    ]]>
  </send>

  <send start_txn="bye">
    <![CDATA[

      BYE [next_url] SIP/2.0
      [last_Via:]
      [routes]
      [last_From:]
      [last_To:]
      Contact: sip:[service]@[local_ip]:[local_port]
      Call-ID: [call_id]
      CSeq: [cseq] BYE
      Max-Forwards: 70
      Content-Length: 0

    ]]>
  </send>

  <recv response="200" response_txn="bye" next="done"/>


  <!-- *****************************************************************

  Finalize

  ****************************************************************** -->

  <label id="done"/>

  <!-- Keep call open to be able to retransmit stuff -->
  <timewait milliseconds="2000"/>

</scenario><!-- vim: set ts=8 sw=2 sts=2 et ai: -->