한국어

소프트스위치

온누리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");
  }

조회 수 :
7202
등록일 :
2023.08.13
04:59:56 (*.246.68.224)
엮인글 :
http://www.webs.co.kr/index.php?document_srl=3349479&act=trackback&key=1f2
게시글 주소 :
http://www.webs.co.kr/index.php?document_srl=3349479
List of Articles
번호 제목 글쓴이 날짜 조회 수
» opensips basic route script configuration admin 2023-08-13 7202
170 Opensips Gateway between SIP and SMPP messages admin 2019-02-19 266926
169 smpp sms opensips admin 2019-02-19 12034
168 Busy Lamp Field (BLF) feature on Opensips 2.4.0 with Zoiper configuration admin 2018-05-29 21628
167 Documentation -> Tutorials -> WebSocket Transport using OpenSIPS admin 2018-05-17 18180
166 List of SIP response codes admin 2017-12-20 41946
165 opensips/modules/event_routing/ Push Notification Call pickup admin 2017-12-20 14787
164 opensips push notification How to detail file admin 2017-12-20 25170
163 OpenSIPS routing logic admin 2017-12-12 46687
162 OpenSIPS example configuration admin 2017-12-12 18771
161 opensips complete configuration example admin 2017-12-10 42157
160 Opensips1.6 ebook detail configuration and SIP signal and NAT etc file admin 2017-12-10 72479
159 dictionary.opensips radius admin 2017-12-09 95556
158 what is record_route() in opensips ? admin 2017-12-09 24715
157 what is loose_route() in opensips ? file admin 2017-12-09 24039
156 in opensips what is lookup(domain [, flags [, aor]]) admin 2017-12-09 91589
155 in opensips db_does_uri_exist() what is admin 2017-12-09 18573
154 in opensips what is has_totag() admin 2017-12-09 22344
153 opensips exec module admin 2017-12-08 19021
152 opensips push notification How to admin 2017-12-07 21795
151 OpenSIPS Module Interface admin 2017-12-07 42604
150 opensips configuration config explain easy basic 오픈쉽스 컨피그레이션 기본 설명 file admin 2017-12-07 22169
149 openssl 을 이용한 인증서 생성 절차를 정리한다. 개인키 CSR SSL 인증서 파일 생성 admin 2017-09-14 24017
148 Documentation -> Tutorials -> TLS opensips.cfg admin 2017-09-14 24995
147 Using TLS in OpenSIPS v2.2.x admin 2017-09-14 45057
146 How to setup a Jabber / XMPP server on Debian 8 (jessie) using ejabberd admin 2017-09-13 124338
145 SIP to XMPP Gateway + SIP Presence Server opensips admin 2017-09-13 52350
144 OpenSIPS command line tricks admin 2017-09-13 45234
143 Fail2Ban Freeswitch How to secure admin 2017-09-12 61488
142 opensips tls cfg admin 2017-09-14 30041