<br><font size=2 face="sans-serif">Hi,</font>
<br>
<br><font size=2 face="sans-serif">I am trying to achieve 3-way conferencing
taking hint from wiki link http://www.voip-info.org/wiki/view/Asterisk+n-way+call+HOWTO</font>
<br>
<br><font size=2 face="sans-serif">Here is the scenario: </font>
<br><font size=2 face="sans-serif">1. user &quot;ua1&quot; calls user &quot;ca1&quot;
</font>
<br><font size=2 face="sans-serif">2. &quot;ua1&quot; then presses the
feature code &quot;*0&quot; to redirect &quot;ca1&quot; to conference room
300 </font>
<br><font size=2 face="sans-serif">3. &quot;ua1&quot; then dials the user
&quot;33&quot; </font>
<br><font size=2 face="sans-serif">4. user &quot;ua1&quot; and &quot;33&quot;
are connected </font>
<br><font size=2 face="sans-serif">5. Now when &quot;ua1&quot; presses
the feature code &quot;**&quot; to redirect user &quot;33&quot; to same
conference room 300, there is error thrown on Asterisk console that &quot;res_features.c:1415
ast_bridge_call: Bridge failed on channels SIP/ua1-ac750040 and AsyncGoto/Local/33@nway-conf-dest-7ecf,1&lt;ZOMBIE&gt;&quot;
</font>
<br>
<br><font size=2 face="sans-serif">Here is my dial plan: </font>
<br>
<br><font size=2 face="sans-serif"><b>[manu]</b> </font>
<br><font size=2 face="sans-serif">exten =&gt; ca1,1,Dial(SIP/ca1,,wWtTkKrR)
</font>
<br>
<br><font size=2 face="sans-serif"><b>[nway-conf]</b> </font>
<br><font size=2 face="sans-serif">exten =&gt; _.,1,Answer </font>
<br><font size=2 face="sans-serif">exten =&gt; _.,n,Set(CONFNO=${EXTEN})
</font>
<br><font size=2 face="sans-serif">exten =&gt; _.,n,Set(MEETME_EXIT_CONTEXT=nway-conf-invite)
</font>
<br><font size=2 face="sans-serif">exten =&gt; _.,n,Set(DYNAMIC_FEATURES=)
</font>
<br><font size=2 face="sans-serif">exten =&gt; _.,n,MeetMe(${CONFNO},pdMX)
</font>
<br><font size=2 face="sans-serif">exten =&gt; _.,n,Hangup </font>
<br>
<br><font size=2 face="sans-serif"><b>[nway-conf-invite]</b> </font>
<br><font size=2 face="sans-serif">exten =&gt; 0,1,Read(DEST,dial,,i) </font>
<br><font size=2 face="sans-serif">exten =&gt; 0,n,Set(DYNAMIC_FEATURES=nway-conf-inv#nway-conf-noinv)
</font>
<br><font size=2 face="sans-serif">exten =&gt; 0,n,Dial(Local/${DEST}@nway-conf-dest,,g)
</font>
<br><font size=2 face="sans-serif">exten =&gt; 0,n,Set(DYNAMIC_FEATURES=)
</font>
<br><font size=2 face="sans-serif">exten =&gt; 0,n,Goto(nway-conf,${CONFNO},1)
</font>
<br><font size=2 face="sans-serif">exten =&gt; i,1,Goto(nway-conf,${CONFNO},1)
</font>
<br>
<br><font size=2 face="sans-serif"><b>[nway-conf-dest] </b></font>
<br><font size=2 face="sans-serif">exten =&gt; _.,1,Dial(SIP/${EXTEN})
</font>
<br>
<br><font size=2 face="sans-serif"><b>[macro-nway-conf-start] </b></font>
<br><font size=2 face="sans-serif">exten =&gt; s,1,Set(CONFNO=300) </font>
<br><font size=2 face="sans-serif">exten =&gt; s,n,ChannelRedirect(${BRIDGEPEER},nway-conf,${CONFNO},1)
</font>
<br><font size=2 face="sans-serif">exten =&gt; s,n,Read(DEST,dial,,i) </font>
<br><font size=2 face="sans-serif">exten =&gt; s,n,Set(DYNAMIC_FEATURES=nway-conf-inv#nway-conf-noinv)
</font>
<br><font size=2 face="sans-serif">exten =&gt; s,n,Dial(Local/${DEST}@nway-conf-dest,,g)
</font>
<br><font size=2 face="sans-serif">exten =&gt; s,n,Set(DYNAMIC_FEATURES=)
</font>
<br><font size=2 face="sans-serif">exten =&gt; s,n,Goto(nway-conf,${CONFNO},1)
</font>
<br>
<br><font size=2 face="sans-serif"><b>[macro-nway-conf-ok] </b></font>
<br><font size=2 face="sans-serif">exten =&gt; s,1,ChannelRedirect(${BRIDGEPEER},nway-conf,${CONFNO},1)
</font>
<br>
<br><font size=2 face="sans-serif">The application map defined in features.conf
is: </font>
<br><font size=2 face="sans-serif"><b>[applicationmap] </b></font>
<br><font size=2 face="sans-serif">nway-conf-start =&gt; *0,self/caller,Macro,nway-conf-start
</font>
<br><font size=2 face="sans-serif">nway-conf-inv =&gt; **,self/caller,Macro,nway-conf-ok
</font>
<br><font size=2 face="sans-serif">nway-conf-noinv =&gt; *9,self/caller,Macro,nway-conf-notok
</font>
<br>
<br><font size=2 face="sans-serif"><b>The output logs on Asterisk console:</b>
</font>
<br>
<br><font size=2 face="sans-serif">localhost*CLI&gt; </font>
<br><font size=2 face="sans-serif">localhost*CLI&gt; </font>
<br><font size=2 face="sans-serif">-- Executing [ca1@manu:1] Dial(&quot;SIP/ua1-ac750040&quot;,
&quot;SIP/ca1||wWtTkKr&quot;) in new stack </font>
<br><font size=2 face="sans-serif">-- Called ca1 </font>
<br><font size=2 face="sans-serif">-- SIP/ca1-ab110040 is ringing </font>
<br><font size=2 face="sans-serif">-- SIP/ca1-ab110040 answered SIP/ua1-ac750040
</font>
<br><font size=2 face="sans-serif">[Apr 19 16:14:12] WARNING[22989]: rtp.c:874
ast_rtcp_read: RTCP Read too short </font>
<br><font size=2 face="sans-serif">-- Feature Found: nway-conf-start exten:
nway-conf-start </font>
<br><font size=2 face="sans-serif">-- Executing [s@macro-nway-conf-start:1]
Set(&quot;SIP/ua1-ac750040&quot;, &quot;CONFNO=300&quot;) in new stack
</font>
<br><font size=2 face="sans-serif">-- Executing [s@macro-nway-conf-start:2]
ChannelRedirect(&quot;SIP/ua1-ac750040&quot;, &quot;SIP/ca1-ab110040|nway-conf|300|1&quot;)
in new stack </font>
<br><font size=2 face="sans-serif">-- Executing [s@macro-nway-conf-start:3]
Read(&quot;SIP/ua1-ac750040&quot;, &quot;DEST|dial||i&quot;) in new stack
</font>
<br><font size=2 face="sans-serif">-- Executing [300@nway-conf:1] Answer(&quot;SIP/ca1-ab110040&quot;,
&quot;&quot;) in new stack </font>
<br><font size=2 face="sans-serif">-- Executing [300@nway-conf:2] Set(&quot;SIP/ca1-ab110040&quot;,
&quot;CONFNO=300&quot;) in new stack </font>
<br><font size=2 face="sans-serif">-- Executing [300@nway-conf:3] Set(&quot;SIP/ca1-ab110040&quot;,
&quot;MEETME_EXIT_CONTEXT=nway-conf-invite&quot;) in new stack </font>
<br><font size=2 face="sans-serif">-- Executing [300@nway-conf:4] Set(&quot;SIP/ca1-ab110040&quot;,
&quot;DYNAMIC_FEATURES=&quot;) in new stack </font>
<br><font size=2 face="sans-serif">-- Executing [300@nway-conf:5] MeetMe(&quot;SIP/ca1-ab110040&quot;,
&quot;300|pdMX&quot;) in new stack </font>
<br><font size=2 face="sans-serif">-- Created MeetMe conference 1023 for
conference '300' </font>
<br><font size=2 face="sans-serif">-- Playing 'conf-onlyperson' (language
'en') </font>
<br><font size=2 face="sans-serif">[Apr 19 16:14:15] WARNING[22995]: rtp.c:874
ast_rtcp_read: RTCP Read too short </font>
<br><font size=2 face="sans-serif">-- Started music on hold, class 'default',
on SIP/ca1-ab110040 </font>
<br><font size=2 face="sans-serif">-- User entered '33' </font>
<br><font size=2 face="sans-serif">-- Executing [s@macro-nway-conf-start:4]
Set(&quot;SIP/ua1-ac750040&quot;, &quot;DYNAMIC_FEATURES=nway-conf-inv#nway-conf-noinv&quot;)
in new stack </font>
<br><font size=2 face="sans-serif">-- Executing [s@macro-nway-conf-start:5]
Dial(&quot;SIP/ua1-ac750040&quot;, &quot;Local/33@nway-conf-dest||g&quot;)
in new stack </font>
<br><font size=2 face="sans-serif">-- Called 33@nway-conf-dest </font>
<br><font size=2 face="sans-serif">-- Executing [33@nway-conf-dest:1] Dial(&quot;Local/33@nway-conf-dest-7ecf,2&quot;,
&quot;SIP/33&quot;) in new stack </font>
<br><font size=2 face="sans-serif">-- Called 33 </font>
<br><font size=2 face="sans-serif">[Apr 19 16:14:18] WARNING[22995]: rtp.c:874
ast_rtcp_read: RTCP Read too short </font>
<br><font size=2 face="sans-serif">-- SIP/33-a8ff0040 is ringing </font>
<br><font size=2 face="sans-serif">-- Local/33@nway-conf-dest-7ecf,1 is
ringing </font>
<br><font size=2 face="sans-serif">-- SIP/33-a8ff0040 is ringing </font>
<br><font size=2 face="sans-serif">-- SIP/33-a8ff0040 is ringing </font>
<br><font size=2 face="sans-serif">-- SIP/33-a8ff0040 answered Local/33@nway-conf-dest-7ecf,2
</font>
<br><font size=2 face="sans-serif">-- Local/33@nway-conf-dest-7ecf,1 stopped
sounds </font>
<br><font size=2 face="sans-serif">-- Local/33@nway-conf-dest-7ecf,1 answered
SIP/ua1-ac750040 </font>
<br><font size=2 face="sans-serif">[Apr 19 16:14:21] WARNING[22995]: rtp.c:874
ast_rtcp_read: RTCP Read too short </font>
<br><font size=2 face="sans-serif">[Apr 19 16:14:24] WARNING[22995]: rtp.c:874
ast_rtcp_read: RTCP Read too short </font>
<br><font size=2 face="sans-serif">-- Feature Found: nway-conf-inv exten:
nway-conf-inv </font>
<br><font size=2 face="sans-serif">-- Executing [s@macro-nway-conf-ok:1]
Set(&quot;SIP/ua1-ac750040&quot;, &quot;CONFNO=300&quot;) in new stack
</font>
<br><font size=2 face="sans-serif">-- <b>Executing [s@macro-nway-conf-ok:2]
ChannelRedirect(&quot;SIP/ua1-ac750040&quot;, &quot;Local/33@nway-conf-dest-7ecf,1|nway-conf|300|1&quot;)
in new stack </b></font>
<br><font size=2 face="sans-serif"><b>[Apr 19 16:14:25] WARNING[22989]:
res_features.c:1415 ast_bridge_call: Bridge failed on channels SIP/ua1-ac750040
and AsyncGoto/Local/33@nway-conf-dest-7ecf,1&lt;ZOMBIE&gt; </b></font>
<br><font size=2 face="sans-serif">-- Executing [s@macro-nway-conf-start:6]
Set(&quot;SIP/ua1-ac750040&quot;, &quot;DYNAMIC_FEATURES=&quot;) in new
stack </font>
<br><font size=2 face="sans-serif">-- Executing [s@macro-nway-conf-start:7]
Goto(&quot;SIP/ua1-ac750040&quot;, &quot;nway-conf|300|1&quot;) in new
stack </font>
<br><font size=2 face="sans-serif">-- Goto (nway-conf,300,1) </font>
<br><font size=2 face="sans-serif">== Channel 'SIP/ua1-ac750040' jumping
out of macro 'nway-conf-start' </font>
<br><font size=2 face="sans-serif">[Apr 19 16:14:25] WARNING[22989]: res_features.c:1415
ast_bridge_call: Bridge failed on channels SIP/ua1-ac750040 and AsyncGoto/SIP/ca1-ab110040&lt;ZOMBIE&gt;
</font>
<br><font size=2 face="sans-serif">== Spawn extension (nway-conf, 300,
0) exited non-zero on 'SIP/ua1-ac750040' </font>
<br><font size=2 face="sans-serif">-- Executing [h@nway-conf:1] Answer(&quot;SIP/ua1-ac750040&quot;,
&quot;&quot;) in new stack </font>
<br><font size=2 face="sans-serif">-- Executing [h@nway-conf:2] Set(&quot;SIP/ua1-ac750040&quot;,
&quot;CONFNO=h&quot;) in new stack </font>
<br><font size=2 face="sans-serif">-- Executing [h@nway-conf:3] Set(&quot;SIP/ua1-ac750040&quot;,
&quot;MEETME_EXIT_CONTEXT=nway-conf-invite&quot;) in new stack </font>
<br><font size=2 face="sans-serif">-- Executing [h@nway-conf:4] Set(&quot;SIP/ua1-ac750040&quot;,
&quot;DYNAMIC_FEATURES=&quot;) in new stack </font>
<br><font size=2 face="sans-serif">-- Executing [h@nway-conf:5] MeetMe(&quot;SIP/ua1-ac750040&quot;,
&quot;h|pdMX&quot;) in new stack </font>
<br><font size=2 face="sans-serif">-- Created MeetMe conference 1022 for
conference 'h' </font>
<br><font size=2 face="sans-serif">-- Playing 'conf-onlyperson' (language
'en') </font>
<br><font size=2 face="sans-serif">-- Executing [300@nway-conf:1] Answer(&quot;Local/33@nway-conf-dest-7ecf,1&quot;,
&quot;&quot;) in new stack </font>
<br><font size=2 face="sans-serif">-- Executing [300@nway-conf:2] Set(&quot;Local/33@nway-conf-dest-7ecf,1&quot;,
&quot;CONFNO=300&quot;) in new stack </font>
<br><font size=2 face="sans-serif">-- Executing [300@nway-conf:3] Set(&quot;Local/33@nway-conf-dest-7ecf,1&quot;,
&quot;MEETME_EXIT_CONTEXT=nway-conf-invite&quot;) in new stack </font>
<br><font size=2 face="sans-serif">-- Executing [300@nway-conf:4] Set(&quot;Local/33@nway-conf-dest-7ecf,1&quot;,
&quot;DYNAMIC_FEATURES=&quot;) in new stack </font>
<br><font size=2 face="sans-serif">-- Executing [300@nway-conf:5] MeetMe(&quot;Local/33@nway-conf-dest-7ecf,1&quot;,
&quot;300|pdMX&quot;) in new stack </font>
<br><font size=2 face="sans-serif">-- Stopped music on hold on SIP/ca1-ab110040
</font>
<br><font size=2 face="sans-serif">[Apr 19 16:14:27] WARNING[22995]: rtp.c:874
ast_rtcp_read: RTCP Read too short </font>
<br>
<br><font size=2 face="sans-serif">The Asterisk version that i am using
is 1.4.0</font>
<br>
<br><font size=2 face="sans-serif">TIA</font>
<br>
<br><font size=2 face="sans-serif">regards,<br>
</font>
<table width=100%>
<tr>
<td width=100%><font size=1 color=#5f5f5f face="Arial"><b>Manu Mehta</b></font>
<tr valign=top>
<td><font size=1 color=red face="Arial"><b>&nbsp;</b></font>
<tr valign=top>
<td><font size=1 color=red face="Arial"><b>A R I C E N T</b></font>
<tr valign=top>
<td><font size=1 color=#5f5f5f face="Arial">&nbsp;</font>
<tr valign=top>
<td><font size=1 color=#5f5f5f face="Arial">Plot-17, Sector 18, Gurgaon
122015,</font>
<tr valign=top>
<td><font size=1 color=#5f5f5f face="Arial">Haryana, India</font>
<tr valign=top>
<td><font size=1 color=#5f5f5f face="Arial">&nbsp;</font>
<tr valign=top>
<td><font size=1 color=#5f5f5f face="Arial">Main&nbsp;&nbsp;&nbsp;&nbsp;
</font><font size=1 color=#606060 face="Arial">+91.124.4095888 x3274</font>
<tr valign=top>
<td><font size=1 color=#5f5f5f face="Arial">Fax&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</font><font size=1 color=#606060 face="Arial">+91.124.4095912</font></table>
<br>
<p><font size=3>&nbsp;<br>
<br>
*********************** &nbsp;Aricent-Unclassified &nbsp; ***********************</font>
<table><tr><td bgcolor=#ffffff><font color=#000000><pre>"DISCLAIMER: This message is proprietary to Aricent  and is intended solely for the use of 
the individual to whom it is addressed. It may contain privileged or confidential information and should not be 
circulated or used for any purpose other than for what it is intended. If you have received this message in error, 
please notify the originator immediately. If you are not the intended recipient, you are notified that you are strictly
prohibited from using, copying, altering, or disclosing the contents of this message. Aricent accepts no responsibility for 
loss or damage arising from the use of the information transmitted by this email including damage from virus."
</pre></font></td></tr></table>