Documentation |
Documentation.Tutorials-SIPREC-2-4 HistoryHide minor edits - Show changes to markup October 25, 2017, at 07:00 PM
by - October 25, 2017, at 06:59 PM
by
- Changed lines 135-161 from:
SRS Failoverto:
The SIPREC protocol consists of a set of metadata information about the participants of the call. By default, OpenSIPS takes those participants from the $var(caller) = "\"John Doe\" <sip:john@opensips.org>\r\n"; $var(callee) = "\"Jane Doe\" <sip:jane@opensips.org>\r\n"; siprec_start_recording("sip:127.0.0.1:5060;transport=tcp",, "$var(caller)", "$var(callee)"); One can also group the calls recorded based on a tag (group as specified in the SIPREC RFC). This is done by the second parameter of the siprec_start_recording("sip:127.0.0.1:5060;transport=tcp", "regular", "$var(caller)", "$var(callee)"); SRS Fail-overThere might be cases when a SRS might be down, or cannot be reachable, and you want to fail-over to a different server. This can be achieved by enlisting all the servers in the first parameter of the siprec_start_recording("sip:127.0.0.1:5060;transport=tcp, sip:127.0.0.1:5060"); By default, fail-over is driven by a negative response from the SRS, or by an auto-generated 408 if the SRS does not respond. However, not all responses mean the service is unavailable, some of them might simply indicate that the call should not recorded. In this case, you might want to ignore some response codes from the fail-over algorithm. This is done using the skip_failover_codes parameter. The following example prevents fail-over for any class 3 and 4 response codes - thus it only fails-over 5xx and 6xx classes: modparam("siprec", "skip_failover_codes", "[34][0-9][0-9]") October 25, 2017, at 05:52 PM
by
- Added lines 16-17:
The work for the SIPREC module has been sponsored by the OrecX Company. Changed lines 32-33 from:
Configurationto:
Basic ConfigurationChanged lines 92-93 from:
Advanced Topicsto:
Advanced ConfigurationChanged lines 109-110 from:
After these changes you can reliably communicate with your SRS Recorder. to:
After these changes you can reliably communicate with your SRS Recorder over TCP. Added lines 113-121:
In real scenarios, you might want to put the communication with SRS on a separate/dedicated IP in a local LAN. In order to do this, you need to also specify the desired interface to OpenSIPS, by forcing the communication socket before engaging siprec: force_send_socket(tcp:127.0.0.1:5060); siprec_start_recording("sip:127.0.0.1:5060;transport=tcp"); force_send_socket(udp:127.0.0.1:5060); # restore the initial interface """Note""" that after forcing the SRS interface, you need to restore the initial interface, otherwise OpenSIPS will try to reach the callee using the dedicated interface. Added lines 123-131:
In the initial scenario we used the However, if you configuration runs in a more advanced setup, where you are using RTPProxy sets, you need to make sure that you are providing the same set to SIPREC as well, otherwise recording will fail. So for example if you are using set """5""" for a specific group of users, you will also have to specify it in the 5th parameter of rtpproxy_offer(,,"5"); siprec_start_recording("sip:127.0.0.1:5060;transport=tcp",,,,"5"); October 25, 2017, at 05:13 PM
by
- Changed lines 92-95 from:
to:
Communicate with SRS over TCPAlthough UDP communication is lightweight and the base protocol for SIP, in practice it has a big limitation: it cannot always carry large packets of data. This is SIPREC's case: when adding large SDP payloads, combined with large XML data, to a SIP overhead, you will definitely exceed the MTU (which is usually 1500 bytes), and you end up fragmenting the package. Unfortunately IP fragmentation makes a lot of routers unhappy, thus we might want to use a different method to communicate with the SRS. Luckily, we can achieve this by using TCP. To do so, we need to make three extra changes to our previous script:
After these changes you can reliably communicate with your SRS Recorder. Use a specific interface to communicate with SRCAdvanced RTPProxy configurationChanging Call Participants MetadataSRS FailoverOctober 25, 2017, at 04:14 PM
by
- Changed lines 72-73 from:
to:
Changed line 81 from:
siprec_start_recording("sip:127.0.0.1"); to:
siprec_start_recording("sip:127.0.0.1:5090"); Changed line 88 from:
You can find here the final configuration? example. to:
You can find here the final configuration example. October 25, 2017, at 03:57 PM
by
- Added lines 30-31:
ConfigurationChanged lines 34-36 from:
ConfigurationWe will use as an example the OpenSIPS 2.4 default script, and gradually add components to it until we end up with a working example. to:
We will start from an existing working setup for OpenSIPS and gradually add the necessary parts to it until we end up with a working Call Recording script. We will use OpenSIPS 2.4 default script, which provides basic call routing for clients. The first thing we need to do is load the necessary modules involved:
So at the beginning section of our script, we need to add the following lines: loadmodule "dialog.so" loadmodule "b2b_entities.so" loadmodule "siprec.so" loadmodule "rtpproxy.so" We also need to specify the connector to the RTPProxy server: modparam("rtpproxy", "rtpproxy_sock", "udp:127.0.0.1:7899") Now we need to "identify" the calls we want to do call recording for. This can be done using whatever logic you want in your script, but for simplicity in this example, we will engage call recording for all users. To do this, we need to find in our script the code's section that handles the initial INVITEs. In the default script, this is done in the following snippet: # account only INVITEs if (is_method("INVITE")) { do_accounting("log"); } In this code section, we need to do 3 things:
After all these changes, the previous snippet will look like this: # account only INVITEs if (is_method("INVITE")) { create_dialog(); rtpproxy_engage(); siprec_start_recording("sip:127.0.0.1"); do_accounting("log"); } And that's all! All you need to do is start OpenSIPS with the new script and make a call test. You can find here the final configuration? example. Advanced Topics
October 25, 2017, at 12:05 PM
by
- Changed lines 32-34 from:
Configurationto:
ConfigurationWe will use as an example the OpenSIPS 2.4 default script, and gradually add components to it until we end up with a working example. October 25, 2017, at 11:53 AM
by
- Changed lines 18-19 from:
In order to setup call recording using SIPREC, we need three components: to:
The purpose of this article is to show how one can record a call between two clients, let's call them Alice and Bob. In order to do that, we need the following components: Changed line 21 from:
to:
Changed lines 24-26 from:
Here is a small diagram of the call flows: http://opensips.org/pub/images/siprec-architecture.png to:
The following diagram shows the setup and how each component interact to each other: http://opensips.org/pub/images/siprec-architecture.png According to the diagram, Alice and Bob do not need to have any recording capabilities (although the SIPREC protocol also supports this model, but it is not part of this article). They will simply behave as a regular SIP client, sending SIP traffic to the OpenSIPS proxy and the RTP media to a Media Server, in our case, RTPProxy. However, when a new call is started, OpenSIPS needs to start a SIPREC session to the SRS, providing it metadata description of Alice and Bob, as well as media description in the SDP. At this point, the SRS decides whether the call is indeed intended to be recorded - if it is not, it simply rejects the call, otherwise, it sends a 200 OK, containing the SDP where to fork the media. Upon receiving this information, OpenSIPS instructs RTPProxy to start forking the clients' RTP traffic to the SRS. When the call is ended, OpenSIPS needs to also close the SIPREC session with the SRS. In this article we will only discuss about how OpenSIPS can be used to record calls using the SIPREC protocol. We will not address the SRS and RTPProxy configuration, but these should already work with the basic/default config. ConfigurationOctober 24, 2017, at 05:46 PM
by
- Changed lines 14-26 from:
This document describes the steps to configure OpenSIPS to engage one (or more) SRS recorder(s) in an ongoing call. to:
This document describes the steps to configure OpenSIPS to engage one (or more) SRS recorder(s) in an ongoing call. ArchitectureIn order to setup call recording using SIPREC, we need three components:
Here is a small diagram of the call flows: http://opensips.org/pub/images/siprec-architecture.png October 24, 2017, at 05:15 PM
by
- Added lines 1-14:
Documentation -> Tutorials -> Call Recording using OpenSIPS and SIPRECThis page has been visited 28225 times. (:toc-float Table of Content:) Tutorial OverviewSIPREC is a standard that specifies how to do call recording in a non-intrusive way, using an external recorder. Using this protocol you can move the call recording features out of your media server to one (or many) other recorder(s), without interfering with the actual RTP flow. According to the SIPREC architecture, in order to record a call, you need two components:
This document describes the steps to configure OpenSIPS to engage one (or more) SRS recorder(s) in an ongoing call. |