Asterisk-core

From 탱이의 잡동사니
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Overview

Asterisk core 명령어 내용 정리

Basic

core 모듈은 Asterisk 의 가장 기본적인 모듈이다. Asterisk 의 전체적인 동작 방식과 설정들을 담당한다.

help

pluto*CLI> help core
core abort shutdown            -- Cancel a running shutdown
core clear profile             -- Clear profiling info
core ping taskprocessor        -- Ping a named task processor
core reload                    -- Global reload
core restart gracefully        -- Restart Asterisk gracefully
core restart now               -- Restart Asterisk immediately
core restart when convenient   -- Restart Asterisk at empty call volume
core set debug channel         -- Enable/disable debugging on a channel
core set debug                 -- Set level of debug chattiness
core set verbose               -- Set level of verbose chattiness
core show applications [like|describing] -- Shows registered dialplan applications
core show application          -- Describe a specific dialplan application
core show calls [uptime]       -- Display information on calls
core show channels [concise|verbose|count] -- Display information on channels
core show channel              -- Display information on a specific channel
core show channeltypes         -- List available channel types
core show channeltype          -- Give more details on that channel type
core show codecs [audio|video|image|text] -- Displays a list of registered codecs
core show codec                -- Shows a specific codec
core show config mappings      -- Display config mappings (file names to config engines)
core show file formats         -- Displays file formats
core show file version [like]  -- List versions of files used to build Asterisk
core show functions [like]     -- Shows registered dialplan functions
core show function             -- Describe a specific dialplan function
core show hanguphandlers all   -- Show hangup handlers of all channels
core show hanguphandlers       -- Show hangup handlers of a specified channel
core show help                 -- Display help list, or specific help on a command
core show hints                -- Show dialplan hints
core show hint                 -- Show dialplan hint
core show image formats        -- Displays image formats
core show license              -- Show the license(s) for this copy of Asterisk
core show profile              -- Display profiling info
core show settings             -- Show some core settings
core show sounds               -- Shows available sounds
core show sound                -- Shows details about a specific sound
core show switches             -- Show alternative switches
core show sysinfo              -- Show System Information
core show taskprocessors       -- List instantiated task processors and statistics
core show threads              -- Show running threads
core show translation          -- Display translation matrix
core show uptime [seconds]     -- Show uptime information
core show version              -- Display version info
core show warranty             -- Show the warranty (if any) for this copy of Asterisk
core stop gracefully           -- Gracefully shut down Asterisk
core stop now                  -- Shut down Asterisk immediately
core stop when convenient      -- Shut down Asterisk at empty call volume
core waitfullybooted           -- Wait for Asterisk to be fully booted

abort shutdown

진행중인 shutdown 명령을 취소한다.

pluto*CLI> help core abort shutdown 
Usage: core abort shutdown
       Causes Asterisk to abort an executing shutdown or restart, and resume normal
       call operations.

clear profile

profile 을 초기화한다.

pluto*CLI> help core clear profile
Usage: core clear profile
       clear profile information

ping taskprocessor

지정된 taskprocessor 로 ping 을 보낸다.

pluto*CLI> core ping taskprocessor 
Usage: core ping taskprocessor <taskprocessor>
	Displays the time required for a task to be processed

Example

pluto*CLI> core ping taskprocessor subp:SIP/200-00000013 

pinging subp:SIP/200-00000013 ...
	   subp:SIP/200-00000013 ping time: 0.000392 sec

reload

전체 reload 를 한다.

pluto*CLI> help core reload
Usage: core reload
       Execute a global reload.

Example

pluto*CLI> core reload 
[Oct 17 14:02:48] WARNING[30629]: res_phoneprov.c:1231 get_defaults: Unable to find a valid server address or name.
[Oct 17 14:02:48] ERROR[30629]: ari/config.c:312 process_config: No configured users for ARI
[Oct 17 14:02:48] NOTICE[30629]: chan_skinny.c:8418 config_load: Configuring skinny from skinny.conf
[Oct 17 14:02:49] NOTICE[30629]: cel_custom.c:97 load_config: No mappings found in cel_custom.conf. Not logging CEL to custom CSVs.
[Oct 17 14:02:49] NOTICE[30629]: app_queue.c:8700 reload_queue_rules: queuerules.conf has not changed since it was last loaded. Not taking any action.

restart gracefully

Asterisk 를 재시작한다. 더이상의 새로운 Call 에 대해서는 허용하지 않고, 현재 있는 콜들이 모두 종료된 이후, Asterisk 를 재시작 한다.

pluto*CLI> help core restart gracefully
Usage: core restart gracefully
       Causes Asterisk to stop accepting new calls and exec() itself performing a cold
       restart when all active calls have ended.

Example

