View Single Post
Unread 03-24-2006, 03:52 PM   #3
v164
Member
 
Join Date: Mar 2006
Posts: 96
Thanks: 8
Thanked 26 Times in 19 Posts
v164 is a jewel in the roughv164 is a jewel in the rough
Default ENUM + dial plans

> Using the #1 or #2 prefix goes out to the appropriate
> alternate provider, but ENUM never finds a match because
> the prefix characters haven't been stripped yet.
>
> What magic am I missing to allow selecting
> a desired provider AND still having ENUM checked?

Perhaps you could setup an additional voxalot account for each alternate provider, and then forward the modified (stripped) number to voxalot using that account.

That would do ENUM lookup on the second time around, and then go to the provider as defined in the dial plan of the additional account.


So instead of...

_1NXXNXXXXXX ${EXTEN} --> Provider-1 (default)
_#11NXXNXXXXXX ${EXTEN:2} --> Provider-2 (alternate 1)
_#21NXXNXXXXXX ${EXTEN:2} --> Provider-3 (alternate 2)


It would look like...

_1NXXNXXXXXX ${EXTEN} --> Provider-1 (default)
_#11NXXNXXXXXX ${EXTEN:2} --> 1NXXNXXXXXX@voxalot.com[account2]
_#21NXXNXXXXXX ${EXTEN:2} --> 1NXXNXXXXXX@voxalot.com[account3]

[voxalot account2] dialplan
_1NXXNXXXXXX ${EXTEN} --> Provider-2 (default)

[voxalot account3] dialplan
_1NXXNXXXXXX ${EXTEN} --> Provider-3 (default)
v164 is offline   Reply With Quote