asterisk: add page (#4474)

beep
Jacob Mansfield 2020-10-15 21:24:29 +01:00 committed by GitHub
parent 709765c323
commit d9e540a387
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 33 additions and 0 deletions

33
pages/linux/asterisk.md Normal file
View File

@ -0,0 +1,33 @@
# asterisk
> Telephone and exchange (phone) server.
> Used for running the server itself, and managing an already running instance.
> More information: <https://wiki.asterisk.org/wiki/display/AST/Home>.
- [R]econnect to a running server, and turn on logging 3 levels of [v]erbosity:
`asterisk -r -vvv`
- [R]econnect to a running server, run a single command, and return:
`asterisk -r -x "{{command}}"`
- Show chan_SIP clients (phones):
`asterisk -r -x "sip show peers"`
- Show active calls and channels:
`asterisk -r -x "core show channels"`
- Show voicemail mailboxes:
`asterisk -r -x "voicemail show users"`
- Terminate a channel:
`asterisk -r -x "hangup request {{channel_ID}}"`
- Reload chan_SIP configuration:
`asterisk -r -x "sip reload"`