A
A
Alexander Semenenko2019-06-21 10:36:57
Asterisk
Alexander Semenenko, 2019-06-21 10:36:57

Is it necessary to use Hangup in dialplan asterisk and what happens if it is not specified?

Recently started learning asterisk and all my tests with dialplan were without Hangup, for example:
exten => _1XX,1,Dial(PJSIP/${EXTEN})
Calls between 101 and 102 go and when someone hangs up, on the other end short beeps are heard. A little later I saw that you can write it like this:
exten => _1XX,1,Dial(PJSIP/${EXTEN})
exten => _1XX,n,Hangup
At the same time, the behavior of asterisk has not changed in any way. Or am I missing something?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
Drill, 2019-06-21
@semenenko88

Optional, not strictly necessary due to auto-fallthrough, but highly recommended.
auto-fallthrough - if asterisk cannot find the next priority in the dialplan, it will abort the call.
Hangup() is an unconditional disconnect on the current channel. The asterisk documentation recommends adding Hangup as the last priority in any extension.
In general, everything is painted in the office.
Specifically, here about Hangup
And here about auto-fallthrough

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question