Are you working off of the default.xml dialplan file? If so, it has an example condition already:<div><br></div><div><div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">      &lt;condition field=&quot;${sip_has_crypto}&quot; expression=&quot;^(AES_CM_128_HMAC_SHA1_32|AES_CM_128_HMAC_SHA1_80)$&quot; break=&quot;never&quot;&gt;</font></div>
<div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace"><span class="Apple-tab-span" style="white-space:pre">        </span>&lt;action application=&quot;set&quot; data=&quot;sip_secure_media=true&quot;/&gt;</font></div>
<div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace"><span class="Apple-tab-span" style="white-space:pre">        </span>&lt;!-- Offer SRTP on outbound legs if we have it on inbound. --&gt;</font></div><div>
<font class="Apple-style-span" face="&#39;courier new&#39;, monospace"><span class="Apple-tab-span" style="white-space:pre">        </span>&lt;!-- &lt;action application=&quot;export&quot; data=&quot;sip_secure_media=true&quot;/&gt; --&gt;</font></div>
<div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">      &lt;/condition&gt;</font></div><div><br></div><div>What exactly are you checking on in your scenario? Most likely there is an elegant way to do it. Give us the plain language description of the problem you&#39;re addressing and the community will no doubt have good suggestions for you.</div>
<div><br></div><div>-MC</div><br><div class="gmail_quote">On Thu, Jun 16, 2011 at 10:22 AM, Rob Hutton <span dir="ltr">&lt;<a href="mailto:justlikeef@gmail.com">justlikeef@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Steven -<br>
<br>
Thanks for the help here...<br>
<br>
So there would have to be two dialplan entries for this number to work with<br>
either RTP or SRTP? (Maybe two devices registering to the same user?)<br>
<br>
Would it make more since to do this in a more global manner higher up in the<br>
dialplan in its own condition block?<br>
<div><div></div><div class="h5"><br>
<br>
On Thursday 16 June 2011 03:15:33 Steven Ayre wrote:<br>
&gt;  {ERR} mod_dialplan_xml.c:110 Nexted conditions are not allowed<br>
&gt;<br>
&gt; That&#39;s because it shouldn&#39;t be nested. It&#39;s not missing a /, and the 1st<br>
&gt; Should have the /. The extra indendation shouldn&#39;t be there on the 2nd.<br>
&gt;<br>
&gt; It should look like this:<br>
&gt;<br>
&gt; &lt;extension name=&quot;incoming-fxs&quot;&gt;<br>
&gt;      &lt;condition field=&quot;destination_number&quot; expression=&quot;^(202)$&quot;/&gt;<br>
&gt;      &lt;condition field=&quot;${sip_has_crypto}&quot;<br>
&gt; expression=&quot;^(AES_CM_128_HMAC_SHA1_32|AES_CM_128_HMAC_SHA1_80)$&quot;<br>
&gt; break=&quot;never&quot;&gt;<br>
&gt;           &lt;action application=&quot;set&quot; data=&quot;sip_secure_media=true&quot;/&gt;<br>
&gt;           &lt;action application=&quot;bridge&quot; data=&quot;openzap/1/1&quot;/&gt;<br>
&gt;      &lt;/condition&gt;<br>
&gt; &lt;/extension&gt;<br>
&gt;<br>
&gt; The two conditions function as an AND, even though it&#39;s not nested. FS<br>
&gt; stops checking the extension as soon as it sees a condition that&#39;s false<br>
&gt; (at least by default and in the above case), so if the destination is not<br>
&gt; 202 it&#39;ll never get to the 2nd condition.<br>
&gt;<br>
&gt; -Steve<br>
&gt;<br>
&gt; On 16 June 2011 03:10, Rob Hutton &lt;<a href="mailto:justlikeef@gmail.com">justlikeef@gmail.com</a>&gt; wrote:<br>
&gt; &gt; I think I have TLS and SRTP working at this point, but in the docs it<br>
&gt; &gt; says to use the following template for the dialplan:<br>
&gt; &gt;<br>
&gt; &gt; <a href="http://wiki.freeswitch.org/wiki/Secure_RTP" target="_blank">http://wiki.freeswitch.org/wiki/Secure_RTP</a>:<br>
&gt; &gt;  &lt;extension name=&quot;incoming-fxs&quot;&gt;<br>
&gt; &gt;<br>
&gt; &gt;    &lt;condition field=&quot;destination_number&quot; expression=&quot;^(202)$&quot;/&gt;<br>
&gt; &gt;<br>
&gt; &gt;      &lt;condition field=&quot;${sip_has_crypto}&quot;<br>
&gt; &gt;<br>
&gt; &gt; expression=&quot;^(AES_CM_128_HMAC_SHA1_32|AES_CM_128_HMAC_SHA1_80)$&quot;<br>
&gt; &gt; break=&quot;never&quot;&gt;<br>
&gt; &gt;<br>
&gt; &gt;      &lt;action application=&quot;set&quot; data=&quot;sip_secure_media=true&quot;/&gt;<br>
&gt; &gt;      &lt;action application=&quot;bridge&quot; data=&quot;openzap/1/1&quot;/&gt;<br>
&gt; &gt;<br>
&gt; &gt;    &lt;/condition&gt;<br>
&gt; &gt;<br>
&gt; &gt;  &lt;/extension<br>
&gt; &gt;<br>
&gt; &gt; 1) There is a missing &gt; at the end of the close extension tag.<br>
&gt; &gt; 2) There is either a missing / at the end of the internal condition line,<br>
&gt; &gt; or a missing condition close tag somewhere<br>
&gt; &gt; 3) When I fix the interal condition, I get an error:<br>
&gt; &gt;<br>
&gt; &gt; {ERR} mod_dialplan_xml.c:110 Nexted conditions are not allowed<br>
&gt; &gt;<br>
&gt; &gt; All this, but a packet capture shows that SRTP is working based on what I<br>
&gt; &gt; did on:<br>
&gt; &gt;<br>
&gt; &gt; <a href="http://wiki.freeswitch.org/wiki/SIP_TLS" target="_blank">http://wiki.freeswitch.org/wiki/SIP_TLS</a><br>
&gt; &gt;<br>
&gt; &gt; Can someone give me some guidance on  the Secure_RTP page and I will<br>
&gt; &gt; update whatever?<br>
&gt; &gt;<br>
&gt; &gt; _______________________________________________<br>
&gt; &gt; FreeSWITCH-users mailing list<br>
&gt; &gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>
&gt; &gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt; &gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt; &gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
<br>
_______________________________________________<br>
FreeSWITCH-users mailing list<br>
<a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
</div></div></blockquote></div><br></div>