I have managed to work my way through the LCR module documentation and added the loadmodule and module parameters. However, I dont know where to add the routing logic that will allow me to add LCR rules and gateways in Siremis and to have Kamailio recognize them. Below is my Kamailio config: Advice?<br>
<br>root@u15396663:/var/log# cat /usr/local/etc/kamailio//kamailio.cfg<br>#!KAMAILIO<br>#<br>#!define WITH_MYSQL<br>#!define WITH_AUTH<br>#!define WITH_USRLOCDB<br>#!define WITH_ACCDB<br>#!define WITH_NAT<br>#<br># Kamailio (OpenSER) SIP Server v3.1 - default configuration script<br>
#     - web: <a href="http://www.kamailio.org">http://www.kamailio.org</a><br>#     - git: <a href="http://sip-router.org">http://sip-router.org</a><br>#<br># Direct your questions about this file to: &lt;<a href="mailto:sr-users@lists.sip-router.org">sr-users@lists.sip-router.org</a>&gt;<br>
#<br># Refer to the Core CookBook at <a href="http://www.kamailio.org/dokuwiki/doku.php">http://www.kamailio.org/dokuwiki/doku.php</a><br># for an explanation of possible statements, functions and parameters.<br>#<br># Several features can be enabled using &#39;#!define WITH_FEATURE&#39; directives:<br>
#<br># *** To run in debug mode: <br>#     - define WITH_DEBUG<br>#<br># *** To enable mysql: <br>#     - define WITH_MYSQL<br>#<br># *** To enable authentication execute:<br>#     - enable mysql<br>#     - define WITH_AUTH<br>
#     - add users using &#39;kamctl&#39;<br>#<br># *** To enable IP authentication execute:<br>#     - enable mysql<br>#     - enable authentication<br>#     - define WITH_IPAUTH<br>#     - add IP addresses with group id &#39;1&#39; to &#39;address&#39; table<br>
#<br># *** To enable persistent user location execute:<br>#     - enable mysql<br>#     - define WITH_USRLOCDB<br>#<br># *** To enable presence server execute:<br>#     - enable mysql<br>#     - define WITH_PRESENCE<br>#<br>
# *** To enable nat traversal execute:<br>#     - define WITH_NAT<br>#     - install RTPProxy: <a href="http://www.rtpproxy.org">http://www.rtpproxy.org</a><br>#     - start RTPProxy:<br>#        rtpproxy -l _your_public_ip_ -s udp:localhost:7722<br>
#<br># *** To enable PSTN gateway routing execute:<br>#     - define WITH_PSTN<br>#     - set the value of pstn.gw_ip<br>#     - check route[PSTN] for regexp routing condition<br>#<br># *** To enable database aliases lookup execute:<br>
#     - enable mysql<br>#     - define WITH_ALIASDB<br>#<br># *** To enable multi-domain support execute:<br>#     - enable mysql<br>#     - define WITH_MULTIDOMAIN<br>#<br># *** To enable TLS support execute:<br>#     - adjust CFGDIR/tls.cfg as needed<br>
#     - define WITH_TLS<br>#<br># *** To enable XMLRPC support execute:<br>#     - define WITH_XMLRPC<br>#     - adjust route[XMLRPC] for access policy<br>#<br># *** To enable anti-flood detection execute:<br>#     - adjust pike and htable=&gt;ipban settings as needed (default is<br>
#       block if more than 16 requests in 2 seconds and ban for 300 seconds)<br>#     - define WITH_ANTIFLOOD<br>#<br># *** To enhance accounting execute:<br>#     - enable mysql<br>#     - define WITH_ACCDB<br>#     - add following columns to database<br>
#!ifdef ACCDB_COMMENT<br>  ALTER TABLE acc ADD COLUMN src_user VARCHAR(64) NOT NULL DEFAULT &#39;&#39;;<br>  ALTER TABLE acc ADD COLUMN src_domain VARCHAR(128) NOT NULL DEFAULT &#39;&#39;;<br>  ALTER TABLE acc ADD COLUMN dst_ouser VARCHAR(64) NOT NULL DEFAULT &#39;&#39;;<br>
  ALTER TABLE acc ADD COLUMN dst_user VARCHAR(64) NOT NULL DEFAULT &#39;&#39;;<br>  ALTER TABLE acc ADD COLUMN dst_domain VARCHAR(128) NOT NULL DEFAULT &#39;&#39;;<br>  ALTER TABLE missed_calls ADD COLUMN src_user VARCHAR(64) NOT NULL DEFAULT &#39;&#39;;<br>
  ALTER TABLE missed_calls ADD COLUMN src_domain VARCHAR(128) NOT NULL DEFAULT &#39;&#39;;<br>  ALTER TABLE missed_calls ADD COLUMN dst_ouser VARCHAR(64) NOT NULL DEFAULT &#39;&#39;;<br>  ALTER TABLE missed_calls ADD COLUMN dst_user VARCHAR(64) NOT NULL DEFAULT &#39;&#39;;<br>
  ALTER TABLE missed_calls ADD COLUMN dst_domain VARCHAR(128) NOT NULL DEFAULT &#39;&#39;;<br>#!endif<br><br>####### Defined Values #########<br><br># *** Value defines - IDs used later in config<br>#!ifdef WITH_MYSQL<br>
