Hi Noah,<br>
&nbsp; Thanks for your reply.<br>
Please clarify one more doubt in extensions.conf file...<br>
is the following dial plan is right way to call another server(frome serverA to serverB)<br>
<br>
exten =&gt; _5XXXXX,1,Dial(sip/5XXXXX@192.1682.105:6030,15,tr)<br>
<br>

exten =&gt; _5XXXXX,2,Hangup<br>
<br>
<br>
here for an example the extension 510510 is in server B ...<br>
<br>
plz do reply <br>
<br>
<br>
Regards,<br>
Thiru<br>
<br>
<br><br><div><span class="gmail_quote">On 12/30/06, <b class="gmail_sendername">Noah Miller</b> &lt;<a href="mailto:noahisaacmiller@gmail.com">noahisaacmiller@gmail.com</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hi Thiru -<br><br>&gt;&nbsp;&nbsp;Could u tell me ,how to connect 2 asterisk server using sip as&nbsp;&nbsp;a<br>&gt; clients...<br>&gt;&nbsp;&nbsp;asterisk server are in same network...<br><br>You can connect them either as &quot;friends&quot; or as &quot;users/peers&quot;.&nbsp;&nbsp;I
<br>generally recommend the user/peer method for connecting two servers<br>since it clearly delineates which codecs and contexts are allowed.<br>Your sip.conf files will look something like this:<br><br>Server A sip.conf:
<br><br>[ToServerB]<br>type=peer<br>secret=&lt;fromServerAtoServerB&gt;<br>username=&lt;fromServerAtoServerB&gt;<br>host=&lt;ip.of.serverB&gt;<br>qualify=1000<br><br>[FromServerB]<br>type=user<br>secret=&lt;fromServerBtoServerA&gt;
<br>username=&lt;fromServerBtoServerA&gt;<br>context=extensions<br>disallow=all<br>allow=&lt;codecs you want to allow&gt;<br><br><br>Server B sip.conf:<br><br>[ToServerA]<br>type=peer<br>secret=&lt;fromServerBtoServerA&gt;
<br>username=&lt;fromServerBtoServerA&gt;<br>host=&lt;ip.of.serverA&gt;<br>qualify=1000<br><br>[FromServerA]<br>type=user<br>secret=&lt;fromServerAtoServerB&gt;<br>username=&lt;fromServerAtoServerB&gt;<br>context=extensions
<br>disallow=all<br>allow=&lt;codecs you want to allow&gt;<br><br>Replace the items in angle brackets &lt;xxx&gt; with your own values.<br><br>Now, if you have everything loaded correctly, and you issue a &quot;sip<br>show peers&quot; from the CLI of Server B, you should see something like:
<br><br>ToServerA/fromServerBtoServerA&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ip.of.server.A<br>5060&nbsp;&nbsp;&nbsp;&nbsp; OK (37 ms)<br><br><br>ALSO: Make sure you have the correct ports opened in both directions:<br><br>5060 TCP and UDP (this is the sip standard, but you can change it in 
sip.conf)<br>10000 - 20000 UDP (this is the asterisk default. You can set the exact<br>numbers in rtp.conf)<br><br><br>- Noah<br><br><br>P.S.&nbsp;&nbsp;It&#39;s generally better to direct these types of questions to the<br>entire list rather than just a few users from the list.
<br></blockquote></div><br>