Angelo Sampietro
2003-Jun-18 09:38 UTC
[Asterisk-Users] == Everyone is busy at this time problem
hi, i installed asterisk and works very well, the only problem is that when i try to call a direct number of a company that has a normal PBX i got this error: to 10.8.210.153:5060 == Accepting call on 'SIP/a.sampietro-f7be' (a.sampietro) -- Executing Goto("SIP/a.sampietro-f7be", "doisdn|BYEXTENSION|1") in new stack -- Goto (doisdn,00115601992,1) -- Executing StripMSD("SIP/a.sampietro-f7be", "1") in new stack -- Executing DigitTimeout("SIP/a.sampietro-f7be", "10") in new stack -- Set Digit Timeout to 10 -- Executing ResponseTimeout("SIP/a.sampietro-f7be", "20") in new stack -- Set Response Timeout to 20 -- Executing Dial("SIP/a.sampietro-f7be", "Modem/g1:BYEXTENSION") in new stack -- Called g1:0115601992 -- Modem[i4l]/ttyI1 is busy -- Hungup 'Modem[i4l]/ttyI1' someone could help? thanks a lot, Angelo -- Angelo Sampietro IT Manager ARC Interactive "After a certain high level of technical skill is achieved, Science and art tend to coalesce in esthetics, plasticity, and form. The greatest scientists are always artists as well." Albert Einstein
Steven Critchfield
2003-Jun-18 11:28 UTC
[Asterisk-Users] == Everyone is busy at this time problem
On Wed, 2003-06-18 at 11:38, Angelo Sampietro wrote:> hi, > i installed asterisk and works very well, the only problem is that > when i try to call a direct number of a company that has a normal PBX > i got this error: > > to 10.8.210.153:5060 > == Accepting call on 'SIP/a.sampietro-f7be' (a.sampietro) > -- Executing Goto("SIP/a.sampietro-f7be", "doisdn|BYEXTENSION|1") in new stack > -- Goto (doisdn,00115601992,1) > -- Executing StripMSD("SIP/a.sampietro-f7be", "1") in new stack > -- Executing DigitTimeout("SIP/a.sampietro-f7be", "10") in new stack > -- Set Digit Timeout to 10 > -- Executing ResponseTimeout("SIP/a.sampietro-f7be", "20") in new stack > -- Set Response Timeout to 20 > -- Executing Dial("SIP/a.sampietro-f7be", "Modem/g1:BYEXTENSION") in new stack > -- Called g1:0115601992 > -- Modem[i4l]/ttyI1 is busy > -- Hungup 'Modem[i4l]/ttyI1' > > someone could help?Hopefully I have the mailserver problem on my end fixed, and didn't upset any digium people while doing this. Look at your dial string, change the colon to a slash. -- Steven Critchfield <critch@basesys.com>
Steven Critchfield
2003-Jun-19 11:23 UTC
[Asterisk-Users] == Everyone is busy at this time problem
On Thu, 2003-06-19 at 12:57, Eric Wieling wrote:> > > > > > exten => _0.,1,StripMSD,1 > > > exten => _.,2,DigitTimeout,10 > > > exten => _.,3,ResponseTimeout,20 > > > exten => _.,4,Dial,Modem/ttyI0:${EXTEN} > > > exten => _.,4,Dial,Modem/ttyI1:${EXTEN} > > This is wrong. Should be: > > exten => _.,1,StripMSD,1 > exten => _.,2,DigitTimeout,10 > exten => _.,3,ResponseTimeout,20 > exten => _.,4,Dial,Modem/ttyI0:${EXTEN} > exten => _.,5,Dial,Modem/ttyI1:${EXTEN}Plus one priority is for unavailable, specifically for when dial has timed out. 100 plus priority is for busy, like when the line is already in use. -- Steven Critchfield <critch@basesys.com>