Asterisk

星號:對擴展的“參數”有點困惑

  • April 6, 2021

在這個 wiki上閱讀我看到了這個擴展

exten => 6001,1,Dial(PJSIP/demo-alice,20)

我認為

exten is the extension
6001  the number to call
1     is the priority
Dial  the application to use
PJSIP/demo-alice is defined in sip.conf
20    ???

我不明白20,是超時嗎?或者是什麼?謝謝

你會走錯路。

首先為初學者閱讀一些書籍,例如“Asterisk the future of telephony”。

https://wiki.asterisk.org/wiki/display/AST/Contexts%2C+Extensions%2C+and+Priorities

在您的情況下,撥號是“應用程序”。每個應用程序都有自己的參數,您可以在 asterisk.org 網站的幫助中找到它或通過執行

asterisk -rx "core show application Dial"

所有應用程序的列表是

asterisk -rx "core show applications"

引用自:https://unix.stackexchange.com/questions/643684