VOIP / Asterisk / stuff

Soldato
Joined
18 Oct 2002
Posts
7,139
Location
Ironing
Ok, so I want to leap on the VOIP bandwagon fairly cheaply. I've installed Asterisk on my gentoo server, and I'm about to signup with sipgate to get my number. I have a few questions:

1) Can I get a free number through sipgate and use them for incoming, and also get free outgoing UK landline calls through a different provider? Any provider recommendations for free UK landline calls?

2) Any good softphone options for linux or windows before I get a hardware sip phone?

3) Can my cisco 837 assist in any way with QoS?

4) Am I right in thinking that a dedicated WAN IP is best? I have one spare..

5) I presume Asterisk handles voicemail for me? I also presume this can do funky things like email an mp3 of the voicemail when I get it?

6) Any general asterisk setup guides?

Thanks :)
 
Andri said:
theres a "wizard" version of asterisk build on centos which compiles itself and sets itself up.

Trixbox, it used to be called Asterisk@Home. its not too bad, it does its job. to make things easyer you can install the FreePBX web interface so you don't have to edit the config files through the cli.

you could probably set a badwidth limit and set is as priority for sip/iax if you go that route. although i'm not sure your router would be able to do that.


i'll see if i can dig out a good resource site for ya.

Thanks - I'll look at freepbx. I've compiled asterisk on gentoo last night, but havn't had a chance to play with it. Although my server now isn't letting me ssh in, so I'll have to figure out why that is....
 
dangermouse said:
growse: Your asterisk compile on gentoo, what use flags are you using? I've been trying to get it to work much in the same way as you, Asterisk with SipGate. I've run into problems with asterisk though.

[ebuild R ] net-misc/asterisk-1.2.13 USE="mysql ssl -alsa -bri -curl -debug -doc -genericjb -gtk -h323 -hardened -lowmem -mmx -nosamples -odbc -osp -postgres -pri -speex -sqlite -ukcid -zaptel" 0 kB
 
I'm essentially tearing my hair out over this one. I've set up an account with sipgate, and asterisk refuses to connect to it. I've forwarded an entire ip address to the box that asterisk is running on, turned off the firewall, and still nothing. What the hell is going on?

Code:
Mar 15 16:20:35 NOTICE[8295] cdr.c: CDR simple logging enabled.
Mar 15 16:20:35 NOTICE[8309] chan_sip.c:    -- Re-registration for  [email protected]
Mar 15 16:20:55 NOTICE[8309] chan_sip.c:    -- Registration for '[email protected]' timed out, trying again (Attempt #1)
Mar 15 16:21:15 NOTICE[8309] chan_sip.c:    -- Registration for '[email protected]' timed out, trying again (Attempt #2)
Mar 15 16:21:35 NOTICE[8309] chan_sip.c:    -- Registration for '[email protected]' timed out, trying again (Attempt #3)
Mar 15 16:21:55 NOTICE[8309] chan_sip.c:    -- Registration for '[email protected]' timed out, trying again (Attempt #4)

My sip.conf looks like this:

Code:
[general]
context=default
bindport=5060
bindaddr=0.0.0.0
srvlookup=yes

register => 8101384:[email protected]/8101384
externip = 88.96.138.221 
localnet=192.168.0.0/255.255.255.0

[SIPGATENUM]
type=peer
username=8101384
fromuser=8101384
secret=BIGFATPWD
context=default
host=sipgate.co.uk
fromdomain=sipgate.co.uk
insecure=very
caninvite=no
canreinvite=no
nat=yes
disallow=all
allow=ulaw
allow=alaw

[sipgate_de_in]
type=peer
fromdomain=sipgate.de
host=sipgate.co.uk
context=incoming
diallow=all
allow=ulaw
allow=alaw
nat=yes
 
Back
Top Bottom