I need some help from you. I*m using Isdn4linux with Asterisk and incoming calls are working but anytime I whant to make an outgoing call I get this message. -- Executing Answer(Modem[i4l]/ttyI0, ) in new stack -- Executing Dial(Modem[i4l]/ttyI0, SIP/21|10) in new stack -- Called 21 -- SIP/21-aded is ringing -- Nobody picked up in 10000 ms -- Executing Dial(Modem[i4l]/ttyI0, Modem/g1/918708798) in new stack Nov 2 20:00:39 WARNING[1110502320]: chan_modem.c:191 modem_call: Destination g1/918708798 requres a real destination (device:destination) -- Couldn't call g1/918708798 -- Hungup 'Modem[i4l]/ttyI1' == Everyone is busy/congested at this time -- Hungup 'Modem[i4l]/ttyI0' This is the message for the calls out to the pstn -- Executing Dial(SIP/21-d99a, Modem/g1:213570150) in new stack -- Called g1:213570150 -- Modem[i4l]/ttyI1 is busy -- Hungup 'Modem[i4l]/ttyI1' == Everyone is busy/congested at this time Nov 2 20:35:56 WARNING[1110502320]: pbx.c:1933 ast_pbx_run: Timeout, but no rule 't' in context 'local-access' Well if you have some time give some clues on how to solve this issue. Regards Paulo Adriano Francisco Paulo Adriano WaveLIS LDA Mobile +351 91 870 87 98 Office + 351 21 989 83 34 Fax +351 21 989 83 35 E-mail : pauloadriano@wavelis.pt -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20041103/e2b5d7f3/attachment.htm
Paulo Adriano wrote:> > I need some help from you. I?m using Isdn4linux with Asterisk and > incoming calls are working but anytime I whant to make an outgoing callI also use isdn4linux for interfacing with my BRI line. I have a macro set up for the actual dialling: -- start -------------------------------------------- [macro-isdnout] ; ${ARG1} - Device to ring out on ; ${ARG2} - Number to dial exten => s,1,Dial(${ARG1}:${ARG2},,r) -- end ---------------------------------------------- And then I call it like this: -- start -------------------------------------------- exten => _[08]XXX.,1,Macro(isdnout,Modem/g0,${EXTEN}) exten => _1*XXX.,1,Macro(isdnout,Modem/g1,${EXTEN:2}) -- end ---------------------------------------------- That means that if I dial a number starting with a 0 or an 8 then it uses the g0 group in the modems.conf and if I dial a number starting wiht a 1* then it uses the g1 group I set up in modems.conf. I set 2 groups up so that I could choose which MSN to use for the outbound callerid (one for my 'Home' number and one for my 'Office' number). HTH. Regards Darryl