search for: route1

Displaying 4 results from an estimated 4 matches for "route1".

Did you mean: route
2009 Jun 29
0
FW: re: Asterisk Outbound with Failover, alarm notification, dial status and hangupcause capturing to CDR from Dialplan
...to dial out via route 2 exten => _XXX.,n,goto(after-dial) ;after attempting to dial, go to after-dial exten => _XXX.,100,gotoif($[${dialout} > 0 ]?secondfail) exten => _XXX.,n,Set(dialout=${MATH(${dialout}+1)) exten => _XXX.,n,NoOp(${dialout}) exten => _XXX.,n,dial(${route1}/${EXTEN}@${context1}) ;attempt dial out via route 1 exten => _XXX.,n,goto(after-dial) ;after attempting to dial, go to after-dial exten => _XXX.,n(secondfail),set(try=${MATH(${dialout}+2}) ;If call has been dialled by other route and is failing over, set variable try = 2 exten => _XXX....
2008 Dec 16
2
1.6 upgrade issues
...roupb] etc. In each of those, there's a command include => outbound [outbound] has entries similar to the following: exten => _0[123]XXXXXXXX,1,Macro(outbound,${EXTEN}, provider1, provider2) the macro "outbound" is defined in extensions.ael as follows: macro outbound (number, route1, route2) { dosomestuff; } This has worked fine in 1.2 and 1.4, but seems to be choking on 1.6. I've looked through the various changes.txt files, and have read mention of replacing macro calls with Gosub(), but I'm not sure that's relevant to this issue. It looks like the dialplan pa...
2008 Dec 11
0
Dialing plan Question
Hi Can you please help me make this into one statement... It doesn't work if I say _9000[1-9]0[1-8]. Also would like to be able to achieve _9000[1-9]0[1-8]XXXXXXXX, Asterisk 1.4 exten => _900010[0-8].,1,Goto(route1,${EXTEN:5},1) exten => _900010[0-8].,2,Hangup exten => _900020[0-8].,1,Goto(route,${EXTEN:5},1) exten => _900020[0-8].,2,Hangup exten => _900030[0-8].,1,Goto(route,${EXTEN:5},1) exten => _900030[0-8].,2,Hangup all the way to ... exten => _900090[0-8].,1,Goto(route,${EXTEN:5},1) ex...
2004 Jan 28
1
Problems with multipath routing.
Hi all, I have setup two multipath route tables on my system for doing failover routing, What I want it''s that if GW at route1 of the MP is dead, traffic goes by route2, for doing that I have created the multipath routes as follows: ip route add table mail.traffic proto static nexthop via ${GW1} dev eth1 weight 1 nexthop via ${GW2} dev eth1 weight 250 But it does not run as I espected, I want that most (all if posible...