Re: [Freeswitch-users] dialpaln

2008-09-22 Thread Gopal krishnan
Hi, Any suggestion on this? Thanks On Sat, Sep 20, 2008 at 6:50 PM, Gopal krishnan [EMAIL PROTECTED] wrote: Hi, My outbound is working, but not in a regular functionality, If i call first time the call goes thru, by second time its not getting thru, showing that the channel is not

Re: [Freeswitch-users] dialpaln

2008-09-20 Thread Gopal krishnan
Hi, My outbound is working, but not in a regular functionality, If i call first time the call goes thru, by second time its not getting thru, showing that the channel is not getting released. After reloading mod_openzap the channel becomes in DOWN state and the call is getting thru, so each

Re: [Freeswitch-users] dialpaln

2008-09-19 Thread Brian West
Zaptel isn't required for sangoma. Just make sure when installing wanpipe the value you select is the TDM API with the words FreeSWITCH in the menu option. /b On Sep 19, 2008, at 12:57 AM, Gopal krishnan wrote: Hi Anthony, My conf as follows, openzap.conf [span wanpipe] trunk_type =

Re: [Freeswitch-users] dialpaln

2008-09-19 Thread Gopal krishnan
Hi, Since I am not able to make the outbound call, when I use this command oz dump 1 a in the console, I used to get the all the 31 channels , for a refrence I am posing one channel block here, * span_id: 1 chan_id: 31 physical_span_id: 1 physical_chan_id: 31 type: B state: DOWN last_state:

Re: [Freeswitch-users] dialpaln

2008-09-19 Thread Michael Jerris
On Sep 19, 2008, at 9:18 AM, Gopal krishnan wrote: Hi, Since I am not able to make the outbound call, when I use this command oz dump 1 a in the console, I used to get the all the 31 channels , for a refrence I am posing one channel block here, span_id: 1 chan_id: 31 physical_span_id:

Re: [Freeswitch-users] dialpaln

2008-09-19 Thread Brian West
IDLE would make more sense. /b On Sep 19, 2008, at 8:22 AM, Michael Jerris wrote: in openzap, state down is like on-hook... we should change that name maybe. ___ Freeswitch-users mailing list Freeswitch-users@lists.freeswitch.org

Re: [Freeswitch-users] dialpaln

2008-09-19 Thread Anthony Minessale
no it wouldn't When the channel is not in use it's down. it's absent of any activity and not running in the state machine. This terminology is for the sake of the coder not the guy using the code. On Fri, Sep 19, 2008 at 8:40 AM, Brian West [EMAIL PROTECTED] wrote: IDLE would make more

Re: [Freeswitch-users] dialpaln

2008-09-19 Thread Gopal krishnan
Thanks for the reply, I tried dialing a number and the pastebin link as follows, http://pastebin.freeswitch.org/5611 and also I found that after dialed I saw the oz dump 1 2 and I found that the state is dialing and after few seconds automatically it seems to hangup. oz dump 1 3 API CALL

Re: [Freeswitch-users] dialpaln

2008-09-18 Thread Gopal krishnan
Hi Brian, I tried as you suggested, but still my outbound is not yet thru, my log as follows, *default.xml* ?xml version=1.0 encoding=utf-8? !-- http://wiki.freeswitch.org/wiki/Dialplan_XML -- include context name=default extension name=Long Distance - wanpipe condition

Re: [Freeswitch-users] dialpaln

2008-09-18 Thread Michael Jerris
Your dialplan is fixed now, this is an issue with openzap now, can you clarify your openzap configuration and what kind of line it is hooked too please? Mike On Sep 18, 2008, at 3:55 AM, Gopal krishnan wrote: Hi Brian, I tried as you suggested, but still my outbound is not yet thru,

Re: [Freeswitch-users] dialpaln

2008-09-18 Thread Anthony Minessale
post openzap.conf.xml openzap.conf and outbout of ztcfg -vv note: openzap does not ask for opposite names like asterisk does in openzap.conf if it's fxo say fxo not fxs On Thu, Sep 18, 2008 at 11:18 AM, Michael Jerris [EMAIL PROTECTED] wrote: Your dialplan is fixed now, this is an issue

Re: [Freeswitch-users] dialpaln

2008-09-17 Thread Gopal krishnan
: [Freeswitch-users] dialpaln For extensions you usually have a 4 digit number so you would do this: ^(\d{4})$ then for the pstn you would not want to match just all digits like that. ^(\d{7,15})$ /b On Aug 28, 2008, at 1:01 PM, Cliconnect wrote: Hi, I can call extensions like 1000

Re: [Freeswitch-users] dialpaln

2008-09-17 Thread Brian West
On Sep 17, 2008, at 7:24 AM, Gopal krishnan wrote: Hi, I am using Freeswitch with Sangoma A102 and Openzap. I have configured the extension in default.xml as default.xml extension name=Long Distance - wanpipe condition field=destination_number expression=^0([0-9]+)$ action

[Freeswitch-users] dialpaln

2008-08-28 Thread Cliconnect
Hi, I can call extensions like 1000 with extension name=extensions condition field=destination_number expression=^(\d+)$ action application=bridge data=sofia/doublenat/$1%voipclic.com / /condition /extension and I can call PSTN with extension name=PSTN

Re: [Freeswitch-users] dialpaln

2008-08-28 Thread Brian West
For extensions you usually have a 4 digit number so you would do this: ^(\d{4})$ then for the pstn you would not want to match just all digits like that. ^(\d{7,15})$ /b On Aug 28, 2008, at 1:01 PM, Cliconnect wrote: Hi, I can call extensions like 1000 with extension

Re: [Freeswitch-users] dialpaln

2008-08-28 Thread Cliconnect
Thank you Brian, it worked. regards Duan -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Brian West Sent: Thursday, August 28, 2008 11:07 AM To: freeswitch-users@lists.freeswitch.org Subject: Re: [Freeswitch-users] dialpaln For extensions you