# - database URL - used to connect to database server by modules such<br>#       as: auth_db, acc, usrloc, a.s.o.<br>#!define DBURL &quot;mysql://root:f1n4lh0p@localhost/openser&quot;<br>#!endif<br>#!ifdef WITH_MULTIDOMAIN<br>
# - the value for &#39;use_domain&#39; parameters<br>#!define MULTIDOMAIN 1<br>#!else<br>#!define MULTIDOMAIN 0<br>#!endif<br><br># - flags<br>#   FLT_ - per transaction (message) flags<br>#    FLB_ - per branch flags<br>
#!define FLT_ACC 1<br>#!define FLT_ACCMISSED 2<br>#!define FLT_ACCFAILED 3<br>#!define FLT_NATS 5<br><br>#!define FLB_NATB 6<br>#!define FLB_NATSIPPING 7<br><br>####### Global Parameters #########<br><br>#!ifdef WITH_DEBUG<br>
debug=4<br>log_stderror=yes<br>#!else<br>debug=2<br>log_stderror=no<br>#!endif<br><br>memdbg=5<br>memlog=5<br><br>log_facility=LOG_LOCAL0<br><br>fork=yes<br>children=4<br><br>/* uncomment the next line to disable TCP (default on) */<br>
#disable_tcp=yes<br><br>/* uncomment the next line to disable the auto discovery of local aliases<br>   based on reverse DNS on IPs (default on) */<br>#auto_aliases=no<br><br>/* add local domain aliases */<br>#alias=&quot;<a href="http://sip.mydomain.com">sip.mydomain.com</a>&quot;<br>
<br>/* uncomment and configure the following line if you want Kamailio to <br>   bind on a specific interface/port/proto (default bind on all available) */<br>#listen=udp:<a href="http://10.0.0.10:5060">10.0.0.10:5060</a><br>
<br>/* port to listen to<br> * - can be specified more than once if needed to listen on many ports */<br>port=5060<br><br>#!ifdef WITH_TLS<br>enable_tls=yes<br>#!endif<br><br>####### Custom Parameters #########<br><br># These parameters can be modified runtime via RPC interface<br>
# - see the documentation of &#39;cfg_rpc&#39; module.<br>#<br># Format: <a href="http://group.id">group.id</a> = value &#39;desc&#39; description<br># Access: $sel(<a href="http://cfg_get.group.id">cfg_get.group.id</a>) or @<a href="http://cfg_get.group.id">cfg_get.group.id</a><br>
#<br><br>#!ifdef WITH_PSTN<br># PSTN GW Routing<br>#<br># - pstn.gw_ip: valid IP or hostname as string value, example:<br># pstn.gw_ip = &quot;10.0.0.101&quot; desc &quot;My PSTN GW Address&quot;<br>#<br># - by default is empty to avoid misrouting<br>
pstn.gw_ip = &quot;&quot; desc &quot;PSTN GW Address&quot;<br>#!endif<br><br><br>####### Modules Section ########<br><br># set paths to location of modules<br>#!ifdef LOCAL_TEST_RUN<br>mpath=&quot;modules_k:modules&quot;<br>
#!else<br>mpath=&quot;/usr/local/lib/kamailio/modules_k/:/usr/local/lib/kamailio/modules/&quot;<br>#!endif<br><br>#!ifdef WITH_MYSQL<br>loadmodule &quot;db_mysql.so&quot;<br>#!endif<br><br>loadmodule &quot;mi_fifo.so&quot;<br>
loadmodule &quot;kex.so&quot;<br>loadmodule &quot;tm.so&quot;<br>loadmodule &quot;tmx.so&quot;<br>loadmodule &quot;sl.so&quot;<br>loadmodule &quot;rr.so&quot;<br>loadmodule &quot;pv.so&quot;<br>loadmodule &quot;maxfwd.so&quot;<br>
loadmodule &quot;usrloc.so&quot;<br>loadmodule &quot;registrar.so&quot;<br>loadmodule &quot;textops.so&quot;<br>loadmodule &quot;siputils.so&quot;<br>loadmodule &quot;xlog.so&quot;<br>loadmodule &quot;sanity.so&quot;<br>loadmodule &quot;ctl.so&quot;<br>
loadmodule &quot;mi_rpc.so&quot;<br>loadmodule &quot;acc.so&quot;<br>loadmodule &quot;mi_datagram.so&quot;<br>loadmodule &quot;rtimer.so&quot;<br>loadmodule &quot;sqlops.so&quot;<br>loadmodule &quot;cfgutils.so&quot;<br><br>
# ----- LCR -----<br>loadmodule &quot;lcr.so&quot;<br><br>#!ifdef WITH_AUTH<br>loadmodule &quot;auth.so&quot;<br>loadmodule &quot;auth_db.so&quot;<br>#!ifdef WITH_IPAUTH<br>loadmodule &quot;permissions.so&quot;<br>#!endif<br>
#!endif<br><br>#!ifdef WITH_ALIASDB<br>loadmodule &quot;alias_db.so&quot;<br>#!endif<br><br>#!ifdef WITH_MULTIDOMAIN<br>loadmodule &quot;domain.so&quot;<br>#!endif<br><br>#!ifdef WITH_PRESENCE<br>loadmodule &quot;presence.so&quot;<br>
loadmodule &quot;presence_xml.so&quot;<br>#!endif<br><br>#!ifdef WITH_NAT<br>loadmodule &quot;nathelper.so&quot;<br>loadmodule &quot;rtpproxy.so&quot;<br>#!endif<br><br>#!ifdef WITH_TLS<br>loadmodule &quot;tls.so&quot;<br>
#!endif<br><br>#!ifdef WITH_ANTIFLOOD<br>loadmodule &quot;htable.so&quot;<br>loadmodule &quot;pike.so&quot;<br>#!endif<br><br>#!ifdef WITH_XMLRPC<br>loadmodule &quot;xmlrpc.so&quot;<br>#!endif<br><br># ----------------- setting module-specific parameters ---------------<br>
<br><br># ----- mi_fifo params -----<br>modparam(&quot;mi_fifo&quot;, &quot;fifo_name&quot;, &quot;/tmp/kamailio_fifo&quot;)<br><br><br># ----- tm params -----<br># auto-discard branches from previous serial forking leg<br>
modparam(&quot;tm&quot;, &quot;failure_reply_mode&quot;, 3)<br># default retransmission timeout: 30sec<br>modparam(&quot;tm&quot;, &quot;fr_timer&quot;, 30000)<br># default invite retransmission timeout after 1xx: 120sec<br>
modparam(&quot;tm&quot;, &quot;fr_inv_timer&quot;, 120000)<br><br><br># ----- rr params -----<br># add value to ;lr param to cope with most of the UAs<br>modparam(&quot;rr&quot;, &quot;enable_full_lr&quot;, 1)<br># do not append from tag to the RR (no need for this script)<br>
modparam(&quot;rr&quot;, &quot;append_fromtag&quot;, 0)<br><br><br># ----- registrar params -----<br>modparam(&quot;registrar&quot;, &quot;method_filtering&quot;, 1)<br>/* uncomment the next line to disable parallel forking via location */<br>
# modparam(&quot;registrar&quot;, &quot;append_branches&quot;, 0)<br>/* uncomment the next line not to allow more than 10 contacts per AOR */<br>#modparam(&quot;registrar&quot;, &quot;max_contacts&quot;, 10)<br><br><br># ----- acc params -----<br>
/* what special events should be accounted ? */<br>modparam(&quot;acc&quot;, &quot;early_media&quot;, 0)<br>modparam(&quot;acc&quot;, &quot;report_ack&quot;, 0)<br>modparam(&quot;acc&quot;, &quot;report_cancels&quot;, 0)<br>
/* by default ww do not adjust the direct of the sequential requests.<br>   if you enable this parameter, be sure the enable &quot;append_fromtag&quot;<br>   in &quot;rr&quot; module */<br>modparam(&quot;acc&quot;, &quot;detect_direction&quot;, 0)<br>
/* account triggers (flags) */<br>modparam(&quot;acc&quot;, &quot;log_flag&quot;, FLT_ACC)<br>modparam(&quot;acc&quot;, &quot;log_missed_flag&quot;, FLT_ACCMISSED)<br>modparam(&quot;acc&quot;, &quot;log_extra&quot;, <br>    &quot;src_user=$fU;src_domain=$fd;dst_ouser=$tU;dst_user=$rU;dst_domain=$rd&quot;)<br>
modparam(&quot;acc&quot;, &quot;failed_transaction_flag&quot;, FLT_ACCFAILED)<br>/* enhanced DB accounting */<br>#!ifdef WITH_ACCDB<br>modparam(&quot;acc&quot;, &quot;db_flag&quot;, FLT_ACC)<br>modparam(&quot;acc&quot;, &quot;db_missed_flag&quot;, FLT_ACCMISSED)<br>
modparam(&quot;acc&quot;, &quot;db_url&quot;, DBURL)<br>modparam(&quot;acc&quot;, &quot;db_extra&quot;,<br>    &quot;src_user=$fU;src_domain=$fd;dst_ouser=$tU;dst_user=$rU;dst_domain=$rd;src_ip=$si&quot;)<br>#!endif<br><br>
<br># ----- usrloc params -----<br>/* enable DB persistency for location entries */<br>#!ifdef WITH_USRLOCDB<br>modparam(&quot;usrloc&quot;, &quot;db_url&quot;, DBURL)<br>modparam(&quot;usrloc&quot;, &quot;db_mode&quot;, 2)<br>
modparam(&quot;usrloc&quot;, &quot;use_domain&quot;, MULTIDOMAIN)<br>#!endif<br><br><br># ----- auth_db params -----<br>#!ifdef WITH_AUTH<br>modparam(&quot;auth_db&quot;, &quot;db_url&quot;, DBURL)<br>modparam(&quot;auth_db&quot;, &quot;calculate_ha1&quot;, yes)<br>
modparam(&quot;auth_db&quot;, &quot;password_column&quot;, &quot;password&quot;)<br>modparam(&quot;auth_db&quot;, &quot;load_credentials&quot;, &quot;&quot;)<br>modparam(&quot;auth_db&quot;, &quot;use_domain&quot;, MULTIDOMAIN)<br>
<br># ----- permissions params -----<br>#!ifdef WITH_IPAUTH<br>modparam(&quot;permissions&quot;, &quot;db_url&quot;, DBURL)<br>modparam(&quot;permissions&quot;, &quot;db_mode&quot;, 1)<br>#!endif<br><br>#!endif<br><br><br>
# ----- alias_db params -----<br>#!ifdef WITH_ALIASDB<br>modparam(&quot;alias_db&quot;, &quot;db_url&quot;, DBURL)<br>modparam(&quot;alias_db&quot;, &quot;use_domain&quot;, MULTIDOMAIN)<br>#!endif<br><br><br># ----- domain params -----<br>
#!ifdef WITH_MULTIDOMAIN<br>modparam(&quot;domain&quot;, &quot;db_url&quot;, DBURL)<br># use caching<br>modparam(&quot;domain&quot;, &quot;db_mode&quot;, 1)<br># register callback to match myself condition with domains list<br>
modparam(&quot;domain&quot;, &quot;register_myself&quot;, 1)<br>#!endif<br><br><br>#!ifdef WITH_PRESENCE<br># ----- presence params -----<br>modparam(&quot;presence&quot;, &quot;db_url&quot;, DBURL)<br><br># ----- presence_xml params -----<br>
modparam(&quot;presence_xml&quot;, &quot;db_url&quot;, DBURL)<br>modparam(&quot;presence_xml&quot;, &quot;force_active&quot;, 1)<br>#!endif<br><br><br>#!ifdef WITH_NAT<br># ----- rtpproxy params -----<br>modparam(&quot;rtpproxy&quot;, &quot;rtpproxy_sock&quot;, &quot;udp:<a href="http://127.0.0.1:7722">127.0.0.1:7722</a>&quot;)<br>
<br># ----- nathelper params -----<br>modparam(&quot;nathelper&quot;, &quot;natping_interval&quot;, 30)<br>modparam(&quot;nathelper&quot;, &quot;ping_nated_only&quot;, 1)<br>modparam(&quot;nathelper&quot;, &quot;sipping_bflag&quot;, FLB_NATSIPPING)<br>
modparam(&quot;nathelper&quot;, &quot;sipping_from&quot;, &quot;<a href="mailto:sip%3Apinger@finalhop.net">sip:pinger@finalhop.net</a>&quot;)<br><br># params needed for NAT traversal in other modules<br>modparam(&quot;nathelper|registrar&quot;, &quot;received_avp&quot;, &quot;$avp(RECEIVED)&quot;)<br>
modparam(&quot;usrloc&quot;, &quot;nat_bflag&quot;, FLB_NATB)<br>#!endif<br><br><br>#!ifdef WITH_TLS<br># ----- tls params -----<br>modparam(&quot;tls&quot;, &quot;config&quot;, &quot;/usr/local/etc/kamailio/tls.cfg&quot;)<br>
#!endif<br><br>#!ifdef WITH_ANTIFLOOD<br># ----- pike params -----<br>modparam(&quot;pike&quot;, &quot;sampling_time_unit&quot;, 2)<br>modparam(&quot;pike&quot;, &quot;reqs_density_per_unit&quot;, 16)<br>modparam(&quot;pike&quot;, &quot;remove_latency&quot;, 4)<br>
<br># ----- htable params -----<br># ip ban htable with autoexpire after 5 minutes<br>modparam(&quot;htable&quot;, &quot;htable&quot;, &quot;ipban=&gt;size=8;autoexpire=300;&quot;)<br>#!endif<br><br>#!ifdef WITH_XMLRPC<br>
# ----- xmlrpc params -----<br>modparam(&quot;xmlrpc&quot;, &quot;route&quot;, &quot;XMLRPC&quot;);<br>modparam(&quot;xmlrpc&quot;, &quot;url_match&quot;, &quot;^/RPC&quot;)<br>#!endif<br><br># ----- Mi_Datagram -----<br>
modparam(&quot;mi_datagram&quot;, &quot;socket_name&quot;, &quot;udp:<a href="http://127.0.0.1:8033">127.0.0.1:8033</a>&quot;)<br><br># ----- Charts -----<br>modparam(&quot;rtimer&quot;, &quot;timer&quot;, &quot;name=tst;interval=300;mode=1;&quot;)<br>
modparam(&quot;rtimer&quot;, &quot;exec&quot;, &quot;timer=tst;route=STATS&quot;)<br>modparam(&quot;sqlops&quot;,&quot;sqlcon&quot;,<br>         &quot;ca=&gt;mysql://root:f1n4lh0p@localhost/openser&quot;)<br><br># ----- LCR -----<br>
modparam(&quot;lcr&quot;,&quot;db_url&quot;, &quot;mysql://root:f1n4lh0p@localhost/openser&quot;)<br>modparam(&quot;lcr&quot;,&quot;lcr_gw_table&quot;,&quot;lcr_gw&quot;)<br>modparam(&quot;lcr&quot;,&quot;id_column&quot;, &quot;id&quot;)<br>
modparam(&quot;lcr&quot;,&quot;lcr_id_column&quot;, &quot;lcr_id&quot;)<br>modparam(&quot;lcr&quot;,&quot;tag_column&quot;,&quot;tag&quot;)<br>modparam(&quot;lcr&quot;,&quot;weight_column&quot;,&quot;gw_weight&quot;)<br>modparam(&quot;lcr&quot;,&quot;flags_column&quot;,&quot;flags&quot;)<br>
modparam(&quot;lcr&quot;,&quot;gw_name_column&quot;,&quot;gw_name&quot;)<br>modparam(&quot;lcr&quot;,&quot;ip_addr_column&quot;,&quot;ip_addr&quot;)<br>modparam(&quot;lcr&quot;,&quot;port_column&quot;,&quot;port&quot;)<br>
modparam(&quot;lcr&quot;,&quot;params_column&quot;, &quot;params&quot;)<br>modparam(&quot;lcr&quot;,&quot;hostname_column&quot;,&quot;hostname&quot;)<br>modparam(&quot;lcr&quot;,&quot;uri_scheme_column&quot;,&quot;uri_scheme&quot;)<br>
modparam(&quot;lcr&quot;,&quot;strip_column&quot;,&quot;strip&quot;)<br>modparam(&quot;lcr&quot;,&quot;transport_column&quot;,&quot;transport&quot;)<br>modparam(&quot;lcr&quot;,&quot;tag_column&quot;, &quot;tag&quot;)<br>
modparam(&quot;lcr&quot;,&quot;defunct_column&quot;, &quot;defunct&quot;)<br>modparam(&quot;lcr&quot;,&quot;lcr_rule_table&quot;,&quot;lcr_rule&quot;)<br>modparam(&quot;lcr&quot;,&quot;prefix_column&quot;,&quot;prefix&quot;)<br>
modparam(&quot;lcr&quot;,&quot;from_uri_column&quot;,&quot;from_uri&quot;)<br>modparam(&quot;lcr&quot;,&quot;priority_column&quot;,&quot;priority&quot;)<br>modparam(&quot;lcr&quot;,&quot;stopper_column&quot;, &quot;stopper&quot;)<br>
modparam(&quot;lcr&quot;,&quot;enabled_column&quot;, &quot;enabled&quot;)<br>modparam(&quot;lcr&quot;,&quot;lcr_rule_target_table&quot;, &quot;lcr_rule_target&quot;)<br>modparam(&quot;lcr&quot;, &quot;rule_id_column&quot;, &quot;rule_id&quot;)<br>
modparam(&quot;lcr&quot;, &quot;gw_id_column&quot;, &quot;gw_id&quot;)<br>modparam(&quot;lcr&quot;, &quot;priority_column&quot;, &quot;priority&quot;)<br>modparam(&quot;lcr&quot;,&quot;weight_column&quot;, &quot;weight&quot;)<br>
modparam(&quot;lcr&quot;, &quot;lcr_count&quot;, 1)<br>modparam(&quot;lcr&quot;,&quot;gw_uri_avp&quot;, &quot;$avp(i:709)&quot;)<br>modparam(&quot;lcr&quot;,&quot;ruri_user_avp&quot;, &quot;$avp(i:500)&quot;)<br>modparam(&quot;lcr&quot;, &quot;flags_avp&quot;, &quot;$avp(i:712)&quot;)<br>
modparam(&quot;lcr&quot;, &quot;defunct_capability&quot;, 0)<br>modparam(&quot;lcr&quot;, &quot;lcr_id_avp&quot;, &quot;$avp(s:lcr_id_avp)&quot;)<br>modparam(&quot;lcr&quot;, &quot;defunct_gw_avp&quot;, &quot;$avp(s:defunct_gw_avp)&quot;)<br>
modparam(&quot;lcr&quot;, &quot;lcr_rule_hash_size&quot;, 128)<br>modparam(&quot;lcr&quot;, &quot;lcr_gw_count&quot;, 128)<br>modparam(&quot;lcr&quot;, &quot;fetch_rows&quot;, 1024)<br><br><br>####### Routing Logic ########<br>
<br><br># Main SIP request routing logic<br># - processing of any incoming SIP request starts with this route<br>route {<br><br>    # per request initial checks<br>    route(REQINIT);<br><br>    # NAT detection<br>    route(NAT);<br>
<br>    # handle requests within SIP dialogs<br>    route(WITHINDLG);<br><br>    ### only initial requests (no To tag)<br><br>    # CANCEL processing<br>    if (is_method(&quot;CANCEL&quot;))<br>    {<br>        if (t_check_trans())<br>
            t_relay();<br>        exit;<br>    }<br><br>    t_check_trans();<br><br>    # authentication<br>    route(AUTH);<br><br>    # record routing for dialog forming requests (in case they are routed)<br>    # - remove preloaded route headers<br>
    remove_hf(&quot;Route&quot;);<br>    if (is_method(&quot;INVITE|SUBSCRIBE&quot;))<br>        record_route();<br><br>    # account only INVITEs<br>    if (is_method(&quot;INVITE&quot;))<br>    {<br>        setflag(FLT_ACC); # do accounting<br>
    }<br><br>    # dispatch requests to foreign domains<br>    route(SIPOUT);<br><br>    ### requests for my local domains<br><br>    # handle presence related requests<br>    route(PRESENCE);<br><br>    # handle registrations<br>
    route(REGISTRAR);<br><br>    if ($rU==$null)<br>    {<br>        # request with no Username in RURI<br>        sl_send_reply(&quot;484&quot;,&quot;Address Incomplete&quot;);<br>        exit;<br>    }<br><br>    # dispatch destinations to PSTN<br>
    route(PSTN);<br><br>    # user location service<br>    route(LOCATION);<br><br>    route(RELAY);<br><br>}<br><br><br>route[RELAY] {<br>#!ifdef WITH_NAT<br>    if (check_route_param(&quot;nat=yes&quot;)) {<br>        setbflag(FLB_NATB);<br>
    }<br>    if (isflagset(FLT_NATS) || isbflagset(FLB_NATB)) {<br>        route(RTPPROXY);<br>    }<br>#!endif<br><br>    /* example how to enable some additional event routes */<br>    if (is_method(&quot;INVITE&quot;)) {<br>
        #t_on_branch(&quot;BRANCH_ONE&quot;);<br>        t_on_reply(&quot;REPLY_ONE&quot;);<br>        t_on_failure(&quot;FAIL_ONE&quot;);<br>    }<br><br>    if (!t_relay()) {<br>        sl_reply_error();<br>    }<br>    exit;<br>
}<br><br># Per SIP request initial checks<br>route[REQINIT] {<br>#!ifdef WITH_ANTIFLOOD<br>    # flood dection from same IP and traffic ban for a while<br>    # be sure you exclude checking trusted peers, such as pstn gateways<br>
    # - local host excluded (e.g., loop to self)<br>    if(src_ip!=myself)<br>    {<br>        if($sht(ipban=&gt;$si)!=$null)<br>        {<br>            # ip is already blocked<br>            xdbg(&quot;request from blocked IP - $rm from $fu (IP:$si:$sp)\n&quot;);<br>
            exit;<br>        }<br>        if (!pike_check_req())<br>        {<br>            xlog(&quot;L_ALERT&quot;,&quot;ALERT: pike blocking $rm from $fu (IP:$si:$sp)\n&quot;);<br>            $sht(ipban=&gt;$si) = 1;<br>
            exit;<br>        }<br>    }<br>#!endif<br><br>    if (!mf_process_maxfwd_header(&quot;10&quot;)) {<br>        sl_send_reply(&quot;483&quot;,&quot;Too Many Hops&quot;);<br>        exit;<br>    }<br><br>    if(!sanity_check(&quot;1511&quot;, &quot;7&quot;))<br>
    {<br>        xlog(&quot;Malformed SIP message from $si:$sp\n&quot;);<br>        exit;<br>    }<br>}<br><br># Handle requests within SIP dialogs<br>route[WITHINDLG] {<br>    if (has_totag()) {<br>        # sequential request withing a dialog should<br>
        # take the path determined by record-routing<br>        if (loose_route()) {<br>            if (is_method(&quot;BYE&quot;)) {<br>                setflag(FLT_ACC); # do accounting ...<br>                setflag(FLT_ACCFAILED); # ... even if the transaction fails<br>
            }<br>            route(RELAY);<br>        } else {<br>            if (is_method(&quot;SUBSCRIBE&quot;) &amp;&amp; uri == myself) {<br>                # in-dialog subscribe requests<br>                route(PRESENCE);<br>
                exit;<br>            }<br>            if ( is_method(&quot;ACK&quot;) ) {<br>                if ( t_check_trans() ) {<br>                    # no loose-route, but stateful ACK;<br>                    # must be an ACK after a 487<br>
                    # or e.g. 404 from upstream server<br>                    t_relay();<br>                    exit;<br>                } else {<br>                    # ACK without matching transaction ... ignore and discard<br>
                    exit;<br>                }<br>            }<br>            sl_send_reply(&quot;404&quot;,&quot;Not here&quot;);<br>        }<br>        exit;<br>    }<br>}<br><br># Handle SIP registrations<br>route[REGISTRAR] {<br>
    if (is_method(&quot;REGISTER&quot;))<br>    {<br>        if(isflagset(FLT_NATS))<br>        {<br>            setbflag(FLB_NATB);<br>            # uncomment next line to do SIP NAT pinging <br>            ## setbflag(FLB_NATSIPPING);<br>
        }<br>        if (!save(&quot;location&quot;))<br>            sl_reply_error();<br><br>        exit;<br>    }<br>}<br><br># USER location service<br>route[LOCATION] {<br><br>#!ifdef WITH_ALIASDB<br>    # search in DB-based aliases<br>
    alias_db_lookup(&quot;dbaliases&quot;);<br>#!endif<br><br>    if (!lookup(&quot;location&quot;)) {<br>        switch ($rc) {<br>            case -1:<br>            case -3:<br>                t_newtran();<br>                t_reply(&quot;404&quot;, &quot;Not Found&quot;);<br>
                exit;<br>            case -2:<br>                sl_send_reply(&quot;405&quot;, &quot;Method Not Allowed&quot;);<br>                exit;<br>        }<br>    }<br><br>    # when routing via usrloc, log the missed calls also<br>
    if (is_method(&quot;INVITE&quot;))<br>    {<br>        setflag(FLT_ACCMISSED);<br>    }<br>}<br><br># Presence server route<br>route[PRESENCE] {<br>    if(!is_method(&quot;PUBLISH|SUBSCRIBE&quot;))<br>        return;<br>
