I have a network that connects 2 households and would like to setup a simple voip server so that I can call between the houses.

It needs to be for ubnutu , I have used the free 3CX system and while it works brilliantly it doesnt support linux and I can get a windows box.

The users will never need to call external lines. They will only make 'calls' between laptops/pc.

Can someone please make a recommendation and maybe even a tutorial that I can follow

link|improve this question

40% accept rate
feedback

3 Answers

up vote 3 down vote accepted

You can use asterisk with only SIP or IAX2 protocolos.

apt-get install asterisk vim /etc/asterisk/sip.conf <--- add users here vim /etc/asterisk/extensions.conf <--add dialplan here

so basic setup: add user to sip.conf with field

[user1]
.....
context = mydialpan
.....
[user2]
.....
context = mydialplan
.....

Then edit extensions.conf like:

[mydialplan]
exten => 1001,Dial(SIP/user1)
exten => 1002,Dial(SIP/user2)

then connect with some softphone like xlite/ekiga to asterisk and dial 1001 or 1002 to connect with correct user.

here is some useful link http://hubpages.com/hub/How-to-Install-Asterisk-on-Ubuntu-Setting-up-Asterisk-PBX

link|improve this answer
Thanks this is perfect , its exactly what i wanted minus the bulk , i would give this answer more rep if i could. – RC1140 Jun 12 '10 at 9:00
feedback

With the latest Ubuntu desktop and Empathy, you should be able to do chat/voice/video in the local network without any server, by creating a "People nearby" account.

Alternatively, I suggest creating a Jabber/XMPP server, and look for a cross-platform (or not, depending on your needs) client that has Voice support.

Here is the official documentation of Ubuntu Server to install jabberd2.

https://help.ubuntu.com/10.04/serverguide/C/jabberd2-server.html

link|improve this answer
feedback

Why not use Skype or another application of that type?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.