Hi friends, Thank you to all for your response and cooperation to me. I have a doubt. I have two asterisk servers and contains two public IPs. One * server is in Florida (USA) and second * server is in Delhi (India). 1) Is it possbile to connect these two * servers? 2) The person who is registered with Florida * server is able to make call to another person, who is registered with Delhi * server (like Intercom)? Looking forward to your response. Thank you. With ward regards, Chandra. --------------------------------- Stay in the know. Pulse on the new Yahoo.com. Check it out. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20060829/aa7df6c6/attachment.htm
Lacy Moore - Aspendora
2006-Aug-29 09:53 UTC
[asterisk-users] Connecting two asterisk servers
Please search the wiki first. Most of your questions you post can easily be found by doing a search. Put some effort into finding the answers to your questions first and on your own, and then if you still have questions, I'm sure everyone would be more than willing to help. On 8/29/06, Crazy Boy <crazymoonboy@yahoo.com> wrote:> > Hi friends, > > Thank you to all for your response and cooperation to me. I have a doubt. > > I have two asterisk servers and contains two public IPs. One * server is > in Florida (USA) and second * server is in Delhi (India). > > 1) Is it possbile to connect these two * servers? > 2) The person who is registered with Florida * server is able to make call > to another person, who is registered with Delhi * server (like Intercom)? > > Looking forward to your response. Thank you. > > With ward regards, > Chandra. > > > ------------------------------ > Stay in the know. Pulse on the new Yahoo.com <http://yahoo.com/>. Check it > out. <http://us.rd.yahoo.com/evt=42974/*http:/www.yahoo.com/preview> > > > _______________________________________________ > --Bandwidth and Colocation provided by Easynews.com <http://easynews.com/>-- > > asterisk-users mailing list > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users > > >-- Lacy Moore Aspendora, Inc. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20060829/d7bcd96c/attachment.htm
In short, yes... The wiki (http://www.voip-info.org) has documentation on how to configure your servers, how to configure the dialplan, etc....I don't mean to single you out mate, but has anyone else noticed an increase in the number of questions being asked that could have been answered simply by visiting the wiki, reading the sample docs in the package, or even doing a Google search? I seem to recall the general rule of this list is that you should have already at least tried to find the answer. Here's a few links to get you started: The Asterisk Wiki <http://www.voip-info.org/wiki-Asterisk> , Asterisk <http://www.asteriskguru.com/tutorials/> Guru, Getting <http://www.automated.it/guidetoasterisk.htm> Started, GNU Inter <http://asterisk.gnuinter.net/> , AGI Guide <http://home.cogeco.ca/%7Ecamstuff/agi.html> , O'reilly Onlamp Article - by John Todd <http://www.onlamp.com/pub/a/onlamp/2003/07/03/asterisk.html> , One Unified <http://www.oneunified.net/support/asterisk/index.html> . It took me more time to cut and past those links than it did to find them, they were on the Asterisk.org support page. _____ From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Crazy Boy Sent: Tuesday, August 29, 2006 11:16 AM To: asterisk-users@lists.digium.com Subject: [asterisk-users] Connecting two asterisk servers Hi friends, Thank you to all for your response and cooperation to me. I have a doubt. I have two asterisk servers and contains two public IPs. One * server is in Florida (USA) and second * server is in Delhi (India). 1) Is it possbile to connect these two * servers? 2) The person who is registered with Florida * server is able to make call to another person, who is registered with Delhi * server (like Intercom)? Looking forward to your response. Thank you. With ward regards, Chandra. _____ Stay in the know. Pulse on the new Yahoo.com. Check it <http://us.rd.yahoo.com/evt=42974/*http://www.yahoo.com/preview> out. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20060829/1e570001/attachment.htm
Crazy Boy a ?crit :> Hi friends, > > Thank you to all for your response and cooperation to me. I have a doubt. > > I have two asterisk servers and contains two public IPs. One * server > is in Florida (USA) and second * server is in Delhi (India). > > 1) Is it possbile to connect these two * servers?Yes. Just have something like: [serverA] type=peer host=serverA.IP.Address In ServerB's sip.conf and [serverB] type=peer host=serverB.IP.Address In ServerA's sip.conf> 2) The person who is registered with Florida * server is able to make > call to another person, who is registered with Delhi * server (like > Intercom)?Of course. Say user "joe" is registered with serverB, then within serverA's dialplan, you can use: exten => 123456,1,Dial(SIP/joe@serverB) ; joe@serverB has extension '123456' Within serverB's dialplan, you'd simply use: exten => 123456,1,Dial(SIP/joe) ; joe@serverB has extension '123456' Cheers, Jean-Michel.