Table of Contents
List of Tables
List of Examples
A stun server working with the same port as SIP (5060) in order to gain accurate information. The benefit would be an exact external address in the case of NATs translating differently when given different destination ports. The server may also advertise different network addresses than the ones it is actually listening on.
The stun server will use 4 sockets:
The sockets come from existing SIP sockets or are created.
Socket1 must allways be a SIP UDP listener from OpenSIPS.
The server will create a separate process. This process will listen for data on created sockets. The server will register a callback function to SIP. This function is called when a specific (stun)header is found.
This stun implements RFC3489 (and XOR_MAPPED_ADDRESS from RFC5389)
Not supported attributes:
and associated ERROR_CODEs
The IP of an interface which is configured as an UDP SIP listener in OpenSIPS. This is a mandatory parameter.
Syntax: "ip [/ advertised_ip]
By default, the primary_ip and the advertised primary_ip will be identical. This may be changed with an optional "/ xxx.xxx.xxx.xxx" string.
Example 1.1. Set
primary_ip
parameter
... modparam("stun", "primary_ip", "192.168.0.100") # Example of a STUN server within OpenSIPS which is behind NAT modparam("stun", "primary_ip", "192.168.0.100 / 64.50.46.78") ...
The port configured (together with the primary_ip) as an UDP SIP listener in OpenSIPS. The default value is 5060.
Syntax: "port [/ advertised_port]
By default, the primary_port and the advertised primary_port will be identical. This may be changed with an optional "/ adv_port" string.
Example 1.2. Set primary_port
parameter
... modparam("stun", "primary_port", "5060") # Listening on a primary port, but advertising a different one modparam("stun", "primary_port", "5060 / 5062") ...
Another IP from another interface. This is a mandatory parameter.
Syntax: "ip [/ advertised_ip]
By default, the alternate_ip and the advertised alternate_ip will be identical. This may be changed with an optional "/ xxx.xxx.xxx.xxx" string.
Example 1.3. Set
alternate_ip
parameter
... modparam("stun","alternate_ip","11.22.33.44") # Example of a STUN server within OpenSIPS which is behind NAT modparam("stun", "alternate_ip", "192.168.0.100 / 64.78.46.50") ...
The port used by the STUN server for the second interface. The default value is 3478 (default STUN port).
Syntax: "port [/ advertised_port]
By default, the alternate_port and the advertised alternate_port will be identical. This may be changed with an optional "/ adv_port" string.
Example 1.4. Set
alternate_port
parameter
... modparam("stun","alternate_port","3479") # Listening on an alternate port, but advertising a different one modparam("stun", "alternate_port", "5060 / 5062") ...
Table 2.1. Top contributors by DevScore(1), authored commits(2) and lines added/removed(3)
Name | DevScore | Commits | Lines ++ | Lines -- | |
---|---|---|---|---|---|
1. | Razvan Pistolea | 19 | 3 | 1891 | 19 |
2. | Bogdan-Andrei Iancu (@bogdan-iancu) | 18 | 13 | 136 | 128 |
3. | Liviu Chircu (@liviuchircu) | 13 | 9 | 254 | 104 |
4. | Razvan Crainea (@razvancrainea) | 9 | 7 | 15 | 12 |
5. | Vlad Paiu (@vladpaiu) | 6 | 4 | 21 | 4 |
(1) DevScore = author_commits + author_lines_added / (project_lines_added / project_commits) + author_lines_deleted / (project_lines_deleted / project_commits)
(2) including any documentation-related commits, excluding merge commits. Regarding imported patches/code, we do our best to count the work on behalf of the proper owner, as per the "fix_authors" and "mod_renames" arrays in opensips/doc/build-contrib.sh. If you identify any patches/commits which do not get properly attributed to you, please submit a pull request which extends "fix_authors" and/or "mod_renames".
(3) ignoring whitespace edits, renamed files and auto-generated files
Table 2.2. Most recently active contributors(1) to this module
Name | Commit Activity | |
---|---|---|
1. | Razvan Crainea (@razvancrainea) | Oct 2011 - Oct 2018 |
2. | Bogdan-Andrei Iancu (@bogdan-iancu) | Sep 2009 - Jun 2018 |
3. | Liviu Chircu (@liviuchircu) | Mar 2014 - Jun 2018 |
4. | Vlad Paiu (@vladpaiu) | Sep 2011 - Mar 2015 |
5. | Razvan Pistolea | Sep 2009 - Sep 2009 |
(1) including any documentation-related commits, excluding merge commits
Last edited by: Bogdan-Andrei Iancu (@bogdan-iancu), Liviu Chircu (@liviuchircu), Razvan Pistolea.
doc copyrights:
Copyright © 2009 Voice Sistem SRL