<br>#!ifdef WITH_PRESENCE<br>    if (!t_newtran())<br>    {<br>        sl_reply_error();<br>        exit;<br>    };<br><br>    if(is_method(&quot;PUBLISH&quot;))<br>    {<br>        handle_publish();<br>        t_release();<br>
    }<br>    else<br>    if( is_method(&quot;SUBSCRIBE&quot;))<br>    {<br>        handle_subscribe();<br>        t_release();<br>    }<br>    exit;<br>#!endif<br>    <br>    # if presence enabled, this part will not be executed<br>
    if (is_method(&quot;PUBLISH&quot;) || $rU==$null)<br>    {<br>        sl_send_reply(&quot;404&quot;, &quot;Not here&quot;);<br>        exit;<br>    }<br>    return;<br>}<br><br># Authentication route<br>route[AUTH] {<br>
#!ifdef WITH_AUTH<br>    if (is_method(&quot;REGISTER&quot;))<br>    {<br>        # authenticate the REGISTER requests (uncomment to enable auth)<br>        if (!www_authorize(&quot;$td&quot;, &quot;subscriber&quot;))<br>
        {<br>            www_challenge(&quot;$td&quot;, &quot;0&quot;);<br>            exit;<br>        }<br><br>        if ($au!=$tU)<br>        {<br>            sl_send_reply(&quot;403&quot;,&quot;Forbidden auth ID&quot;);<br>
            exit;<br>        }<br>    } else {<br><br>#!ifdef WITH_IPAUTH<br>        if(allow_source_address())<br>        {<br>            # source IP allowed<br>            return;<br>        }<br>#!endif<br><br>        # authenticate if from local subscriber<br>
        if (from_uri==myself)<br>        {<br>            if (!proxy_authorize(&quot;$fd&quot;, &quot;subscriber&quot;)) {<br>                proxy_challenge(&quot;$fd&quot;, &quot;0&quot;);<br>                exit;<br>            }<br>
            if (is_method(&quot;PUBLISH&quot;))<br>            {<br>                if ($au!=$tU) {<br>                    sl_send_reply(&quot;403&quot;,&quot;Forbidden auth ID&quot;);<br>                    exit;<br>                }<br>
            } else {<br>                if ($au!=$fU) {<br>                    sl_send_reply(&quot;403&quot;,&quot;Forbidden auth ID&quot;);<br>                    exit;<br>                }<br>            }<br><br>            consume_credentials();<br>
            # caller authenticated<br>        } else {<br>            # caller is not local subscriber, then check if it calls<br>            # a local destination, otherwise deny, not an open relay here<br>            if (!uri==myself)<br>
            {<br>                sl_send_reply(&quot;403&quot;,&quot;Not relaying&quot;);<br>                exit;<br>            }<br>        }<br>    }<br>#!endif<br>    return;<br>}<br><br># Caller NAT detection route<br>
