2 ; AMI - The Asterisk Manager Interface
4 ; Third party application call management support and PBX event supervision
6 ; This configuration file is read every time someone logs in
8 ; Use the "manager show commands" at the CLI to list available manager commands
9 ; and their authorization levels.
11 ; "manager show command <command>" will show a help text.
13 ; ---------------------------- SECURITY NOTE -------------------------------
14 ; Note that you should not enable the AMI on a public IP address. If needed,
15 ; block this TCP port with iptables (or another FW software) and reach it
16 ; with IPsec, SSH, or SSL vpn tunnel. You can also make the manager
17 ; interface available over http/https if Asterisk's http server is enabled in
18 ; http.conf and if both "enabled" and "webenabled" are set to yes in
19 ; this file. Both default to no. httptimeout provides the maximum
20 ; timeout in seconds before a web based session is discarded. The
21 ; default is 60 seconds.
30 ; Parameters that control AMI over TLS. ("enabled" must be set too).
31 ; You can open a connection to this socket with e.g.
33 ; openssl s_client -connect my_host:5039
35 ;tlsenable=no ; set to YES to enable it
36 ;tlsbindaddr=0.0.0.0:5039 ; address and port to bind to, default to bindaddr and port 5039
37 ;tlscertfile=/tmp/asterisk.pem ; path to the certificate.
38 ;tlsprivatekey=/tmp/private.pem ; path to the private key, if no private given,
39 ; if no tlsprivatekey is given, default is to search
40 ; tlscertfile for private key.
41 ;tlscipher=<cipher string> ; string specifying which SSL ciphers to use or not use
43 ;allowmultiplelogin = yes ; IF set to no, rejects manager logins that are already in use.
44 ; ; The default is yes.
46 ;displayconnects = yes
48 ; Add a Unix epoch timestamp to events (not action responses)
50 ;timestampevents = yes
52 ;brokeneventsaction = yes ; Restore previous behavior that caused the events
53 ; action to not return a response in certain
54 ; circumstances. Defaults to 'no'.
57 ; Display certain channel variables every time a channel-oriented
60 ;channelvars = var1,var2,var3
62 ; debug = on ; enable some debugging info in AMI messages (default off).
63 ; Also accessible through the "manager debug" CLI command.
65 ; authtimeout specifies the maximum number of seconds a client has to
66 ; authenticate. If the client does not authenticate beofre this timeout
67 ; expires, the client will be disconnected. (default: 30 seconds)
71 ; authlimit specifies the maximum number of unauthenticated sessions that will
72 ; be allowed to connect at any given time.
77 ; a) httptimeout sets the Max-Age of the http cookie
78 ; b) httptimeout is the amount of time the webserver waits
79 ; on a action=waitevent request (actually its httptimeout-10)
80 ; c) httptimeout is also the amount of time the webserver keeps
81 ; a http session alive after completing a successful action
87 ;permit=209.16.236.73/255.255.255.0
89 ;eventfilter=Event: Newchannel
90 ;eventfilter=!Channel: DAHDI*
91 ; The eventfilter option is used to whitelist or blacklist events per user to be
92 ; reported with regular expressions and are allowed if both the regex matches
93 ; and the user has read access set below. Filters are assumed to be for whitelisting
94 ; unless preceeded by an exclamation point, which marks it as being black.
95 ; Evaluation of the filters is as follows:
96 ; - If no filters are configured all events are reported as normal.
97 ; - If there are white filters only: implied black all filter processed first,
99 ; - If there are black filters only: implied white all filter processed first,
100 ; then black filters.
101 ; - If there are both white and black filters: implied black all filter processed
102 ; first, then white filters, and lastly black filters.
105 ; If the device connected via this user accepts input slowly,
106 ; the timeout for writes to it can be increased to keep it
107 ; from being disconnected (value is in milliseconds)
111 ;displayconnects = yes ; Display on CLI user login/logoff
113 ; Authorization for various classes
115 ; Read authorization permits you to receive asynchronous events, in general.
116 ; Write authorization permits you to send commands and get back responses. The
117 ; following classes exist:
119 ; all - All event classes below (including any we may have missed).
120 ; system - General information about the system and ability to run system
121 ; management commands, such as Shutdown, Restart, and Reload.
122 ; call - Information about channels and ability to set information in a
124 ; log - Logging information. Read-only. (Defined but not yet used.)
125 ; verbose - Verbose information. Read-only. (Defined but not yet used.)
126 ; agent - Information about queues and agents and ability to add queue
127 ; members to a queue.
128 ; user - Permission to send and receive UserEvent.
129 ; config - Ability to read and write configuration files.
130 ; command - Permission to run CLI commands. Write-only.
131 ; dtmf - Receive DTMF events. Read-only.
132 ; reporting - Ability to get information about the system.
133 ; cdr - Output of cdr_manager, if loaded. Read-only.
134 ; dialplan - Receive NewExten and VarSet events. Read-only.
135 ; originate - Permission to originate new calls. Write-only.
136 ; agi - Output AGI commands executed. Input AGI command to execute.
137 ; cc - Call Completion events. Read-only.
138 ; aoc - Permission to send Advice Of Charge messages and receive Advice
139 ; - Of Charge events.
140 ; test - Ability to read TestEvent notifications sent to the Asterisk Test
141 ; Suite. Note that this is only enabled when the TEST_FRAMEWORK
142 ; compiler flag is defined.
144 ;read = system,call,log,verbose,agent,user,config,dtmf,reporting,cdr,dialplan
145 ;write = system,call,agent,user,config,command,reporting,originate