Registering to Asterisk Behind Cisco Routers

Tonight a buddy and myself were playing with Asterisk. In order for him to be able to register to my server from outside my network we had to make some changes to my router. I am behind a Cisco 2650 Router, and we had to disable this in IOS: no ip nat service sip udp port 5060 Note, that once this is disabled, you will no longer be able to register out to other Asterisk Servers until you re-enable it with....

March 31, 2008 · 1 min · 88 words · Matt G

Asterisk 1.6.0-beta7 – Compile Chan_Mobile Fixes!

There’s a small change in Asterisk 1.6.0-beta7’s dsp.c. In order to compile chan_mobile you will have to do this. enter your asterisk-addons directory # cd asterisk-addons-1.6.0-beta2 enter the channels directory # cd channels edit the chan_mobile.c # nano chan_mobile.c Go to line 2000 and 2001 they look like this ast_dsp_set_features(pvt->dsp, DSP_FEATURE_DTMF_DETECT); ast_dsp_digitmode(pvt->dsp, DSP_DIGITMODE_DTMF | DSP_DIGITMODE_RELAXDTMF); change them to look like this ast_dsp_set_features(pvt->dsp, DSP_FEATURE_DIGIT_DETECT); ast_dsp_set_digitmode(pvt->dsp, DSP_DIGITMODE_DTMF | DSP_DIGITMODE_RELAXDTMF); now chan mobile will compile and run properly when you start asterisk....

March 29, 2008 · 1 min · 80 words · Matt G

Enable the Hidden VOIP Features of Windows Mobile 6.x for Free* VOIP Calls using Asterisk

Tonight I was playing around with my new HTC TYTN (ATT TILT) and found this blog explained there’s a hidden feature on Windows Mobile – an included VOIP client. REALLY? yup. FREE? yup. Not kidding. It’s pretty easy to install too, just follow these steps, and then you’re up and running in no time making crystal clear VOIP over WIFI calls. Note, you will need a membership to XDA Developers to gain the best of this....

March 29, 2008 · 8 min · 1563 words · Matt G

Protecting your Asterisk Installation from the RIAA (or similar) Cartel

Recently on the Asterisk Users Mailing list, there has been an interesting discussion going on about the use of hold music. This of course, stemmed from the recent release of the Nine Inch Nails “GHOSTS” album, which included a “free " version. The question was asked if the user could run this on hold music on his commercial PBX system without running into trouble from the record companies, or the RIAA....

March 10, 2008 · 4 min · 845 words · Matt G

Ubuntu Asterisk 1.4 Init Script with FreePBX and FOP

Note, If you’re looking for current information please see Free PBX Guide for the latest tutorial with updated information from what is located below. Free PBX Guide We had to edit the stock Asterisk Init script to use with Asterisk on Ubuntu. In order for it to actually stop the Flash Operator Panel when you run the stop command a few additions had to be made. Find it below for download....

March 4, 2008 · 1 min · 93 words · Matt G