-1
我已經從ViciBox iso(ViciBox_v.7.x86_64-7.0.4)安裝了Asterisk。 我使用的是軟電話(CounterPath的BRIA),我用vicidial在星號上設置它。 我可以在撥打voip號碼的Bria軟電話上正確接聽電話。 問題是我無法撥打電話。星號錯誤:無法在INVITE上進行身份驗證 - 無法調用
當我嘗試在Asterisk控制檯打電話給我:
[May 31 14:19:56] Connected to Asterisk 11.25.1-vici currently running on vicibox7 (pid = 1476)
[May 31 14:20:01] == Manager 'sendcron' logged on from 127.0.0.1
[May 31 14:20:01] == Manager 'sendcron' logged off from 127.0.0.1
[May 31 14:20:01] == Manager 'sendcron' logged on from 127.0.0.1
[May 31 14:20:01] == Manager 'sendcron' logged off from 127.0.0.1
[May 31 14:20:06] == Manager 'sendcron' logged on from 127.0.0.1
[May 31 14:20:06] == Manager 'sendcron' logged off from 127.0.0.1
[May 31 14:20:28] == Using SIP RTP CoS mark 5
[May 31 14:20:28] -- Executing [0039**********@default:1] Goto("SIP/001-00000000", "to-Gloobobusiness,s,1") in new stack
[May 31 14:20:28] -- Goto (to-Gloobobusiness,s,1)
[May 31 14:20:28] -- Executing [[email protected]:1] NoOp("SIP/001-00000000", "Chiamata in uscita sul trunk di gloonobusiness") in new stack
[May 31 14:20:28] -- Executing [[email protected]:2] Dial("SIP/001-00000000", "SIP/[email protected]_Gloobobusiness") in new stack
[May 31 14:20:28] == Using SIP RTP CoS mark 5
[May 31 14:20:28] -- Called SIP/[email protected]_Gloobobusiness
[May 31 14:20:28] NOTICE[1558][C-00000000]: chan_sip.c:23309 handle_response_invite: Failed to authenticate on INVITE to '"cccenter" <sip:[email protected]>;tag=as6d2f2341'
[May 31 14:20:28] -- SIP/Trunk_Gloobobusiness-00000001 is circuit-busy
[May 31 14:20:28] == Everyone is busy/congested at this time (1:0/1/0)
[May 31 14:20:28] -- Auto fallthrough, channel 'SIP/001-00000000' status is 'CONGESTION'
我的撥號規則:
exten => _+39.,1,Goto(to-Gloobobusiness,s,1)
exten => _39.,1,Goto(to-Gloobobusiness,s,1)
exten => _0039.,1,Goto(to-Gloobobusiness,s,1)
[to-Gloobobusiness]
exten => s,1,NoOp(Chiamata in uscita sul trunk di gloonobusiness)
same => n,Dial(SIP/${EXTEN}@Trunk_Gloobobusiness)
[from-Gloobobusiness]
exten => s,1,NoOp(Chiamata in ingresso mando al 001)
same => n,Dial(SIP/001)
如果你看看sip調試,你可以看到:To: –
這是你從softphone呼叫的號碼。但撥打到中繼線的號碼是s。你的撥號方案是錯誤的。 – arheops
我在帖子中添加了我的撥號方案,你能告訴我什麼是錯的嗎?並對不起:) –