On 24 January 2013 08:16, sr-users-request@lists.sip-router.org wrote:
Send sr-users mailing list submissions to sr-users@lists.sip-router.org
To subscribe or unsubscribe via the World Wide Web, visit http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users or, via email, send a message with subject or body 'help' to sr-users-request@lists.sip-router.org
You can reach the person managing the list at sr-users-owner@lists.sip-router.org
When replying, please edit your Subject line so it is more specific than "Re: Contents of sr-users digest..."
Today's Topics:
- Re: Asterisk and dispatcher (SamyGo)
- Re: Asterisk and dispatcher (SamyGo)
- Kamailio Multi tenant as registrar server ony (andrea mucci)
- help me about siremis. (???)
Message: 1 Date: Wed, 23 Jan 2013 22:26:26 -0800 From: SamyGo govoiper@gmail.com Subject: Re: [SR-Users] Asterisk and dispatcher To: "SIP Router - Kamailio (OpenSER) and SIP Express Router (SER) - Users Mailing List" sr-users@lists.sip-router.org Message-ID: < CAJUJwtjjg+iGH6+QuDtRkEH+mn+dkiObUFcPyNMKTv-0xHnYMQ@mail.gmail.com> Content-Type: text/plain; charset="iso-8859-1"
Hi,
You've metioned this already in your code:
if(ds_is_from_list("1"))
Is this not working for you?
Regards, Sammy
On Wed, Jan 23, 2013 at 10:44 AM, Ian French fretec@gmail.com wrote:
Hi,
I've been working my way through this tutorial (
http://kb.asipto.com/asterisk:realtime:kamailio-3.0.x-asterisk-1.6.2-astdb )
and all it working well thanks. In the other benifits section you
mention
that this configuration can be used with multiple instances of Asterisk. I've configured my [TOASTERISK] route
route[TOASTERISK] { ds_select_dst("1","4"); $sht(forw=>$ft)=$du; sl_send_reply("100","Trying"); xlog("L_INFO","INVITE: INVITE [$tU] Passed to [$du] Asterisk Cluster [$rm:$au].\n"); route(RELAY); exit;
How can i achieve the same for my [FROMASTERISK] route as now with
asterisk.bindip = "x.x.x.x" desc "Asterisk IP Address" asterisk.bindport = "5060" desc "Asterisk Port"
and
route[FROMASTERISK] { if($si==$sel(cfg_get.asterisk.bindip) && $sp==$sel(cfg_get.asterisk.bindport)) xlog("L_INFO","INVITE: INVITE Passed From [$fu] Asterisk Cluster To [$rm:$au].\n"); return 1; return -1; }
This allows calls only from cfg_get.asterisk.bindip (single gateway)
where
I would like gateways in the dispatcher list to be selected and marked
as a
positive match
if(ds_is_from_list("1")) $sht(forw=>$ft)=$si; xlog("L_INFO","INVITE: INVITE Passed From [$fu] Asterisk Cluster To [$rm:$au].\n"); return 1; return -1; }
Can you help?
Thanks in advance Ian _______________________________________________ SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list sr-users@lists.sip-router.org http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users
Here you go,
if(ds_is_from_list("1"))*{* $sht(forw=>$ft)=$si; xlog("L_INFO","INVITE: INVITE Passed From [$fu] Asterisk Cluster To [$rm:$au].\n"); return 1; *}* return -1;
Without these you're always going to see the xlog message printed and return 1. Now these baces will ensure that the three lines are executed only for the IPs which match the dispatcher table entries.
Thanks, Sammy
On Tue, Jan 29, 2013 at 10:55 PM, Ian French fretec@gmail.com wrote:
On 24 January 2013 08:16, sr-users-request@lists.sip-router.org wrote:
Send sr-users mailing list submissions to sr-users@lists.sip-router.org
To subscribe or unsubscribe via the World Wide Web, visit http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users or, via email, send a message with subject or body 'help' to sr-users-request@lists.sip-router.org
You can reach the person managing the list at sr-users-owner@lists.sip-router.org
When replying, please edit your Subject line so it is more specific than "Re: Contents of sr-users digest..."
Today's Topics:
- Re: Asterisk and dispatcher (SamyGo)
- Re: Asterisk and dispatcher (SamyGo)
- Kamailio Multi tenant as registrar server ony (andrea mucci)
- help me about siremis. (???)
Message: 1 Date: Wed, 23 Jan 2013 22:26:26 -0800 From: SamyGo govoiper@gmail.com Subject: Re: [SR-Users] Asterisk and dispatcher To: "SIP Router - Kamailio (OpenSER) and SIP Express Router (SER) - Users Mailing List" sr-users@lists.sip-router.org Message-ID: < CAJUJwtjjg+iGH6+QuDtRkEH+mn+dkiObUFcPyNMKTv-0xHnYMQ@mail.gmail.com> Content-Type: text/plain; charset="iso-8859-1"
Hi,
You've metioned this already in your code:
if(ds_is_from_list("1"))
Is this not working for you?
Regards, Sammy
On Wed, Jan 23, 2013 at 10:44 AM, Ian French fretec@gmail.com wrote:
Hi,
I've been working my way through this tutorial (
http://kb.asipto.com/asterisk:realtime:kamailio-3.0.x-asterisk-1.6.2-astdb )
and all it working well thanks. In the other benifits section you
mention
that this configuration can be used with multiple instances of
Asterisk.
I've configured my [TOASTERISK] route
route[TOASTERISK] { ds_select_dst("1","4"); $sht(forw=>$ft)=$du; sl_send_reply("100","Trying"); xlog("L_INFO","INVITE: INVITE [$tU] Passed to [$du] Asterisk Cluster [$rm:$au].\n"); route(RELAY); exit;
How can i achieve the same for my [FROMASTERISK] route as now with
asterisk.bindip = "x.x.x.x" desc "Asterisk IP Address" asterisk.bindport = "5060" desc "Asterisk Port"
and
route[FROMASTERISK] { if($si==$sel(cfg_get.asterisk.bindip) && $sp==$sel(cfg_get.asterisk.bindport)) xlog("L_INFO","INVITE: INVITE Passed From [$fu] Asterisk Cluster To [$rm:$au].\n"); return 1; return -1; }
This allows calls only from cfg_get.asterisk.bindip (single gateway)
where
I would like gateways in the dispatcher list to be selected and marked
as a
positive match
if(ds_is_from_list("1")) $sht(forw=>$ft)=$si; xlog("L_INFO","INVITE: INVITE Passed From [$fu] Asterisk Cluster To [$rm:$au].\n"); return 1; return -1; }
Can you help?
Thanks in advance Ian _______________________________________________ SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list sr-users@lists.sip-router.org http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users