Hi, I am wondering if anyone has asterisk running successfully on a linsys WRT54GS router with openwrt? I have it mostly running ( incoming not working, no VMail ). I would like to configure Vmail to email voicemails and not store them. I believe this is possible, but does anyone have it working? Also, the issue i have with incoming calls is odd. I seem to get a timeout when dialing my SPA2000. Atleast that is the message. my incomeing context is [incoming] exten => s,1,Wait(10) exten => s,10,Dial(SIP/3518,20,tr) the wait is executed, but the Dial timesout and I can't figure out why, any suggestions? i have tried exten => s,10,Dial(SIP/3518,40,tr) as well. I have no issue at all with outgoing calls. I have 2 lines, one with teliax (IAX) and one with BV (SIP) both seem to be registered okay. --Dalon
You have got too many issues dumped into one email. (That may be good for the traffic on this list, though it may not get required responses.) I will try my best to answer your questions. 1)How about trying this in your extensions.conf to solve the timeout: [incoming] exten => s,1,Wait(10) ;exten => s,10,Dial(SIP/3518,20,tr) exten => s,2,Dial(SIP/3518,20,tr) 2)Vocemail deletion - You should have checked the WIKI first. However, here is the entry for voicemail.conf. 1701 => 1701,Extension 1701,SKennedy@eezeephone.com,SKennedy@pager.att.com,delete=1 I run WRT54g with OpenWRT. I may have been the first who tried. There is a lot going on with that part and I cannot explain that in this email. Best Seshu -----Original Message----- From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Dalon Westergreen Sent: Monday, April 04, 2005 2:35 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: [Asterisk-Users] Asterisk on WRT54GS Hi, I am wondering if anyone has asterisk running successfully on a linsys WRT54GS router with openwrt? I have it mostly running ( incoming not working, no VMail ). I would like to configure Vmail to email voicemails and not store them. I believe this is possible, but does anyone have it working? Also, the issue i have with incoming calls is odd. I seem to get a timeout when dialing my SPA2000. Atleast that is the message. my incomeing context is [incoming] exten => s,1,Wait(10) exten => s,10,Dial(SIP/3518,20,tr) the wait is executed, but the Dial timesout and I can't figure out why, any suggestions? i have tried exten => s,10,Dial(SIP/3518,40,tr) as well. I have no issue at all with outgoing calls. I have 2 lines, one with teliax (IAX) and one with BV (SIP) both seem to be registered okay. --Dalon -------------------------------------------------------- NOTICE: If received in error, please destroy and notify sender. Sender does not waive confidentiality or privilege, and use is prohibited.
Hi Dalon, I have it running including VMAIL, 3 SIP and one IAX2 account AND OPENPVN ... Incoming and outgoing connections are OK, both in nat'ed local 192.168.x.x and external real IP adresses ... --Juergen>I am wondering if anyone has asterisk running successfully on a linsys >WRT54GS router with openwrt? I have it mostly running ( incoming not >working, no VMail ). > >I would like to configure Vmail to email voicemails and not store >them. I believe this is possible, but does anyone have it working? > >Also, the issue i have with incoming calls is odd. I seem to get a >timeout when dialing my SPA2000. Atleast that is the message. my >incomeing context is > >[incoming] >exten => s,1,Wait(10) >exten => s,10,Dial(SIP/3518,20,tr) > >the wait is executed, but the Dial timesout and I can't figure out >why, any suggestions? i have tried > >exten => s,10,Dial(SIP/3518,40,tr) > >as well. I have no issue at all with outgoing calls. I have 2 lines, >one with teliax (IAX) and one with BV (SIP) both seem to be >registered okay. > >--Dalon >_______________________________________________ >Asterisk-Users mailing list >Asterisk-Users@lists.digium.com >http://lists.digium.com/mailman/listinfo/asterisk-users >To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users
Hi,> Also, the issue i have with incoming calls is odd. I seem to get a > timeout when dialing my SPA2000. Atleast that is the message. my > incomeing context is > > [incoming] > exten => s,1,Wait(10) > exten => s,10,Dial(SIP/3518,20,tr)/me wonders why s,10 you should use next priority after 1 , ie 2 so: [incoming] exten => s,1,Wait(10) exten => s,2,Dial(SIP/3518,20,tr) Matteo