한국어

소프트스위치

온누리070 플레이스토어 다운로드
    acrobits softphone
     온누리 070 카카오 프러스 친구추가온누리 070 카카오 프러스 친구추가친추
     카카오톡 채팅 상담 카카오톡 채팅 상담카톡
    
     라인상담
     라인으로 공유

     페북공유

   ◎위챗 : speedseoul


  
     PAYPAL
     
     PRICE
     

pixel.gif

    before pay call 0088 from app


https://www.opensips.org/Documentation/Script-Routes-2-3

    route {
         if(is_method("OPTIONS")) {
            # send reply for each options request
            sl_send_reply("200", "ok");
            exit();
         }
         route(1);
    }
    route[1] {
         # forward according to uri
         forward();
    }

 route {
        lookup("location");
        t_on_branch("1");
        if(!t_relay()) {
            sl_send_reply("500", "relaying failed");
        }
    }
    branch_route[1] {
        if(uri=~"10\.10\.10\.10") {
            # discard branches that go to 10.10.10.10
            drop();
        }
    }

   route {
        lookup("location");
        t_on_failure("1");
        if(!t_relay()) {
            sl_send_reply("500", "relaying failed");
        }
    }
    failure_route[1] {
        if(is_method("INVITE")) {
             # call failed - relay to voice mail
             t_relay("udp:voicemail.server.com:5060");
        }
    }

route {
        seturi("sip:bob@opensips.org");  # first branch
        append_branch("sip:alice@opensips.org"); # second branch

        t_on_reply("global"); # the "global" reply route
                              # is set the whole transaction
        t_on_branch("1");

        t_relay();
}

branch_route[1] {
        if ($rU=="alice")
                t_on_reply("alice"); # the "alice" reply route
                                      # is set only for second branch
}

onreply_route {
        xlog("OpenSIPS received a reply from $si\n");
}


onreply_route[alice] {
        xlog("received reply on the branch from alice\n");
}

onreply_route[global] {
        if (t_check_status("1[0-9][0-9]")) {
                setflag(1);
                log("provisional reply received\n");
                if (t_check_status("183"))
                        drop;
        }
}

  error_route {
     xlog("--- error route class=$(err.class) level=$(err.level)
            info=$(err.info) rcode=$(err.rcode) rreason=$(err.rreason) ---\n");
     xlog("--- error from [$si:$sp]\n+++++\n$mb\n++++\n");
     sl_send_reply("$err.rcode", "$err.rreason");
     exit;
  }

  local_route {
     if (is_method("INVITE") && $ru=~"@foreign.com") {
        append_hf("P-hint: foreign request\r\n");
        exit;
     }
     if (is_method("BYE") ) {
        acc_log_request("internally generated BYE");
     }
  }

 startup_route {
    avp_db_query("select gwlist where ruleid==1",$avp(i:100));
    cache_store("local", "rule1", "$avp(i:100)");
  }

  timer_route[gw_update, 300] {
    avp_db_query("select gwlist where ruleid==1",$avp(i:100));
    $shv(i:100) =$avp(i:100);
  }

event_route[E_PIKE_BLOCKED] {
    xlog("The E_PIKE_BLOCKED event was raised\n");
  }
  event_route[E_PIKE_BLOCKED, async] {
    xlog("The E_PIKE_BLOCKED event was raised\n");
  }

조회 수 :
6617
등록일 :
2023.08.13
04:59:56 (*.246.68.224)
엮인글 :
http://webs.co.kr/index.php?document_srl=3349479&act=trackback&key=1e6
게시글 주소 :
http://webs.co.kr/index.php?document_srl=3349479
List of Articles
번호 제목 글쓴이 날짜 조회 수
171 Asterisk 에서 FreeSWITCH 전환 admin 2024-04-09 135
170 OpenSIPS 이해 서비스 지원 admin 2024-04-09 128
169 OpenSIPS install configuration support admin 2024-04-09 120
» opensips basic route script configuration admin 2023-08-13 6617
167 opensips-cli command admin 2023-08-07 7050
166 string trans opensips admin 2023-08-05 5191
165 opensips Push Notification configuration admin 2023-07-29 5247
164 opensips Call pickup configuration admin 2023-07-27 5159
163 t_relay opensips admin 2023-07-25 5069
162 debian 11 opensips 3.2 install command admin 2023-06-25 9377
161 Opensips Gateway between SIP and SMPP messages admin 2019-02-19 266229
160 smpp sms opensips admin 2019-02-19 11590
159 Busy Lamp Field (BLF) feature on Opensips 2.4.0 with Zoiper configuration admin 2018-05-29 21176
158 Documentation -> Tutorials -> WebSocket Transport using OpenSIPS admin 2018-05-17 17740
157 List of SIP response codes admin 2017-12-20 41477
156 opensips/modules/event_routing/ Push Notification Call pickup admin 2017-12-20 14318
155 opensips push notification How to detail file admin 2017-12-20 24709
154 OpenSIPS routing logic admin 2017-12-12 46210
153 OpenSIPS example configuration admin 2017-12-12 18318
152 opensips complete configuration example admin 2017-12-10 41662
151 Opensips1.6 ebook detail configuration and SIP signal and NAT etc file admin 2017-12-10 71961
150 dictionary.opensips radius admin 2017-12-09 94934
149 what is record_route() in opensips ? admin 2017-12-09 24205
148 what is loose_route() in opensips ? file admin 2017-12-09 23599
147 in opensips what is lookup(domain [, flags [, aor]]) admin 2017-12-09 91026
146 in opensips db_does_uri_exist() what is admin 2017-12-09 18131
145 in opensips what is has_totag() admin 2017-12-09 21876
144 opensips exec module admin 2017-12-08 18554
143 opensips push notification How to admin 2017-12-07 21346
142 OpenSIPS Module Interface admin 2017-12-07 42101