Joseph
2004-Nov-14 14:52 UTC
[Asterisk-Users] ERROR: retrans_pkt: Maximum retries exceeded on call
Can anybody provide any input on an error: retrans_pkt: Maximum retries exceeded on call My extension 11 will not ring. I can dial out without any problem but when I call in it goes straight to voicemail box. Goto (office-open,s,1) -- Executing Wait("SIP/pstn-spa3k-71e2", "2") in new stack Nov 14 14:37:15 WARNING[65541]: chan_sip.c:497 retrans_pkt: Maximum retries exceeded on call 619f22f305b19076493daecd02391d3f@10.0.0.101for seqno 102 (Request) Goto (office-open,1,1) -- Executing Dial("SIP/pstn-spa3k-71e2", "SIP/11|20") in new stack -- Called 11 Nov 14 14:37:33 WARNING[65541]: chan_sip.c:497 retrans_pkt: Maximum retries exceeded on call 04b3f1731d86a8970d1d996930bb81e5@10.0.0.101for seqno 102 (Request) My sip.conf. [11] ; outgoing call on fxs port type=friend host=dynamic context=internal secret=xxxx port=5064 ; port on Line 1 username=demo1 mailbox=11 dtmfmode=rfc2833 canreinvite=no nat=no [pstn-spa3k] ; incoming calls on FXO port type=friend secret=spa3k username=demo2 host=dynamic port=5065 ; port on Pstn line dtmfmode=rfc2833 nat=no context=incoming extension.conf [globals] sales_support=SIP/11 ;accounting=SIP/12 pstn-spa3k=10.0.0.150:5065 ;the pstn line on the spa3k [incoming] ; First, let's do the holidays exten => 888,1,GotoIfTime(*|*|1|jan?holiday,s,1) exten => 888,2,GotoIfTime(*|*|1|jul?holiday,s,1) exten => 888,3,GotoIfTime(*|*|11|nov?holiday,s,1) exten => 888,4,GotoIfTime(17:00-23:59|*|24|dec?holiday,s,1) exten => 888,5,GotoIfTime(*|*|25|dec?holiday,s,1) exten => 888,6,GotoIfTime(17:00-23:59|*|31|dec?holiday,s,1) ; these are the days we're open exten => 888,7,GotoIfTime(10:00-17:59|mon-sun|*|*?office-open,s,1) ; if we're not open, we're closed (duh!) exten => 888,8,Goto(office-closed,s,1) [office-open] exten => s,1,Wait(2) exten => s,2,Answer() exten => s,3,BackGround(welcome) ; Play a congratulatory message exten => s,4,Goto(1,1) exten => *,1,Goto(s,3) exten => 1,1,Dial(${sales_support},20) exten => 1,2,Voicemail(u11) ; Right to voicemail exten => 1,3,Hangup() -- #Joseph