mirror of
https://github.com/cheat/cheat.git
synced 2024-11-14 08:01:09 +01:00
Create asterisk
Added a few of the more basic commands for interacting with Asterisk from the shell, at the moment this does not cover actually being inside the Asterisk CLI.
This commit is contained in:
parent
9be7d1f1a6
commit
3b44731819
1 changed files with 17 additions and 0 deletions
17
.cheat/asterisk
Normal file
17
.cheat/asterisk
Normal file
|
@ -0,0 +1,17 @@
|
|||
To connect to a running Asterisk session:
|
||||
asterisk -rvvv
|
||||
|
||||
To issue a command to Asterisk from the shell:
|
||||
asterisk -rx "<command>"
|
||||
|
||||
To originate a call from a SIP trunk on an Asterisk server, to a specified number:
|
||||
asterisk -rx "channel originate SIP/<trunk>/<number> application echo"
|
||||
|
||||
To print out the details of SIP accounts:
|
||||
asterisk -rx "sip show peers"
|
||||
|
||||
To print out the passwords of SIP accounts:
|
||||
asterisk -rx "sip show users"
|
||||
|
||||
To print out the current active channels:
|
||||
asterisk -rx "core show channels"
|
Loading…
Reference in a new issue