Re: [AFMUG] Calix E7-2 dial plan

2022-01-28 Thread Carl Peterson
^[1-9][0-9]{9}T DOES work for 7 digit dialing because it sends the seven digits after T. The way I was trying to do it before like: ^[2-9][0-9]{9} ^[2-9][0-9]{6} Does NOT work for 10 digit dialing because it is continually evaluating and matches 7 and sends to the switch before you get to 10.

Re: [AFMUG] Calix E7-2 dial plan

2022-01-27 Thread Josh Luthman
Wait 7 digit dialing DOES work for you, right? Or are you saying you just don't have a 7 digit length match and you're operating with the timeout now (my rules do this)? On Thu, Jan 27, 2022 at 2:27 PM Carl Peterson wrote: > Thanks Chris and Josh, > > I was able to get it working by removing 7

Re: [AFMUG] Calix E7-2 dial plan

2022-01-27 Thread Carl Peterson
Thanks Chris and Josh, I was able to get it working by removing 7 digit dialing which we don't need anyway. ^[1-9][0-9]{9}T works for both if someone in calix land needs to solve this down the road. After it gets 7 digits and then times out it sends it to the switch. On Thu, Jan 27, 2022 at

Re: [AFMUG] Calix E7-2 dial plan

2022-01-27 Thread Josh Luthman
This works perfectly for me. Netsapien switch. [image: image.png] On Wed, Jan 26, 2022 at 3:01 PM Carl Peterson wrote: > Anyone have a working dial plan off an E7-2 they can share? I can't get > 10 digit dialing to work without a 1 in front of it. > > ^911n > ^411n > ^811n > ^1[2-9][0-9]{9}

Re: [AFMUG] Calix E7-2 dial plan

2022-01-27 Thread Chris Fabien
Hi Carl Here is what we are using on our E7s. Note this does not support 7-digit dialling as we are in an area where that was mandated to be removed. But it does allow 10 and 11 digit calls. Note that the order of these rules matters, it matches top down. ^911n ^411 ^988 ^[2-9][0-9]{9}

Re: [AFMUG] Calix E7-2 dial plan

2022-01-26 Thread Mark - Myakka Technologies
Title: Re: [AFMUG] Calix E7-2 dial plan Carl, yes they are three different rules.  I think the standard is using the | as an or operator -- Best regards, Mark                            mailto:m...@mailmt.com Myakka Communications www.Myakka.com -- Wednesday, January 26, 2022, 3:24:12

Re: [AFMUG] Calix E7-2 dial plan

2022-01-26 Thread Carl Peterson
Thanks Mark, I'm not quite getting that. Would that be three rules like: ^[2-9][11] ^*xx ^x,T On Wed, Jan 26, 2022 at 2:06 PM Mark - Myakka Technologies wrote: > Carl, > > This is what I'm using on my zhone > > [2-9]11|*xx|x.T > > -- > Best regards, > Mark

Re: [AFMUG] Calix E7-2 dial plan

2022-01-26 Thread Mark - Myakka Technologies
Title: Re: [AFMUG] Calix E7-2 dial plan Carl, This is what I'm using on my zhone [2-9]11|*xx|x.T -- Best regards, Mark                            mailto:m...@mailmt.com Myakka Communications www.Myakka.com -- Wednesday, January 26, 2022, 2:59:58 PM, you wrote: Anyone have

[AFMUG] Calix E7-2 dial plan

2022-01-26 Thread Carl Peterson
Anyone have a working dial plan off an E7-2 they can share? I can't get 10 digit dialing to work without a 1 in front of it. ^911n ^411n ^811n ^1[2-9][0-9]{9} <--- 10 digit dialing with 1 works ^011[0-9]*T ^[2-9][0-9]{9} <--- 10 digit dialing without 1 won't work ^[2-9][0-9]{6} <-- 7 digit