Copyright © 2003 Porta Software Ltd.
Copyright © 2005 voice-system.ro
natping_interval
(integer)ping_nated_only
(integer)received_avp
(integer)rtpproxy_sock
(string)rtpproxy_disable
(integer)rtpproxy_disable_tout
(integer)rtpproxy_tout
(integer)rtpproxy_retr
(integer)force_socket
(string)fix_nated_contact()
fix_nated_sdp(mode)
force_rtp_proxy()
force_rtp_proxy(flags)
force_rtp_proxy(flags, ip_address)
unforce_rtp_proxy()
add_rcv_param()
fix_nated_register()
nat_uac_test(flags)
natping_interval
parameterping_nated_only
parameterreceived_avp
parameterrtpproxy_sock
parameterrtpproxy_disable
parameterrtpproxy_disable_tout
parameterrtpproxy_tout
parameterrtpproxy_retr
parameterforce_socket
parameterfix_nated_contact
usagefix_nated_sdp
usageforce_rtp_proxy
usageforce_rtp_proxy
usageforce_rtp_proxy
usageunforce_rtp_proxy
usageadd_rcv_paramer
usagefix_nated_register
usageThis is a module to help with NAT traversal. In particular, it helps symmetric UAs that don't advertise they are symmetric and are not able to determine their public address. fix_nated_contact rewrites Contact header field with request's source address:port pair. fix_nated_sdp adds the active direction indication to SDP (flag 0x01) and updates source IP address too (flag 0x02).
Known devices that get along over NATs with nathelper are ATAs (as clients) and Cisco Gateways (since 12.2(T)) as servers. See http://www.cisco.com/en/US/products/sw/iosswrel/ps1839/products_feature_guide09186a0080110bf9.html">
The following modules must be loaded before this module:
No dependencies on other OpenSER modules.
The following libraries or applications must be installed before running OpenSER with this module loaded:
None.
natping_interval
(integer)Period of time in seconds between sending short UDP packets to all currently registered UAs to keep their NAT bindings alive. Value of 0 disables this functionality.
Default value is 0.
ping_nated_only
(integer)If this variable is set then only contacts that have "behind_NAT" flag in user location database set set will get ping.
Default value is 0.
received_avp
(integer)The number of the Attribute-Value-Pair (AVP) used to store the URI containing the received IP, port, and protocol. The URI is created by fix_nated_register function of nathelper module and the attribute is then used by the registrar to store the received parameters. Do not forget to change the value of corresponding parameter in registrar module if you change the value of this parameter.
Default value is 42.
rtpproxy_sock
(string)Socket used to connect to RTPProxy. It may specify a UNIX socket or an IPv4/IPv6 UDP socket.
Default value is "unix:/var/run/rtpproxy.sock".
rtpproxy_disable
(integer)If true (set to a non 0 value), the RTPProxy support will be desabled - no connection to it will be established.
Default value is "0 (false)".
rtpproxy_disable_tout
(integer)Once RTPProxy was found unreachable and marked as disable, nathelper will not attempt to establish communication to RTPProxy for rtpproxy_disable_tout seconds.
Default value is "60".
rtpproxy_tout
(integer)Timeout value in waiting for reply from RTPProxy.
Default value is "1".
rtpproxy_retr
(integer)How many times nathelper should retry to send and receive after timeout was generated.
Default value is "5".
force_socket
(string)Socket to be forced in communicating to RTPProxy. It makes sense only for UDP communication. If no one specified, the OS will choose.
Default value is "NULL".
fix_nated_contact()
Rewrites Contact HF to contain request's source address:port.
fix_nated_sdp(mode)
Alters the SDP information in orer to facilitate NAT traversal. What changes to be performed may be controled via the "parameter".
The parameter value may be a bitwise OR of the following flags:
0x01 - adds "a=direction:active" SDP line;
0x02 - rewrite media IP address (c=) with source address of the message.
0x04 - adds "a=nortpproxy:yes" SDP line;
force_rtp_proxy(flags)
Same as force_rtp_proxy, but forces additional flags.
Meaning of the parameters is as follows:
flags - flags to turn on some features.
a - flags that UA from which message is received doesn't support symmetric RTP.
l - force "lookup", that is, only rewrite SDP when corresponding session is already exists in the RTP proxy. Only makes sense for SIP requests, replies are always processed in "lookup" mode.
i - flags that message is received from UA in the LAN (internal network). Only makes sense when RTP proxy is running in the bridge mode.
e - flags that message is received from UA in the WAN (external network). Only makes sense when RTP proxy is running in the bridge mode.
f - instructs nathelper to ignore marks inserted by another nathelper in transit to indicate that the session is already goes through another proxy. Allows creating chain of proxies.
r - flags that IP address in SDP should be trusted. Without this flag, nathelper ignores address in the SDP and uses source address of the SIP message as media address which is passed to the RTP proxy.
force_rtp_proxy(flags, ip_address)
Same as force_rtp_proxy(flags), but it may force a new SDP IP address.
Meaning of the parameters is as follows:
flags - flags to turn on some features.
ip_address - new SDP IP address.
add_rcv_param()
Add received parameter to Contact header fields. The parameter will contain URI created from the source IP, port, and protocol of the packet containing the SIP message. The parameter can be then processed by another registrar, this is useful, for example, when replicating register messages using t_replicate function to another registrar.
fix_nated_register()
The function creates a URI consisting of the source IP, port, and protocol and stores the URI in an Attribute-Value-Pair. The URI will be appended as "received" parameter to Contact in 200 OK and registrar will store it in the user location database.
nat_uac_test(flags)
Tries to guess if client's request originated behind a nat. The parameter determines what heuristics is used.
Meaning of the flags is as follows:
1 - Contact header field is searched for occurrence of RFC1918 addresses.
2 - the "received" test is used: address in Via is compared against source IP address of signaling
4 - Top Most VIA is searched for occurrence of RFC1918 addresses
8 - SDP is searched for occurrence of RFC1918 addresses
16 - test if the source port is different from the port in Via
All flags can be bitwise combined, the test returns true if any of the tests identified a NAT.
Take a look at http://openser.org/.
First at all check if your question was already answered on one of our mailing lists:
User Mailing List - http://openser.org/mailman/listinfo/users
Developer Mailing List - http://openser.org/mailman/listinfo/devel
E-mails regarding any stable OpenSER release should be sent to
<users@openser.org>
and e-mails regarding development versions
should be sent to <devel@openser.org>
.
If you want to keep the mail private, send it to
<team@openser.org>
.
Please follow the guidelines provided at: http://openser.org/bugs.