Documentation

Documentation.Script-Syntax-1-7 History

Hide minor edits - Show changes to output

April 16, 2019, at 08:22 PM by liviu -
Changed line 4 from:
(:allVersions Script-Format 1.7:)
to:
(:allVersions Script-Syntax 1.7:)
August 05, 2013, at 03:57 PM by 109.99.235.212 -
Changed line 4 from:
[- Page for other versions: [[Script-Format|devel]] [[Script-Format-1-9|1.9]] [[Script-Format-1-8|1.8]] old versions: 1.7 [[Script-Format-1-6|1.6]] [[Script-Format-1-5|1.5]] [[Script-Format-1-4|1.4]] -]
to:
(:allVersions Script-Format 1.7:)
May 29, 2013, at 01:19 PM by 109.99.235.212 -
Changed line 10 from:
||[[Generating-Configs-1-7|Prev]] || [[Script-CoreParameters-1-7|Next]]||
to:
||[[Configure-File-1-7|Prev]] || [[Script-CoreParameters-1-7|Next]]||
May 28, 2013, at 09:23 PM by 109.99.235.212 -
Changed line 4 from:
[- Page for other versions: [[Script-Format|devel]] [[Script-Format-1-9|1.9]] [[Script-Format-1-8|1.8]] old versions : 1.7 [[Script-Format-1-6|1.6]] [[Script-Format-1-5|1.5]] [[Script-Format-1-4|1.4]] -]
to:
[- Page for other versions: [[Script-Format|devel]] [[Script-Format-1-9|1.9]] [[Script-Format-1-8|1.8]] old versions: 1.7 [[Script-Format-1-6|1.6]] [[Script-Format-1-5|1.5]] [[Script-Format-1-4|1.4]] -]
May 28, 2013, at 09:08 PM by 109.99.235.212 -
Added lines 1-93:
!!!!!Documentation -> [[Documentation.Manuals|Manuals]] -> [[Documentation.Manual-1-7|Manual 1.7]] -> Script Format
(:title Script Format - ver 1.7 :)
----
[- Page for other versions: [[Script-Format|devel]] [[Script-Format-1-9|1.9]] [[Script-Format-1-8|1.8]] old versions : 1.7 [[Script-Format-1-6|1.6]] [[Script-Format-1-5|1.5]] [[Script-Format-1-4|1.4]] -]

\\

|| %color=#185662%[+'''Script Format 1.7'''+]%% ||

||[[Generating-Configs-1-7|Prev]] || [[Script-CoreParameters-1-7|Next]]||
----

The OpenSIPs configuration script has three main logical parts :

# global parameters
# modules section
# routing logic

----
!!!! Global parameters

Usually, in the first part, you declare the [[Documentation/Script-CoreParameters-1-7|OpenSIPS global parameters]] - these global or core parameters are affecting the OpenSIPS core and possible the modules.

Configuring the network listeners, available transport protocols, forking (and number of processes), the logging and other global stuff is provided by these global parameters.

Example:

[@
disable_tcp = yes
listen = udp:192.168.2.10:5060
listen = udp:192.168.2.10:5070
fork = yes
children = 4
log_stderror = no
@]

----
!!!! Modules section

In regards to the OpenSIPS modules,the modules that are to be loaded (no module is loaded by default) are specified by using the directive '''loadmodule'''. Modules are to be specified by name and an optional path (to the ''.so'' file). If no path is provided (and just the name of the module), the default path will be assumed for locating the loading the module (default path is ''/usr/lib/opensips/modules'' if not other one configured at [[Documentation/Compile-And-Install-1-7|compile time]]. For configuring a different path, either the path is pushed directly with the module name (to get control per module) or it can be globally (for all modules) configured via the '''mpath''' global parameter.\\\
Once the modules are loaded, the parameters of the modules may be set using the '''modparam''' directive - to list of available parameters for each module, the type of parameter value (integer or string) can be found in the [[Documentation/Modules-1-7|documentation of the modules]], the ''Parameters'' section.

Examples:
[@
loadmodule "modules/mi_datagram/mi_datagram.so"
modparam("mi_datagram", "socket_name", "udp:127.0.0.1:4343")
modparam("mi_datagram", "children_count", 3)
@]

or

[@
mpath="/usr/local/opensips_proxy/lib/modules"
loadmodule "mi_datagram.so"
modparam("mi_datagram", "socket_name", "udp:127.0.0.1:4343")
modparam("mi_datagram", "children_count", 3)
loadmodule "mi_fifo.so"
modparam("mi_fifo", "fifo_name", "/tmp/opensips_fifo")
@]

----
!!!! Routing logic

The routing logic is actually a sum of routes (script routes) that contain the OpenSIPS logic for routing SIP traffic. The description of '''OpenSIPS behavior in relation to the SIP traffic''' is done via this routes.\\\
There are different types of routes :
# '''top routes''' - routes that are directly triggered by OpenSIPs when some events occurs (like SIP request received, SIP reply received, transaction failed, etc)
# '''sub-routes''' - routes that are triggered / used from other routes in script.
\\
What are the existing '''top routes''', when they are triggered, what kind of SIP messages is handled, what SIP operations are allowed and other are documented in the [[Documentation/Script-Routes-1-7| types of routes section]].\\\
The '''sub-routes''' have IDs and they are to be called from any other route (top or sub) in the script via their ID. The '''sub-routes''' may return a numerical code (avoid returning 0 value as this will terminate your whole script. The '''sub-routes''' are similar to functions / procedure in any programing language.
See the [[Documentation/Script-CoreFunctions-1-7#toc41| description of the ''route'' ]] directive.


Example:
[@
route { # top route triggered on incoming SIP requests
if ( route(10) ) {
xlog("request $rm comes from GW\n");
}
}

onreply_route { # top route triggered on incoming SIP replies
if ( route(10 ) {
xlog("reply $rc comes from GW\n");
}
}

route[10] { #sub-route to test if src is a GW
if ($si=='11.22.33.44' || $si=='11.22.33.45')
return 1;
return -1;
}
@]

Page last modified on April 16, 2019, at 08:22 PM