So sehen die config dateien momentan aus? Gehe mal davon aus, das es hier irgendwo nen Fehler gibt!.
etc/capi.conf
#SuSEconfig.isdn generated
# card file proto io irq mem cardnr options
c2 c2.bin DSS1 - - - 1 P2P
c2 - DSS1 - - - 2 P2P
etc/asterisk/capi.conf
[T1] ;interface name
;name not starting with 'g' or 'contr'.
;Use one interface section for each isdn port!
controller=1 ;capi controller number of this interface/port
isdnmode=did ;'MSN' (point-to-multipoint) or 'DID' (direct inward dial)
incomingmsn=* ;allow incoming calls to this list of MSNs/DIDs, * = any
devices=2 ;number of concurrent calls (b-channels) on this controller
etc/asterisk/extension.conf
[general]
static=yes
writeprotect=no
priorityjumping=yes
[globals]
OFFICE_OPEN_OVERRIDE=
#include trunks.include
DIALOUT=9
INTERNATIONAL-PREFIX=011
RINGTIME=30
FOLLOWME_RINGTIME=20
OPERATOR=0
[from-outside]
exten => _X.,1,Goto(from-outside-redir,${EXTEN},1)
exten => s,1,Goto(from-outside-redir,${EXTEN},1)
[from-outside-redir]
#include "inbound.include"
#include "inbound_actions.include"
#include extensions.include
#include outbound.include
#include scripts.include
#include user_scripts.include
#include menus.include
[from-inside]
; local extensions are in extensions.include file
include => local-extensions
include => feature-extensions
; outbound numbers are in outbound.include file
include => outgoing
;parked calls
include => parkedcalls
exten => t,1,Hangup
exten => h,1,Hangup
exten => i,1,Playback(invalid)
exten => i,2,Hangup
[default]
include => local-extensions
[tl-record-app]
exten => s,1,Answer
exten => s,2,DigitTimeout(5)
exten => s,3,ResponseTimeout(10)
exten => s,4,BackGround(tl/record-menu)
; Recording
exten => 1,1,Wait(1)
exten => 1,2,Read(ID|tl/record-enter-num)
exten => 1,3,Wait(2)
exten => 1,4,Record(ogm/${ID}:gsm)
exten => 1,5,Wait(2)
exten => 1,6,Playback(ogm/${ID})
exten => 1,7,Wait(1)
exten => 1,8,Goto(s|2)
; Review
exten => 2,1,Wait(1)
exten => 2,2,Read(ID|tl/play-enter-num)
exten => 2,3,Wait(1)
exten => 2,4,Playback(ogm/${ID})
exten => 2,5,Wait(1)
exten => 2,6,Goto(s|2)
exten => t,1,Hangup
exten => h,1,Hangup
exten => #,1,Hangup
exten => i,1,Playback(invalid)
exten => i,2,Goto(s|2)