pluto*CLI> core restart gracefully
pluto*CLI> 
Disconnected from Asterisk server
Asterisk cleanly ending (0).
Executing last minute cleanups

restart now

즉시 Asterisk 를 재시작한다.

pluto*CLI> help core restart now
Usage: core restart now
       Causes Asterisk to hangup all calls and exec() itself performing a cold
       restart.

Example

pluto*CLI> core restart now
pluto*CLI> 
Disconnected from Asterisk server
Asterisk cleanly ending (0).
Executing last minute cleanups

restart when convenient

모든 Active 콜들이 종료 되었을 때 Asterisk 를 재시작한다. 새로운 Call 역시 계속 Accept 된다.

pluto*CLI> help core restart when convenient 
Usage: core restart when convenient
       Causes Asterisk to perform a cold restart when all active calls have ended.

Example

pluto*CLI> core restart when convenient
Waiting for inactivity to perform restart
pluto*CLI> 
Disconnected from Asterisk server
Asterisk cleanly ending (0).
Executing last minute cleanups

set debug channel

특정/모든 채널에 대해 debug 옵션을 설정한다.

pluto*CLI> help core set debug channel
Usage: core set debug channel <all|channel> [off]
       Enables/disables debugging on all or on a specific channel.

set debug

모듈의 debug 레벨을 설정한다.

pluto*CLI> help core set debug
Usage: core set debug [atleast] <level> [module]
       core set debug off

       Sets level of debug messages to be displayed or
       sets a module name to display debug messages from.
       0 or off means no messages should be displayed.
       Equivalent to -d[d[...]] on startup

set verbose

verbose 레벨을 설정한다.

pluto*CLI> help core set verbose 
Usage: core set verbose [atleast] <level> [silent]
       core set verbose off

       Sets level of verbose messages to be displayed.
       0 or off means no verbose messages should be displayed.
       The silent option means the command does not report what
       happened to the verbose level.
       Equivalent to -v[v[...]] on startup

show applications

입력과 매칭되는 내용을 가진 Asterisk application 를 나타낸다.

pluto*CLI> help core show applications
Usage: core show applications [{like|describing} <text>]
       List applications which are currently available.
       If 'like', <text> will be a substring of the app name
       If 'describing', <text> will be a substring of the description

Example

pluto*CLI> core show applications like park
    -= Matching Asterisk Applications =-
                  Park: Park yourself. 
       ParkAndAnnounce: Park and Announce. 
            ParkedCall: Retrieve a parked call. 
    -= 3 Applications Matching =-

show application

입력한 application 의 상세 설명을 보여준다.

pluto*CLI> help core show application
Usage: core show application <application> [<application> [<application> [...]]]
       Describes a particular application.

Example

pluto*CLI> core show application park

  -= Info about application 'Park' =- 

[Synopsis]
Park yourself. 

[Description]
Used to park yourself (typically in combination with an attended transfer to
know the parking space).
...

show calls

현재 진행중인 콜의 숫자와 현재까지 진행된 콜의 숫자를 보여준다.

pluto*CLI> help core show calls
Usage: core show calls [uptime] [seconds]
       Lists number of currently active calls and total number of calls
       processed through PBX since last restart. If 'uptime' is specified
       the system uptime is also displayed. If 'seconds' is specified in
       addition to 'uptime', the system uptime is displayed in seconds.

Example

pluto*CLI> core show calls uptime seconds
0 active calls
0 calls processed
System uptime: 33863

pluto*CLI> core show calls uptime 
0 active calls
0 calls processed
System uptime: 9 hours, 24 minutes, 27 seconds

show channels

현재 설정된 채널들의 목록을 보여준다.

pchero*CLI> help core show channels
Usage: core show channels [concise|verbose|count]
       Lists currently defined channels and some information about them. If
       'concise' is specified, the format is abridged and in a more easily
       machine parsable format. If 'verbose' is specified, the output includes
       more and longer fields. If 'count' is specified only the channel and call
       count is output.
	The 'concise' option is deprecated and will be removed from future versions
	of Asterisk.

concise 의 format 은 다음과 같다.

channel name ! context ! extension ! priority ! state ! application ! application data ! caller number ! account code ! account ! ama flag ! call duration ! bridge id ! unique id

<source lang=c> ast_cli(a->fd, CONCISE_FORMAT_STRING, cs->base->name, cs->dialplan->context, cs->dialplan->exten, cs->dialplan->priority, ast_state2str(cs->state), S_OR(cs->dialplan->appl, "(None)"), cs->dialplan->data, cs->caller->number, cs->base->accountcode, cs->peer->account, cs->amaflags, durbuf, cs->bridge->id, cs->base->uniqueid); </source>

Example normal

pluto*CLI> core show channels
Channel              Location             State   Application(Data)             
Local/200@DialA      s@DialAccount:1      Ringing AppQueue((Outgoing Line))     
Local/200@DialA      s@DialAccount:12     Ring    Dial(Local/45200@DialLine
Local/45200@Dia      s@DialLine:1         Ringing AppDial((Outgoing Line))      
Local/45200@Dia      45200@DialLine:      Ring    Dial(SIP/+45200@csbc02,18
Local/0002@CallFromI (None)               Up      AppDial((Outgoing Line))      
Local/0002@CallFromI s@queue_metallica:22 Up      Queue(Metallica,cti ,,,3600)  
SIP/403-test_403_sof s@CallFromSipDevice: Up      Dial(Local/0002@CallFromIntern
SIP/csbc02-00001399  45200@CallFromC      Ringing AppDial((Outgoing Line))      
8 active channels
4 active calls
9224 calls processed

Example verbose

상세 정보를 칼럼 내용과 같이 나타낸다.

pchero*CLI> core show channels verbose
Channel              Context              Extension        Prio State   Application  Data                      CallerID        Duration Accountcode PeerAccount BridgedTo           
Local/200-pcherosoft DialLine             200-pcherosoftph   88 Up      Dial         SIP/200-pcherosoftphone20 600             00:03:08                         SIP/200-pcherosoftph
Local/200-pcherosoft DialLine                                 1 Up      AppDial      (Outgoing Line)           200             00:03:08                         Local/200@DialAccoun
Local/200@DuetNumber DuetNumber                               1 Up      AppDial      (Outgoing Line)           200             00:03:08                         Local/200@CallFromIn
Local/200@DuetNumber DuetNumber           s                  12 Up      Dial         Local/200@DialAccount,360 600             00:03:08                         Local/200@DialAccoun
SIP/600-pchero-softp CallFromSipDevice    s                  43 Up      Dial         Local/200@CallFromInterna 600             00:03:08                         Local/200@CallFromIn
Local/200@CallFromIn pcheroDialDirect     s                   7 Up      Dial         Local/200@DuetNumber,30,  600             00:03:08                         Local/200@DuetNumber
Local/200@CallFromIn CallFromInternal                         1 Up      AppDial      (Outgoing Line)           200             00:03:08                         SIP/600-pchero-softp
Local/200@DialAccoun DialAccount          s                  12 Up      Dial         Local/200-fake00085d13c6a 600             00:03:08                         Local/200-pcherosoft
Local/200@DialAccoun DialAccount                              1 Up      AppDial      (Outgoing Line)           200             00:03:08                         Local/200@DuetNumber
SIP/200-pcherosoftph app_dial_gosub_virtu s                   2 Up      AppDial      (Outgoing Line)           200             00:03:08                         Local/200-pcherosoft
10 active channels
5 active calls
1242 calls processed

Example concise

상세 정보를 구분자(!)와 함께 나타낸다.

pchero*CLI> core show channels concise
Local/200@DialAccount-e8d1;1!DialAccount!s!1!Ringing!AppQueue!(Outgoing Line)!200!!!3!9!(None)!1474977577.5519
Local/200@DialAccount-e8d1;2!DialAccount!s!12!Ring!Dial!Local/45200@DialLine/n,3600!503!!!3!9!(None)!1474977577.5520
Local/0002@CallFromInternal-9407;2!queue_metallica!s!19!Up!Queue!Metallica,ti ,,,3600!503!!!3!120!(None)!1474977466.5503
Local/0002@CallFromInternal-9407;1!CallFromInternal!!1!Up!AppDial!(Outgoing Line)!s!!!3!120!SIP/503-pcherosoftphone503-1-0000056c!1474977466.5502
SIP/csbc04-00000570!CallFromCSBC!45200!1!Ringing!AppDial!(Outgoing Line)!45200!!!3!9!(None)!1474977577.5523
SIP/503-pcherosoftphone503-1-0000056c!CallFromSipDevice!s!43!Up!Dial!Local/0002@CallFromInternal/n,3600,!503!!!3!120!Local/0002@CallFromInternal-9407;1!1474977466.5501
Local/45200@DialLine-9c29;2!DialLine!45200!74!Ring!Dial!SIP/+45200@csbc04,180,tciU(SetCalledIDNum^200^45200^Providertdcdanmark^200^200)!503!!!3!9!(None)!1474977577.5522
Local/45200@DialLine-9c29;1!DialLine!s!1!Ringing!AppDial!(Outgoing Line)!200!!!3!9!(None)!1474977577.5521

Example count

count 와 관련된 내용만을 표시한다.

pchero*CLI> core show channels count
8 active channels
4 active calls
2174 calls processed

show channel

지정된 채널의 상세 정보를 표시한다. Tab 키를 입력하면 확인 가능한 채널 이름의 목록이 나타난다.

pluto*CLI> help core show channel
Usage: core show channel <channel>
       Shows lots of information about the specified channel.

Example

pluto*CLI> core show channel SIP/403-test_403_softphone-1-00001394
 -- General --
           Name: SIP/403-test_403_softphone-1-00001394
           Type: SIP
       UniqueID: 1476432524.22708
       LinkedID: 1476432524.22708
      Caller ID: 403
 Caller ID Name: test3
Connected Line ID: (N/A)
Connected Line ID Name: (N/A)
    DNID Digits: 0002
       Language: da
          State: Up (6)
          Rings: 0
  NativeFormats: 0x8 (alaw)
    WriteFormat: 0x8 (alaw)
     ReadFormat: 0x8 (alaw)
 WriteTranscode: No 
  ReadTranscode: No 
1st File Descriptor: 30
      Frames in: 38657
     Frames out: 38465
 Time to Hangup: 0
   Elapsed Time: 0h12m50s
...

show channeltypes

사용가능한 채널 타입의 목록을 표시한다.

pluto*CLI> help core show channeltypes
Usage: core show channeltypes
       Lists available channel types registered in your
       Asterisk server.

Example

pluto*CLI> core show channeltypes
Type             Description                              Devicestate  Indications  Transfer    
-----------      -----------                              -----------  -----------  ----------- 
USTM             UNISTIM Channel Driver                   no           yes          no          
Recorder         Bridge Media Recording Channel Driver    no           yes          no          
Announcer        Bridge Media Announcing Channel Driver   no           yes          no          
Phone            Standard Linux Telephony API Driver      no           yes          no          
Console          OSS Console Channel Driver               no           yes          no          
CBAnn            Conference Bridge Announcing Channel     no           yes          no          
CBRec            Conference Bridge Recording Channel      no           no           no          
Skinny           Skinny Client Control Protocol (Skinny)  yes          yes          no          
SIP              Session Initiation Protocol (SIP)        yes          yes          yes         
UnicastRTP       Unicast RTP Media Channel Driver         no           no           no          
MulticastRTP     Multicast RTP Paging Channel Driver      no           no           no          
IAX2             Inter Asterisk eXchange Driver (Ver 2)   yes          yes          yes         
MGCP             Media Gateway Control Protocol (MGCP)    yes          yes          no          
Local            Local Proxy Channel Driver               yes          yes          no          
Surrogate        Surrogate channel used to pull channel f no           no           no          
----------
15 channel drivers registered.

show channeltype

입력한 채널타입의 상세정보를 표시한다.

pluto*CLI> help core show channeltype 
Usage: core show channeltype <name>
	Show details about the specified channel type, <name>.

Example

pluto*CLI> core show channeltype SIP
-- Info about channel driver: SIP --
  Device State: yes
    Indication: yes
     Transfer : yes
  Capabilities: (g723|ulaw|alaw|gsm|g726|g726aal2|adpcm|slin|slin|slin|slin|slin|slin|slin|slin|slin|lpc10|g729|speex|speex|speex|ilbc|g722|siren7|siren14|testlaw|g719|opus|silk|silk|silk|silk)
   Digit Begin: yes
     Digit End: yes
    Send HTML : yes
 Image Support: no
  Text Support: yes

show codecs

사용가능한 코덱 리스트를 보여준다.

pluto*CLI> help core show codecs
Usage: core show codecs [audio|video|image|text]
       Displays codec mapping

Example

pluto*CLI> core show codecs
Disclaimer: this command is for informational purposes only.
	It does not indicate anything about your configuration.
      ID TYPE  NAME         FORMAT           DESCRIPTION
------------------------------------------------------------------------------------------------
      30 image png          png              (PNG Image)
       5 audio g726         g726             (G.726 RFC3551)
       3 audio alaw         alaw             (G.711 a-law)
       1 audio g723         g723             (G.723.1)
      19 audio speex        speex            (SpeeX)
      20 audio speex        speex16          (SpeeX 16khz)
      21 audio speex        speex32          (SpeeX 32khz)
      23 audio g722         g722             (G722)
      31 video h261         h261             (H.261 video)
      32 video h263         h263             (H.263 video)
...

Example text

pluto*CLI> core show codecs text
Disclaimer: this command is for informational purposes only.
	It does not indicate anything about your configuration.
      ID TYPE  NAME         FORMAT           DESCRIPTION
------------------------------------------------------------------------------------------------
      37 text  red          red              (T.140 Realtime Text with redundancy)
      38 text  t140         t140             (Passthrough T.140 Realtime Text)

show codec

지정한 순서의 코덱 맵핑을 보여준다.

pluto*CLI> help core show codec
Usage: core show codec <number>
       Displays codec mapping

Example

pluto*CLI> core show codec 2
          2 G.711 u-law (ulaw)

show config mappings

config mapping 을 보여준다.

pluto*CLI> help core show config mappings 
Usage: core show config mappings
	Shows the filenames to config engines.

Example

pluto*CLI> core show config mappings 
Config Engine: sqlite3

show file formats

Asterisk 에서 사용 가능한 파일들의 확장자들과 포멧들을 보여준다. 설정된 전체 file format 들을 보여준다.

pluto*CLI> help core show file formats 
Usage: core show file formats
       Displays currently registered file formats (if any).

Example

pluto*CLI> core show file formats
Format     Name       Extensions          
------     ----       ----------          
siren7     siren7     siren7              
h264       h264       h264                
gsm        gsm        gsm                 
slin16     wav16      wav16               
slin       wav        wav                 
g723       g723sf     g723|g723sf         
slin192    sln192     sln192              
slin96     sln96      sln96               
slin48     sln48      sln48               
slin44     sln44      sln44               
slin32     sln32      sln32               
slin24     sln24      sln24               
slin16     sln16      sln16               
slin12     sln12      sln12               
slin       sln        sln|raw             
adpcm      vox        vox                 
gsm        wav49      WAV|wav49           
g722       g722       g722                
ulaw       au         au                  
alaw       alaw       alaw|al|alw         
ulaw       pcm        pcm|ulaw|ul|mu|ulw  
g729       g729       g729                
g726       g726-16    g726-16             
g726       g726-24    g726-24             
g726       g726-32    g726-32             
g726       g726-40    g726-40             
ilbc       iLBC       ilbc                
siren14    siren14    siren14             
h263       h263       h263                
g719       g719       g719                
30 file formats registered.

wav 와 WAV 는 비슷하지만 다르다.

$ file ./*
./msg0005.wav: RIFF (little-endian) data, WAVE audio, Microsoft PCM, 16 bit, mono 8000 Hz
./msg0005.WAV: RIFF (little-endian) data, WAVE audio, GSM 6.10, mono 8000 Hz

show file version

현재 작동중인 Asterisk 와 모듈의 컴파일 버전 정보를 표시한다.

pluto*CLI> help core show file version 
Usage: core show file version [like <pattern>]
       Lists the files along with the Asterisk version.
       Optional regular expression pattern is used to filter the file list.

Example

pluto*CLI> core show file version like out
File                      Revision                                
----                      --------                                
sip/route.c               13.11.2                                 
func_timeout.c            13.11.2                                 
src/res_outbound.c        13.11.2                                 
stasis_message_router.c   13.11.2                                 
4 files listed.

show functions

dialplan 에서 사용가능한 application 목록을 표시한다.

pluto*CLI> help core show functions
Usage: core show functions [like <text>]
       List builtin functions, optionally only those matching a given string

Example

pluto*CLI> core show functions
Installed Custom Functions:
--------------------------------------------------------------------------------
AES_DECRYPT           AES_DECRYPT(key,string)              Decrypt a string encoded in base64 with AES given a 16 character key. 
AES_ENCRYPT           AES_ENCRYPT(key,string)              Encrypt a string with AES given a 16 character key. 
AGENT                 AGENT(AgentId[:item])                Gets information about an Agent 
...

show function

지정한 function 의 상세 설명을 표시한다.

pluto*CLI> help core show function
Usage: core show function <function>
       Describe a particular dialplan function.

Example

pluto*CLI> core show function AGENT

  -= Info about function 'AGENT' =- 

[Synopsis]
Gets information about an Agent 

[Description]
Not available

[Syntax]
AGENT(AgentId[:item])

[Arguments]
item
    The valid items to retrieve are:
    status - (default) The status of the agent (LOGGEDIN | LOGGEDOUT)
    password - Deprecated.  The dialplan handles any agent authentication.
    name - The name of the agent
    mohclass - MusicOnHold class
    channel - The name of the active channel for the Agent (AgentLogin)
    fullchannel - The untruncated name of the active channel for the Agent
    (AgentLogin)

[See Also]
Not available

show hanguphandlers all

설정된 모든 채널들의 hanguphandler 를 표시한다.

pluto*CLI> help core show hanguphandlers all
Usage: core show hanguphandlers all
       Show hangup handlers for all channels.

show hanguphandlers

지정된 채널의 자세한 hanguphandler 를 표시한다.

Usage: core show hanguphandlers <channel>
       Show hangup handlers of a specified channel.

show help

설정한 명령어의 도움말을 표시한다. 특정 명령어를 지정하지 않을 경우, 모든 명령어의 도움말을 표시한다.

pluto*CLI> help core show help
Usage: core show help [topic]
       When called with a topic as an argument, displays usage
       information on the given command. If called without a
       topic, it provides a list of commands.

Example

pluto*CLI> core show help sip show peers
Usage: sip show peers [like <pattern>]
       Lists all known SIP peers.
       Optional regular expression pattern is used to filter the peer list.

show hints

현재 설정되어 있는 hints 정보를 표시한다.

pluto*CLI> help core show hints
Usage: core show hints
       List registered hints.
       Hint details are shown in five columns. In order from left to right, they are:
       1. Hint extension URI.
       2. List of mapped device or presence state identifiers.
       3. Current extension state. The aggregate of mapped device states.
       4. Current presence state for the mapped presence state provider.
       5. Watchers - number of subscriptions and other entities watching this hint.

Example

pluto*CLI> core show hints

    -= Registered Asterisk Dial Plan Hints =-
   _[Q][u][e][u][e][-]!@Hints               : Custom:${EXTEN:6}Que  State:Idle            Watchers  0
                    207@Hints               : SIP/207-pluto_softph  State:Idle            Watchers  0
                    206@Hints               : SIP/206-pluto_softph  State:Idle            Watchers  0
                    205@Hints               : SIP/205-pluto_softph  State:Idle            Watchers  0
...

show hint

지정된 Extension 에 설정된 hint 정보를 표시한다.

pluto*CLI> help core show hint
Usage: core show hint <exten>
       List registered hint.
       Hint details are shown in five columns. In order from left to right, they are:
       1. Hint extension URI.
       2. List of mapped device or presence state identifiers.
       3. Current extension state. The aggregate of mapped device states.
       4. Current presence state for the mapped presence state provider.
       5. Watchers - number of subscriptions and other entities watching this hint.

Example

pluto*CLI> core show hint 200
                    200@Hints               : SIP/200-fake00085d13  State:Idle            Watchers  0
                 200DND@Hints               : NoHint                State:Unavailable     Watchers  1
2 hints matching extension 200

show image formats

설정된 모든 image format 들을 표시한다.

pluto*CLI> help core show image formats 
Usage: core show image formats
       Displays currently registered image formats (if any).

Example

pluto*CLI> core show image formats
      Name Extensions                                        Description     Format
      ---- ----------                                        -----------     ------
       jpg   jpg|jpeg                 JPEG (Joint Picture Experts Group)       jpeg

1 image format registered.

show license

현재 Asterisk 에 설정된 라이센스 정보를 표시한다.

pluto*CLI> help core show license 
Usage: core show license
       Shows the license(s) for this copy of Asterisk.

Example

pluto*CLI> core show license 

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2 as
published by the Free Software Foundation.

This program also contains components licensed under other licenses.
They include:

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

show profile

설정된 Asterisk profile 정보를 표시한다.

pluto*CLI> help core show profile
Usage: core show profile
       show profile information

Example

pluto*CLI> core show profile
profile values (1, allocated 10)
-------------------
    ID      Scale      Events        Value      Average  Name
     0: [       0]        211            0            0  ext_match

show settings

Asterisk 설정 정보를 표시한다.

pluto*CLI> help core show settings
Usage: core show settings
       Show core misc settings

Example

PBX Core settings
-----------------
  Version:                     GIT-13-14b4111
  Build Options:               AST_DEVMODE, LOADABLE_MODULES, BUILD_NATIVE, OPTIONAL_API
  Maximum calls:               Not set
  Maximum open file handles:   Not set
  Root console verbosity:      0
  Current console verbosity:   0
  Debug level:                 0
  Maximum load average:        0.000000
  Minimum free memory:         0 MB
  Startup time:                00:39:41
  Last reload time:            06:29:11
  System:                      Linux/3.16.0-4-amd64 built by pchero on x86_64 2015-12-08 11:42:30 UTC
  System name:                 
  Entity ID:                   08:00:27:1f:0a:4b
  Default language:            en
  Language prefix:             Enabled
  User name and group:         /
  Executable includes:         Disabled
  Transcode via SLIN:          Enabled
  Transmit silence during rec: Disabled
  Generic PLC:                 Enabled
  Min DTMF duration::          80

* Subsystems
  -------------
  Manager (AMI):               Enabled
  Web Manager (AMI/HTTP):      Disabled
  Call data records:           Enabled
  Realtime Architecture (ARA): Disabled

* Directories
  -------------
  Configuration file:          
  Configuration directory:     /etc/asterisk
  Module directory:            /usr/lib/asterisk/modules
  Spool directory:             /var/spool/asterisk
  Log directory:               /var/log/asterisk
  Run/Sockets directory:       /var/run/asterisk
  PID file:                    /var/run/asterisk/asterisk.pid
  VarLib directory:            /var/lib/asterisk
  Data directory:              /var/lib/asterisk
  ASTDB:                       /var/lib/asterisk/astdb
  IAX2 Keys directory:         /var/lib/asterisk/keys
  AGI Scripts directory:       /var/lib/asterisk/agi-bin

show sounds

현재 시스템에서 사용 가능한 전체 sound 파일 목록을 표시한다.

Usage: core show sounds
       Shows a listing of sound files available on the system.

Example

pluto*CLI> core show sounds
Available audio files:
conf-now-unmuted
enter-num-blacklist
vm-nomore
vm-review
demo-echodone
confbridge-rest-talk-vol-out
vm-Urgent
confbridge-leave
digits/70
confbridge-begin-leader
...

show sound

지정된 sound file 의 상세 정보를 표시한다.

pluto*CLI> help core show sound
Usage: core show sound [soundid]
       Shows information about the specified sound.

Example

pluto*CLI> core show sound hello
Indexed Information for hello:
  Language en:
    Description: Hello.
    Format: gsm

show switches

등록된 모든 switch 정보를 표시한다.

pluto*CLI> help core show switches 
Usage: core show switches
       List registered switches

Example

pluto*CLI> core show switches 

    -= Registered Asterisk Alternative Switches =-
IAX2: IAX Remote Dialplan Switch
DUNDi: DUNDi Discovered Dialplan Switch
Realtime: Realtime Dialplan Switch
Loopback: Loopback Dialplan Switch

show sysinfo

간략한 system 정보를 표시한다.

pluto*CLI> help core show sysinfo
Usage: core show sysinfo
       List current system information.

Example

pluto*CLI> core show sysinfo

System Statistics
-----------------
  System Uptime:             254 hours
  Total RAM:                 947740 KiB
  Free RAM:                  40368 KiB
  Buffer RAM:                39132 KiB
  Total Swap Space:          102396 KiB
  Free Swap Space:           52332 KiB

  Number of Processes:       203 

show taskprocessors

간단한 task processor 통계를 보여준다.

pluto*CLI> help core show taskprocessors 
Usage: core show taskprocessors
	Shows a list of instantiated task processors and their statistics

Example

pluto*CLI> core show taskprocessors 

Processor                                      Processed   In Queue  Max Depth  Low water High water
app_voicemail                                          0          0          0        450        500
ast_msg_queue                                          0          0          0        450        500
CCSS_core                                              0          0          0        450        500
hep_queue_tp                                           0          0          0        450        500
iax2_transmit                                          0          0          0        450        500
Sorcery                                                0          0          0        450        500

show threads

현재 작동중인 전체 thread 목록을 표시한다.

pluto*CLI> help core show threads
Usage: core show threads
       List threads currently active in the system.

Example

pluto*CLI> core show threads
0x768b2420 32129 (void*)&zmq_cmd_thread started at [  582] src/res_zmq_manager.c ast_zmq_start()
0x736f3420 32106 netconsole           started at [ 1647] asterisk.c listener()
0x7372f420 30874 default_tps_processing_function started at [  200] taskprocessor.c default_listener_start()
0x7376b420 30873 default_tps_processing_function started at [  200] taskprocessor.c default_listener_start()

show translation

pluto*CLI> help core show translation 
Usage: 'core show translation' can be used in two ways.
       1. 'core show translation [recalc [<recalc seconds>]]
          Displays known codec translators and the cost associated
          with each conversion.  If the argument 'recalc' is supplied along
          with optional number of seconds to test a new test will be performed
          as the chart is being displayed.
       2. 'core show translation paths [codec [sample_rate]]'
           This will display all the translation paths associated with a codec.
           If a codec has multiple sample rates, the sample rate must be
           provided as well.

Example

pluto*CLI> core show translation
         Translation times between formats (in microseconds) for one second of data
          Source Format (Rows) Destination Format (Columns)

           ulaw  alaw   gsm  g726 g726aal2 adpcm  slin  slin  slin  slin  slin  slin  slin  slin  slin lpc10  ilbc  g722 testlaw
     ulaw     -  9150 15000 15000    15000 15000  9000 17000 17000 17000 17000 17000 17000 17000 17000 15000 15000 17250   15000
     alaw  9150     - 15000 15000    15000 15000  9000 17000 17000 17000 17000 17000 17000 17000 17000 15000 15000 17250   15000
      gsm 15000 15000     - 15000    15000 15000  9000 17000 17000 17000 17000 17000 17000 17000 17000 15000 15000 17250   15000
     g726 15000 15000 15000     -    15000 15000  9000 17000 17000 17000 17000 17000 17000 17000 17000 15000 15000 17250   15000
 g726aal2 15000 15000 15000 15000        - 15000  9000 17000 17000 17000 17000 17000 17000 17000 17000 15000 15000 17250   15000
    adpcm 15000 15000 15000 15000    15000     -  9000 17000 17000 17000 17000 17000 17000 17000 17000 15000 15000 17250   15000
     slin  6000  6000  6000  6000     6000  6000     -  8000  8000  8000  8000  8000  8000  8000  8000  6000  6000  8250    6000
     slin 14500 14500 14500 14500    14500 14500  8500     -  8000  8000  8000  8000  8000  8000  8000 14500 14500 14000   14500
     slin 14500 14500 14500 14500    14500 14500  8500  8500     -  8000  8000  8000  8000  8000  8000 14500 14500  6000   14500
     slin 14500 14500 14500 14500    14500 14500  8500  8500  8500     -  8000  8000  8000  8000  8000 14500 14500 14500   14500
     slin 14500 14500 14500 14500    14500 14500  8500  8500  8500  8500     -  8000  8000  8000  8000 14500 14500 14500   14500
     slin 14500 14500 14500 14500    14500 14500  8500  8500  8500  8500  8500     -  8000  8000  8000 14500 14500 14500   14500
     slin 14500 14500 14500 14500    14500 14500  8500  8500  8500  8500  8500  8500     -  8000  8000 14500 14500 14500   14500
     slin 14500 14500 14500 14500    14500 14500  8500  8500  8500  8500  8500  8500  8500     -  8000 14500 14500 14500   14500
     slin 14500 14500 14500 14500    14500 14500  8500  8500  8500  8500  8500  8500  8500  8500     - 14500 14500 14500   14500
    lpc10 15000 15000 15000 15000    15000 15000  9000 17000 17000 17000 17000 17000 17000 17000 17000     - 15000 17250   15000
     ilbc 15000 15000 15000 15000    15000 15000  9000 17000 17000 17000 17000 17000 17000 17000 17000 15000     - 17250   15000
     g722 15600 15600 15600 15600    15600 15600  9600 17500  9000 17000 17000 17000 17000 17000 17000 15600 15600     -   15600
  testlaw 15000 15000 15000 15000    15000 15000  9000 17000 17000 17000 17000 17000 17000 17000 17000 15000 15000 17250       -

show uptime

Asterisk 의 동작 시간을 표시한다.

pluto*CLI> help core show uptime
Usage: core show uptime [seconds]
       Shows Asterisk uptime information.
       The seconds word returns the uptime in seconds only.

Example

vpbx120*CLI> core show uptime
System uptime: 3 weeks, 6 days, 17 hours, 27 minutes, 32 seconds 
Last reload: 6 hours, 57 minutes, 5 seconds 

show version

Version 정보를 표시한다.

pluto*CLI> help core show version
Usage: core show version
       Shows Asterisk version information.

Example

pluto*CLI> core show version
Asterisk 13.11.2 built by root @ pluto.pchero21.com on a x86_64 running Linux on 2016-09-29 22:30:59 UTC

show warranty

Warranty 정보를 표시한다(있다면).

pluto*CLI> help core show warranty
Usage: core show warranty
       Shows the warranty (if any) for this copy of Asterisk.

Example

pluto*CLI> core show warranty 

			    NO WARRANTY

BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
REPAIR OR CORRECTION.

IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.

stop gracefully

Asterisk 를 종료한다. 새로운 콜들은 받지 않고, 현재 Active 상태인 콜들이 모두 종료되면 Asterisk 를 종료한다.

pluto*CLI> help core stop gracefully 
Usage: core stop gracefully
       Causes Asterisk to not accept new calls, and exit when all
       active calls have terminated normally.

Example

pluto*CLI> core stop gracefully
pluto*CLI> 
Disconnected from Asterisk server
Asterisk cleanly ending (0).
Executing last minute cleanups

stop now

Asterisk 를 즉시 종료한다. 모든 Active 상태의 콜들은 즉시 종료된다.

pluto*CLI> help core stop now
Usage: core stop now
       Shuts down a running Asterisk immediately, hanging up all active calls .

Example

pluto*CLI> core stop now
pluto*CLI> 
Disconnected from Asterisk server
Asterisk cleanly ending (0).
Executing last minute cleanups

stop when convenient

Asterisk 를 종료한다. 새로운 콜들은 여전히 인입이 가능하고, 현재 진행 중인 콜들도 계속 진행된다. 시스템에 아무런 콜이 없을 때, 시스템을 종료한다.

pluto*CLI> help core stop when convenient
Usage: core stop when convenient
       Causes Asterisk to perform a shutdown when all active calls have ended.

Example

pluto*CLI> core stop when convenient 
Waiting for inactivity to perform halt
pluto*CLI> 
Disconnected from Asterisk server
Asterisk cleanly ending (0).
Executing last minute cleanups

waitfullybooted

Asterisk 가 완전히 부팅이 완료될 때 까지 대기한다.

pluto*CLI> help core waitfullybooted 
Usage: core waitfullybooted
	Wait until Asterisk has fully booted.

Example

pluto*CLI> core waitfullybooted
Asterisk has fully booted.