 |
|

October 12th, 2004, 03:56 PM
|
|
Member
|
|
Join Date: Aug 2004
Posts: 31
|
|
Arbitrary Dialing... xx.<#:>S0
Quote:
please how can ı fıll out for callıng anywhere ?
gıve me example on thıs fıeld generıc dıal plan (xx.|*xx.|*xx.|#x>
|
Ozlem: as others have stated:
xx. means a sequence of at least one number (digit), so this would allow you to dial any number. *xx. means a star (asterisk) followed by a sequence of at least one digit.
I believe the only problem with these patterns is that they rely on a timeout to conclude the pattern. The dialed digits are not sent until several seconds have passed with no input. I *think* you can solve that problem by adding a # at the end of what you dial. If that doesn't work this pattern should:
:arrow: xx.<#:>S0
The above says: any sequence of at least one digit followed by a # should have the # removed [ <#:>] and be dialed out immediately [ S0].
The reason you might want to add patterns specific to your provider/country is to simplify. For example I have the following pattern:
:arrow: <:1408>[2-9]xxxxxx
This adds "1408" in front of any 7 digit number dialed because my line is a Washington DC area code (202) and I don't want to accidentally dial 7 digit Silicon Valley numbers that ring somebody in Washington, DC!
|

October 12th, 2004, 04:09 PM
|
|
Member
|
|
Join Date: Oct 2004
Location: Miami, FL
Posts: 55
|
|
What is the difference between using gw0 and using S1 (both PSTN)? I set up the DP (xx.<:@gw0>) How would I represent this plan using S1. Just curious.
|

October 26th, 2004, 06:23 AM
|
|
Junior Member
|
|
Join Date: Oct 2004
Posts: 1
|
|
can the dialplan be used to turn the SPA2K in to a "hotline" so as soon as someone picks up the phone the ata then dials into the server.?
I have attempted to use the dialplan (x.) After about 1 second of waiting the dialtone disappears but a connection is never made to the PBX.
If I use a standard
|

October 26th, 2004, 08:17 AM
|
 |
Senior Member
|
|
Join Date: Sep 2003
Location: Port Orchard, WA
Posts: 3,295
|
|
You can use hotline syntax on a SPA-2000, yes.
__________________
Technical questions should be posted to the forums, not sent via PM to me.
|

October 29th, 2004, 06:02 PM
|
|
Senior Member
|
|
Join Date: Jul 2004
Posts: 1,161
|
|
I just learnt how to use Mutualphone as a gateway on the SPA3k after a post by their support in the voxilla forum. My normal line 1 provider gives very good rates for all the internatioanl destinations I normally call, except for Pakistan (internatioanl code + 92). So I tried to setup a dialplan so that whenever i dial a number starting with 0092, it should goto gw3 (my mutualphone gateway number).Follwoing is my full diaplan:
([2-79]11<:@gw0>|xx.|*xx.|**xx.|[009]2<:@gw3>|<#1,:>xx.<:@gw1>|<#3,:>00xx.<:@gw3>|<#2,:>xx.<:@g w2>|<#9,:>xx.<:@gw0>|<#9,:>*xx<:@gw0>)
|[009]2<:@gw3>| is what I thought would automatically send calls with 0092 to gw3, doesnt seem to work, when i dial 00922112346, it dial AS 00922112346 (as seen on the status screen on the spa setuppage.
What am I doing wrong?.
__________________
nerdvittles.com
|

October 29th, 2004, 06:42 PM
|
|
Member
|
|
Join Date: Aug 2004
Posts: 31
|
|
I'm not real crisp on what you're doing - especially what a "mutualphone gateway" is - but [009]2 means '0 or 9 followed by a 2' and those digits are kept and passed on to gw3. Note this should be syntactically the same as [09]2
I think what you want is |<0092:>x.<:@gw3>| which means to strip off 0092 and send the remaining dialed digits to gw3.
|

October 30th, 2004, 12:34 AM
|
|
Senior Member
|
|
Join Date: Jul 2004
Posts: 1,161
|
|
Mutualphone is another VoIP service provider; doesn't give you incoming number, so is only good for outgoing calls, hence, its better to set it up as a gateway. What i was trying to do was, to make calls to pakistan (which has a 92 IDD code) to go thru gw3 (the gateway ID I've setup for Mutualphone under my line 1 setup).
I managed to get it to work with the following plan:
|[0092]xx.<:@gw3>|
This way, any number that starts with 0092 followed by any number of digits, gets directly dialled thru gw3, instead of me having to remember to dial #3 before dialling any calls to Pakistan.
__________________
nerdvittles.com
|

October 30th, 2004, 05:42 AM
|
 |
Senior Member
|
|
Join Date: Aug 2004
Location: USA or Japan
Posts: 5,010
|
|
Quote:
|
Originally Posted by rizsher
Follwoing is my full diaplan:
([2-79]11<:@gw0>|xx.|*xx.|**xx.|[009]2<:@gw3>|<#1,:>xx.<:@gw1>|<#3,:>00xx.<:@gw3>|<#2,:>xx.<:@g w2>|<#9,:>xx.<:@gw0>|<#9,:>*xx<:@gw0>)
|
There is one error in that Dial Plan element. The square brackets indicate that any one of the digits inside the square brackets will trigger this element; it is not a string of digits(however desirable that feature would be).
So, [2-79]11 means 211 or 311 or 411 or 511 or 611 or 711 or 911, but not 011 or 111 or 811 would trigger the first element and be routed out gw0. (Does this mean that you are in the US or Canada? You don't say, and it doesn't make sense with 00 as your international code instead of 011.) Likewise, [009]2 means that dialing 02 or 92 would send those two digits only out on gw3.
What you want instead of [009]2<:@gw3 is 0092xxxxxx.<:@gw3>. This will take anything that starts with 0092 and send it out to gw3.
Alternatively, assuming that you are living in Country Code 1, you could do two dial elements. <01192:0092>xxxxxx.<:@gw3> will take any call beginning wth 01192, change that to 0092 and give it to gw3. 00[2-9]xxxxxx.<:@gw3> will take any international call you dial by 00 instead of 011 and give it to gw3.
If you will confirm what country you are in physically and share with us who your gw1 VoIP service provider is I would be happy to help you craft a more elegant dial plan.
|

November 7th, 2004, 12:10 PM
|
|
Member
|
|
Join Date: Aug 2004
Posts: 34
|
|
What should be my dial plan for dialing a sip address
What should be my dialplan if I want to dial a sip address like
19166711306@sekhar.sytes.net:5061
could you please help me.
Thanks.
Sekhar.
|

November 20th, 2004, 12:34 PM
|
|
Junior Member
|
|
Join Date: Oct 2004
Location: NJ, USA
Posts: 21
|
|
Hi,
Excuse my ignorance, but I'm trying to craft a dial plan string to allow me to dial London, UK numbers as if was in London (I'm using BroadVoice in the States).
I want any number that starts with 020 to be replaced with 0114420.
I played around with dial plans string last night, but really didn't get anywhere at all.
My current dial plan is:
([2-79]11<:@gw0>|xx.|*xx.|**xx.|<#1,:>xx.<:@gw1>|<#9:@gw0 >)
I would appreciate any help!
Many Thanks.
|
 |
|
| Thread Tools |
|
|
| Display Modes |
Rate This Thread |
Linear Mode
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
|
|