Hi,
After a reboot of teh asterisk-server, we can’t make outbound call as long as we receive an inbound call.
chan_dahdi.conf
[code][trunkgroups]
[channels]
language=fr
; Span 1: WCTDM/4 “Wildcard TDM400P REV I Board 5” (MASTER)
;;; line="3 WCTDM/4/2 FXSKS (EC: MG2)"
signalling=fxs_ks
callerid=asreceived
group=0
context=incoming-1
channel => 3
;;; line="4 WCTDM/4/3 FXSKS (In use) (EC: MG2)"
signalling=fxs_ks
callerid=asreceived
group=0
context=incoming-2
channel => 4
[/code]
extensions .conf
[code][general]
static = yes
writeprotect = no
clearglobalvars = yes
[globals]
Gateway = “DAHDI/3-1”
[incoming-1]
exten => s,1,Answer()
exten => s,n,dial(SIP/721)
exten => s,n,hangup()
[incoming-2]
exten => s,1,Answer()
exten => s,n,dial(SIP/714)
exten => s,n,hangup()
[POSTE]
include => from-internal
include => to-external
[from-internal]
exten => 7XX,1,Ansner()
exten => 7XX,2,Dial(SIP/${EXTEN})
exten => 7XX,3,Hangup()
[to-external]
exten => _00[123456]XXXXXXXX,1,Dial(${Gateway}/${EXTEN:1})
[/code]
When we make a outgoing call, on the CLI we have this message:
[code]Asterisk 1.6.1.0, Copyright © 1999 - 2008 Digium, Inc. and others.
Created by Mark Spencer markster@digium.com
Asterisk comes with ABSOLUTELY NO WARRANTY; type ‘core show warranty’ for details.
This is free software, with components licensed under the GNU General Public
License version 2 and other licenses; you are welcome to redistribute it under
certain conditions. Type ‘core show license’ for details.
Connected to Asterisk 1.6.1.0 currently running on srvtwister (pid = 3161)
Verbosity is at least 1
[May 18 11:55:02] WARNING[3638]: app_dial.c:1518 dial_exec_full: Unable to create channel of type ‘DAHDI’ (cause 0 - Unknown)[/code]
Now, we receive an incoming call then we can make a outgoing call
Any idea?
Thanks