ConnectionTAPI-Functions
Asterisk ManagerAsterisk Manager Proxy
Up >>

Asterisk Manager

Page Index

manager_custom.conf
Asterisk Manager account setup
You need an account to access the Asterisk Manager Interface. The accounts are stored in the Asterisk configuration file "manager.conf" or "manager_custom.conf".

Example of manager.conf:

;
; Asterisk Call Management support
;
[general]
enabled = yes
port = 5038
bindaddr = 0.0.0.0

[admin]
secret= amp111
deny=0.0.0.0/0.0.0.0
permit=127.0.0.1/255.255.255.0
read = system,call,log,verbose,command,agent,user
write = system,call,log,verbose,command,agent,user

[AstTapi]
secret= AstTapi
deny=0.0.0.0/0.0.0.0
permit=192.168.0.0/255.255.255.0
read = system,call,log,verbose,command,agent,user
write = system,call,log,verbose,command,agent,user

#include manager_custom.conf

Comments:
[AstTapi] The section [AstTapi] was added to manager.conf.
"AstTapi" is the login name you can use later.
secret= AstTapi = Password
permit= 192.168.0.0/255.255.255.0 All computers with an IP address in range 192.168.0.xxx can use this account.
#include manager_custom.conf Alternatively you can add the account also to manager_custom.conf.Beispiel

Hint: Please reload the Asterisk Manager to activate the new or modified account!