Asterisk
Step 1 - Download and install
Download and install the Asterisk PBX on your computer.
Step 2 - Sample Asterisk congiguation
In order to successfully establish a communication path between your system and voiceglobe, you need to configure the sip.conf and extensions.conf files of your asterisk platform. By adding the following code to the aforementioned files respectively you will be able to receive/send calls from/to voiceglobe.
For the specific configuration: The extension [100] is a local extension. Asterisk will forward there all the incoming calls from voiceglobe. The prefix “0” is used for calling voiceglobe numbers from the specific extension. (For example, if you would like to call 802... from your local phone "100" you should deal 0802...). XXXXXX: Voiceglobe Account ID YYYYYY: Voiceglobe Acount Password
Step 3 - Configure the sip.conf file
[general] register => XXXXXX:YYYYYY@sip1.voiceglobe.net:5060/XXXXXX context=ext_local context=voiceglobe_incoming useragent=Name_of_your_UserAgent
[voiceglobe] type=friend secret=YYYYYY srvlookup=yes qualify=yes insecure=very username=XXXXXX host=sip1.voiceglobe.net context=voiceglobe_incoming nat=yes canreinvite=no disallow=all allow=ulaw allow=alaw
[100] type=friend username=100 secret=100 qualify=yes host=dynamic disallow=all allow=ulaw allow=alaw context=ext_local
Step 4 - Configure the extensions.conf file
[voiceglobe_incoming] exten => _X.,1,Dial(SIP/100,30)
[ext_local] exten => _0.,1,Dial(SIP/${EXTEN:1}@voiceglobe,30)
|