Astserisk + CS1000S Succes! ooH323C Only one Issue!

Hi, guys thanks for your time and help : )

i have Asterisk 1.18.15.1 on RaspBerry PI Interconected to Avaya CS1000S Rls 7.5 Using H.323
Codecs ulaw

From Avaya Phone i can call a Astrisk Phone SIP
From Astrisk Phone i can Call Avaya Phone 1140,1120,1230 etc

In the Avaya CS1000S i have 8 BCM50 Connected to NRS using H323 RAS Endpoint
from all BCM50 i can call to Asterisk SIP Extension
From Asterisk i Can Call to all BCM50 Digital o IP Extension

my problem is calling from Asterisk to outside of the CS1000S
if i call to Number 17874567890 i get a busy tone

error on nrs of the Avaya:
Oct 10 18:50:58 ss-bdi-leader gk: (INFO) tGKNPM: gkTrace: recv ARQ from 192.168.15.55 calling called 17874567890
Oct 10 18:50:58 ss-bdi-leader gk: (NOTICE) tGKNPM: gkNpmRasError: ARQ, requestDenied, 192.168.15.55:13030, dst 17874567890 (5)
Oct 10 18:50:58 ss-bdi-leader gk: (INFO) tGKNPM: gkTrace: sent ARJ to 192.168.15.55 calling called 17874567890 , No default route found

error on Asterisk Side:
Admission Reject (ARJ) message received.
Deleted ARQ Timer.
Admission Reject message received with reason code 3 for (outgoing, ooh323c_o_1)
In ooEndCall call state is - OO_CALL_CLEARED (outgoing, ooh323c_o_1)
Cleaning Call (outgoing, ooh323c_o_1)- reason:OO_REASON_GK_CLEARED

what i have to check on my configuration?

H323 Configuration:
[general]
;logfile=/var/log/asterisk/h323_log
;tracelevel=100
h323id=AST_TEST
jitterMin=20
jitterMax=100
udpStart=10000
udpEnd=40000
port=1720
rtptimeout=60
bindaddr = 192.168.15.55
AllowGKRouted=no
faststart=yes
disallow=all
allow=ulaw
allow=alaw
dtmfmode=rfc2833
gateway=no
e164=100
gatekeeper = 172.0.0.12 ->NRS IP ADD Avaya
context=default
progress_setup = 8
progress_alert = 8
h245tunneling=yes

[Avaya]
type=friend
context=default
host=172.0.0.12 ->NRS IP ADD Avaya
port=1720
disallow=all
allow=ulaw
allow=alaw
dtmfmode=rfc2833
h323id=AST_TEST

Extension.conf

[default]
exten => 2525,1,Dial(SIP/2525)
exten => 2525,n,Hangup()

exten => _XXXX,1,Dial(ooh323/${EXTEN}@AVAYA,300,tr)
exten => _XXXX,n,Hangup()

exten => _1787.,1,Dial(ooh323/9${EXTEN}@AVAYA,300,tr)
exten => _1787.,n,Hangup()

Hello, I am new to the Asterisk environment so I will comment on the NRS portion only. It appears that the NRS doesn’t know what to do with the digits it’s seeing. I remember in the past when I set up an NRS server I found that putting a default route in was helpful and acted as a fallback in cases like this.

Basically, it’s like a blackhole or 0.0.0.0 route on the data side. If the NRS doesn’t see the digits in any of it’s endpoint assigments it will kick it to the default route. I would make the default route your CS1000 endpoint. Are you dialing a 9 first or just the 1787…? If you are dialing 9, you can set 9 as routing entry on for the CS1000 endpoint and that may fix your issue. You can also try adding 1787 to the CS1000 endpoint.

As you can see there are a few ways to tweak the NRS side. I will still do a default route even if one of these other ideas works. Hope I helped out.

Chris