route[NAT] {<br>#!ifdef WITH_NAT<br>    force_rport();<br>    if (nat_uac_test(&quot;19&quot;)) {<br>        if (method==&quot;REGISTER&quot;) {<br>            fix_nated_register();<br>        } else {<br>            fix_nated_contact();<br>
        }<br>        setflag(FLT_NATS);<br>    }<br>#!endif<br>    return;<br>}<br><br># RTPProxy control<br>route[RTPPROXY] {<br>#!ifdef WITH_NAT<br>    if (is_method(&quot;BYE&quot;)) {<br>        unforce_rtp_proxy();<br>
    } else if (is_method(&quot;INVITE&quot;)){<br>        force_rtp_proxy();<br>    }<br>    if (!has_totag()) add_rr_param(&quot;;nat=yes&quot;);<br>#!endif<br>    return;<br>}<br><br># Routing to foreign domains<br>route[SIPOUT] {<br>
    if (!uri==myself)<br>    {<br>        append_hf(&quot;P-hint: outbound\r\n&quot;);<br>        route(RELAY);<br>    }<br>}<br><br># PSTN GW routing<br>route[PSTN] {<br>#!ifdef WITH_PSTN<br>    # check if PSTN GW IP is defined<br>
    if (strempty($sel(cfg_get.pstn.gw_ip))) {<br>        xlog(&quot;SCRIPT: PSTN rotuing enabled but pstn.gw_ip not defined\n&quot;);<br>        return;<br>    }<br><br>    # route to PSTN dialed numbers starting with &#39;+&#39; or &#39;00&#39;<br>
    #     (international format)<br>    # - update the condition to match your dialing rules for PSTN routing<br>    if(!($rU=~&quot;^(\+|00)[1-9][0-9]{3,20}$&quot;))<br>        return;<br><br>    # only local users allowed to call<br>
    if(from_uri!=myself) {<br>        sl_send_reply(&quot;403&quot;, &quot;Not Allowed&quot;);<br>        exit;<br>    }<br><br>    $ru = &quot;sip:&quot; + $rU + &quot;@&quot; + $sel(cfg_get.pstn.gw_ip);<br><br>    route(RELAY);<br>
    exit;<br>#!endif<br><br>    return;<br>}<br><br># XMLRPC routing<br>#!ifdef WITH_XMLRPC<br>route[XMLRPC]<br>{<br>    # allow XMLRPC from localhost<br>    if ((method==&quot;POST&quot; || method==&quot;GET&quot;)<br>            &amp;&amp; (src_ip==127.0.0.1)) {<br>
        # close connection only for xmlrpclib user agents (there is a bug in<br>        # xmlrpclib: it waits for EOF before interpreting the response).<br>        if ($hdr(User-Agent) =~ &quot;xmlrpclib&quot;)<br>            set_reply_close();<br>
        set_reply_no_connect();<br>        dispatch_rpc();<br>        exit;<br>    }<br>    send_reply(&quot;403&quot;, &quot;Forbidden&quot;);<br>    exit;<br>}<br>#!endif<br><br># Sample branch router<br>branch_route[BRANCH_ONE] {<br>
    xdbg(&quot;new branch at $ru\n&quot;);<br>}<br><br># Sample onreply route<br>onreply_route[REPLY_ONE] {<br>    xdbg(&quot;incoming reply\n&quot;);<br>#!ifdef WITH_NAT<br>    if ((isflagset(FLT_NATS) || isbflagset(FLB_NATB))<br>
            &amp;&amp; status=~&quot;(183)|(2[0-9][0-9])&quot;) {<br>        force_rtp_proxy();<br>    }<br>    if (isbflagset(&quot;6&quot;)) {<br>        fix_nated_contact();<br>    }<br>#!endif<br>}<br><br># Siremis Charts<br>
