[asterisk-bugs] [JIRA] (ASTERISK-25266) if you originate() to a unavailable trunk you get an ${ORIGINATE_STATUS} = success
Rusty Newton (JIRA)
noreply at issues.asterisk.org
Mon Jul 20 18:07:33 CDT 2015
[ https://issues.asterisk.org/jira/browse/ASTERISK-25266?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=226963#comment-226963 ]
Rusty Newton commented on ASTERISK-25266:
-----------------------------------------
Thanks for the report and debug. However we also need protocol specific debug captured at the time of the issue. Please include the following:
* Asterisk log files generated using the instructions on the Asterisk wiki [1], with the appropriate protocol debug options enabled, e.g. 'pjsip set logger on' if the issue involves the chan_pjsip channel driver.
* Configuration information for the relevant channel driver, e.g. pjsip.conf.
* A wireshark compatible packet capture, captured at the same time as the Asterisk log output.
[1] https://wiki.asterisk.org/wiki/display/AST/Collecting+Debug+Information
Make sure VERBOSE and DEBUG are included in the log.
> if you originate() to a unavailable trunk you get an ${ORIGINATE_STATUS} = success
> -----------------------------------------------------------------------------------
>
> Key: ASTERISK-25266
> URL: https://issues.asterisk.org/jira/browse/ASTERISK-25266
> Project: Asterisk
> Issue Type: Bug
> Security Level: None
> Affects Versions: 11.16.0
> Environment: CentOS release 6.6 (Final)
> Reporter: Allen Ford
>
> In my example if "freeserver" is offline or not responding i still get a SUCCESS status, which is messing up my fail-over
> {noformat}
> exten => h,n,GotoIf($["${ORIGINATE_STATUS}" = ""]?15:)
> exten => h,15,Set(goto=$[${PRIORITY} + 15])
> exten => h,n,Originate(SIP/FreeServer/1${callerid},exten,BMP-Authentication-1,1${callerid},1)
> exten => h,n,Verbose(0, getting staus ${ORIGINATE_STATUS} );
> exten => h,n,GotoIf($["${ORIGINATE_STATUS}" = "SUCCESS"]?hangup:)
> exten => h,n,GotoIf($["${ORIGINATE_STATUS}" = "FAILED"]?${goto}:)
> exten => h,n,GotoIf($["${ORIGINATE_STATUS}" = "BUSY"]?${goto}:)
> exten => h,n,GotoIf($["${ORIGINATE_STATUS}" = "CONGESTION"]?${goto}:)
> exten => h,n,GotoIf($["${ORIGINATE_STATUS}" = "RINGING"]?${goto}:)
> exten => h,n,GotoIf($["${ORIGINATE_STATUS}" = "HANGUP"]?${goto}:)
> exten => h,n,GotoIf($["${ORIGINATE_STATUS}" = "UNKNOWN"]?${goto}:)
> exten => h,n,Hangup()
> exten => h,30,Set(goto=$[${PRIORITY} + 20])
> exten => h,n,Originate(SIP/geils/1${callerid},exten,BMP-Authentication-1,${callerid},1)
> exten => h,n,Verbose(0, getting staus ${ORIGINATE_STATUS} );
> exten => h,n,GotoIf($["${ORIGINATE_STATUS}" = "SUCCESS"]?hangup:)
> exten => h,n,GotoIf($["${ORIGINATE_STATUS}" = "FAILED"]?${goto}:)
> exten => h,n,GotoIf($["${ORIGINATE_STATUS}" = "BUSY"]?${goto}:)
> exten => h,n,GotoIf($["${ORIGINATE_STATUS}" = "CONGESTION"]?${goto}:)
> exten => h,n,GotoIf($["${ORIGINATE_STATUS}" = "HANGUP"]?${goto}:)
> exten => h,n,GotoIf($["${ORIGINATE_STATUS}" = "UNKNOWN"]?${goto}:)
> exten => h,n,Hangup()
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.2#6252)
More information about the asterisk-bugs
mailing list