Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Avaya IP Office 9.0 Short Code/ARS question 4

Status
Not open for further replies.

RyanEOD

Programmer
Jan 11, 2008
675
US
Greetings All,

I have what I think should be something fairly easy here, I am just trying to figure out the cleanest way to do it. I want to route anything dialed besides a 44xx extension out a SIP trunk (the only numbers configured as extensions are 44xx numbers). Then let the other switch determine where it goes. I might eventually need to strip off the 9's if anyone dials that and then 10 digits but at this time I just want to get it working sending everything down the trunk.

Thanks!

Check out my professional profile and connect with me on LinkedIn.
 
internal exns take priority over short codes so your internal extns in the range 44XX should be fine
this should simply need a reconfig of the default sc ?

SC: ?
TN: .
feature Dial
Line group ID <out going group id of IP Trunk>

if you want to avoid sending no existent 44XX numbers to the remote system add SC 44XX feature Bared.


A Maintenance contract is essential, not a Luxury.
Do things on the cheap & it will cost you dear
 
Thanks for the quick reply, that got me really close. I think the Telephone number has to be something like -

"."@IPADDRESSOFSIPSWITCH"

Check out my professional profile and connect with me on LinkedIn.
 
Humm it is grabbing one digit and throwing it down the trunk, I need to figure out the right pattern to say, grab all the digits, and probably need to set it so that it was a second after dialing to see if the user is done dialing.

Check out my professional profile and connect with me on LinkedIn.
 
Eh...depends on what version you're at. The newer 8 and above (i think thats when it started) didn't need the ip address bit.

-Austin
ACE: Implement IP Office
qrcode.png
 
Use a ; in the top field of the shortcode.
This will collect all numbers.

BAZINGA!

I'm not insane, my mother had me tested!

 
It looks like I need to tweak the Telephone Number Field;

When I do this -
Code:
"@IPADDR"
It skips the first digit and sends the rest I dialed down the trunk

When I do this -
Code:
."@IPADDR"
or
Code:
N"@IPADDR"
it just grabs the first digit dialed and sends it down the trunk.

Of course the above IPADDR is the actual IP address of my SIP switch.

Check out my professional profile and connect with me on LinkedIn.
 
@AACon - Thanks, I was looking at a SIP trunk intergration programming guide and it said to put it in, so good to know it isn't needed anymore!

@tlpeter - When I change out the ? for a ; I just get a fast busy. I also tried to do a ?; and it gives me a fast busy also.

Check out my professional profile and connect with me on LinkedIn.
 
You need:

N;
Dial
N"@xxx.xxx.xxx.xxx"
Line id


BAZINGA!

I'm not insane, my mother had me tested!

 
@tlpeter - Thank you very much! That got me going!! Is there a data dictionary somewhere with what all the parameters mean? I assume it is probably in a manual somewhere but I wasn't finding it on a quick search.

Check out my professional profile and connect with me on LinkedIn.
 
Manager has a great help file and you can find it somewhere in the shortcodes field i think.


BAZINGA!

I'm not insane, my mother had me tested!

 
oops yes
I forgot it was SIP & needs en block dialing

Thank you very much! That got me going!! Is there a data dictionary somewhere with what all the parameters mean? I assume it is probably in a manual somewhere but I wasn't finding it on a quick search.
try pressing the "F1" key & seaching for short code characters :)

Almost* everything you need to know can be found in the help files.

*they have not let me down yet but there is always a first time

A Maintenance contract is essential, not a Luxury.
Do things on the cheap & it will cost you dear
 
True, but the options are pretty self ex planetary anyway.

if you need help with these you probably should not be allowed out unsupervised :)

A Maintenance contract is essential, not a Luxury.
Do things on the cheap & it will cost you dear
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top