route[STATS] {<br>   sql_query(&quot;ca&quot;,<br>       &quot;insert into statistics (time_stamp,shm_used_size,shm_real_used_size,&quot;<br>         &quot;shm_max_used_size,shm_free_used_size,ul_users,ul_contacts) values ($Ts,&quot;<br>
         &quot;$stat(used_size),$stat(real_used_size),$stat(max_used_size),&quot;<br>         &quot;$stat(free_size),$stat(location-users),$stat(location-contacts))&quot;,<br>       &quot;ra&quot;);<br>}<br><br><br># Sample failure route<br>
failure_route[FAIL_ONE] {<br>#!ifdef WITH_NAT<br>    if (is_method(&quot;INVITE&quot;)<br>            &amp;&amp; (isbflagset(FLB_NATB) || isflagset(FLT_NATS))) {<br>        unforce_rtp_proxy();<br>    }<br>#!endif<br><br>
    if (t_is_canceled()) {<br>        exit;<br>    }<br><br>    # uncomment the following lines if you want to block client <br>    # redirect based on 3xx replies.<br>    ##if (t_check_status(&quot;3[0-9][0-9]&quot;)) {<br>
    ##t_reply(&quot;404&quot;,&quot;Not found&quot;);<br>    ##    exit;<br>    ##}<br><br>    # uncomment the following lines if you want to redirect the failed <br>    # calls to a different new destination<br>    ##if (t_check_status(&quot;486|408&quot;)) {<br>
    ##    sethostport(&quot;<a href="http://192.168.2.100:5060">192.168.2.100:5060</a>&quot;);<br>    ##    append_branch();<br>    ##    # do not set the missed call flag again<br>    ##    t_relay();<br>    ##}<br>}<br>
root@u15396663:/var/log# <br><br>