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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

RTP timeout ooh323

Status
Not open for further replies.

vaoldschl

MIS
May 17, 2001
522
0
0
US
I have a working ooh323 channel through an * system between Avaya and Siemens except for one tiny detail. The Siemens system doesn't answer the call before a timeout on the * side if the call is directed to voice mail. I have tried changing the rtptimeout= value in the ooh323.conf file and I have tried exten=>_1XX,1,Dial(ooh323/${EXTEN}@farend|120) both to no avail. Anyone think of somewhere else a connection timer might be messing me up in this? Thanks.
 
So, what you are saying is that if Asterisk gets a call from outside or from Avaya, and tries to send the call to an extension on the Siemens, the call times out before it goes to the Siemens voicemail. Where does the call end up? AsteriskMail?
 
I've stripped the dialplan in * to nothing except my extension assignments and it appears to be waiting about 30 seconds and then clearing the channel. The call just disconnects. If I turn on autofallthrough and watch a debug it runs across "timeout reached but no value 't'" or somesuch verbage just before destroying the channel. Also, there are no outside calls; the only place * can get a call from right now is Avaya to Siemens or vice versa. Thanks.
 
Have a look in your extensions.conf file. If autofallthrough=yes in there then set it to "no
 
Autofallthrough in extensions.conf is set to yes by default. Asterisk 1.0 (and earlier) behavior was to wait for an extension to be dialed after there were no more extensions to execute. "autofallthrough" changes this behavior so that the call will immediately be terminated with BUSY, CONGESTION, or HANGUP based on Asterisk's best guess. If you are writing an extension for IVR, you must use the WaitExten application if "autofallthrough" is set to yes. Not sure how it effects on regular extension, but would set to no. The "t" asterisk is looking for is basically how to terminate the call.
 
I have autofallthrough=no and I've tried =yes as well. Both ways disconnect call after 30 secs. WaitExten is used to wait for user input on an IVR so that wouldn't work to extend the ringing time would it? If it would then would it look like this?

exten => s,1,Answer
exten => s,n,WaitExten(secs)

Also, if I do a show dialplan I get my entries and then a bunch of stuff coming from pbx_ael that I don't need. Where is that coming from?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top