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)sipping_from
(string)sipping_method
(string)fix_nated_contact()
fix_nated_sdp(flags)
fix_nated_sdp(flags,IP)
force_rtp_proxy()
force_rtp_proxy(flags)
force_rtp_proxy(flags, ip_address)
unforce_rtp_proxy()
add_rcv_param()
,
add_rcv_param(flag)
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
parametersipping_from
parametersipping_method
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">
Currently, the nathelper module supports two types of NAT pings:
UDP package - 4 bytes (zero filled) UDP packages are sent to the contact address.
Advantages: low bandwitdh traffic, easy to generate by OpenSER;
Disadvantages: unidirectional traffic through NAT (inbound - from outside to inside); As many NATs do update the bind timeout only on outbound traffic, the bind may expire and closed.
SIP request - a stateless SIP request is sent to the contact address.
Advantages: bidirectional traffic through NAT, since each PING request from OpenSER (inbound traffic) will force the SIP client to generate a SIP reply (outbound traffic) - the NAT bind will be surely kept open.
Disadvantages: higher bandwitdh traffic, more expensive (as time) to generate by OpenSER;
The following modules must be loaded before this module:
usrloc module - only if the NATed contacts are to be pinged.
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 the NAT pings to all currently registered UAs to keep their NAT bindings alive. Value of 0 disables this functionality.
Enabling the NAT pinging functionality will force the module to bind itself to USRLOC module. |
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 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 disabled - 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".
sipping_from
(string)The parameter sets the SIP URI to be used in generating the SIP requests for NAT ping purposes. To enable the SIP request pinging feature, you have to set this parameter. The SIP request pinging will be used only for requests marked so (see registrar module, the "sip_natping_flag" flag).
Default value is "NULL".
sipping_method
(string)The parameter sets the SIP method to be used in generating the SIP requests for NAT ping purposes.
Default value is "OPTIONS".
fix_nated_contact()
Rewrites Contact HF to contain request's source address:port.
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE, BRANCH_ROUTE.
fix_nated_sdp(flags)
fix_nated_sdp(flags,IP)
Alters the SDP information in orer to facilitate NAT traversal. What changes to be performed may be controled via the "flags" paramter.
Meaning of the parameters is as follows:
flags - the 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 or the provided IP address (the provide IP address take precedence over the source address).
0x04 - adds "a=nortpproxy:yes" SDP line;
0x08 - rewrite IP from origin description (o=) with source address of the message or the provided IP address (the provide IP address take precedence over the source address).
IP - IP to be used for rewritting SDP. If not specified, the received signalling IP will be used. The parameter allows pseudo-variables usage.NOTE: For the IP to be used, you need to use 0x02 or 0x08 flags, otherwise it will have no effect.
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE, FAILURE_ROUTE, BRANCH_ROUTE.
force_rtp_proxy()
Rewrites SDP body to ensure that media is passed through an RTP proxy.
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE, FAILURE_ROUTE, BRANCH_ROUTE.
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.
o - flags that IP from the origin description (o=) should be also changed.
c - flags to change the session-level SDP connection (c=) IP if media-description also includes connection information.
s - flags to swap creation with confirmation between requests and replies. By default, a request creates the RTP session and a reply confirms it. If swapped, a reply will create the RTP session and a request will confirm it.
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE, FAILURE_ROUTE, BRANCH_ROUTE.
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.
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE, FAILURE_ROUTE, BRANCH_ROUTE.
unforce_rtp_proxy()
Tears down the RTPProxy session for the current call.
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE, FAILURE_ROUTE, BRANCH_ROUTE.
add_rcv_param()
,
add_rcv_param(flag)
Add received parameter to Contact header fields or Contact URI. 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.
Meaning of the parameters is as follows:
flag - flags to indicate if the parameter should be added to Contact URI or Contact header. If the flag is non-zero, the parameter will be added to the Contact URI. If not used or equal to zero, the parameter will go to the Contact header.
This function can be used from REQUEST_ROUTE.
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.
This function can be used from REQUEST_ROUTE.
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.
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE, FAILURE_ROUTE, BRANCH_ROUTE.
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/cgi-bin/mailman/listinfo/users
Developer Mailing List - http://openser.org/cgi-bin/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://sourceforge.net/tracker/?group_id=139143.