- Mitglied seit
- 8 Mrz 2012
- Beiträge
- 7
- Punkte für Reaktionen
- 0
- Punkte
- 0
Hallo,
Ich habe folgende manager.conf Datei mit Asterisk 1.8 ohne Probleme benutzt.
Unter 10.0.5 funktioniert diese jedoch nicht mehr.
Meine Virtualbox Systeme unterscheiden sich nur in der Asterisk Version.
Im Logfile steht keine Fehlermeldung dazu.
Mit Telnet auf Port 5038 erhalte ich keine Verbindung.
Danke
__________________
Inhalt manager.conf Datei
Ich habe folgende manager.conf Datei mit Asterisk 1.8 ohne Probleme benutzt.
Unter 10.0.5 funktioniert diese jedoch nicht mehr.
Meine Virtualbox Systeme unterscheiden sich nur in der Asterisk Version.
Im Logfile steht keine Fehlermeldung dazu.
Mit Telnet auf Port 5038 erhalte ich keine Verbindung.
Danke
__________________
Inhalt manager.conf Datei
Code:
;
; Asterisk Call Management support
;
; By default asterisk will listen on localhost only.
;[general]
;enabled = yes
;port = 5038
;bindaddr = 127.0.0.1
; No access is allowed by default.
; To set a password, create a file in /etc/asterisk/manager.d
; use creative permission games to allow other serivces to create their own
; files
#include "manager.d/*.conf"
; manager.conf file for the Asterisk Manager Interface (AMI)
; It starts with the .general. section first
[general]
; You must enable the AMI feature
enabled=yes
; TCP Port on which AMI will listen
port = 5038
; I suppose Asterisk and OpenERP are on two different machines,
; so you must bind AMI on 0.0.0.0
bindaddr = 0.0.0.0
; We don.t need to activate the HTTP AMI interface : the module uses the native interface
webenabled = no
; Then, we create an AMI account for OpenERP
[click2dial] ; This is the AMI login
secret = geheim; This is the AMI password
; We deny AMI access for everybody
deny = 0.0.0.0/0.0.0.0
; We accept AMI access for OpenERP server (192.168.100.200)
permit = 192.168.100.200/255.255.255.255
; We give the minimum access rights required for the click2dial feature
; For Asterisk 1.6.x, you need the .originate. rights :
read = originate
write = originate
Zuletzt bearbeitet von einem Moderator: