Archive October 2009

Interconnect Rate debate: Cheeky move by SA’s biggest operators

icasa Interconnect Rate debate: Cheeky move by SAs biggest operators

On Friday, SA’s two biggest GSM operators, Vodacom and MTN, undermined ICASA’s attempts to manage the lowering of interconnect rates by coming to an arrangement themselves following the break down in talks with ICASA. MTN and Vodacom made the decision to reduce the blended interconnection rate by 19% to 78 cents immediately. However they have not clarified what the ‘blended rate’ is and the reduction is likely to be higher on the off-peak rate than the current R1.25 peak connection rate.

While on the surface seeming like a noble gesture, in reality they may just be trying to take the heat off to avoid being forced into a larger rate cut such as the target 60c rate proposed by pariliament. ICASA are obviously not happy with being undermined like this.

“I am not surprised they decided to go ahead with this announcement as they are trying to recoup the lost PR ground,” says Paris Mashile of ICASA. “But they have not explained what the ‘blended rate’ is. Ask any lay person and they will tell you the rate they want to see reduced is that 125 cents per minute peak rate.”

Unfortunately for the consumer the lowering of the interconnect rate does not imply an immediate reduction in the retail price but at least the ball is finally rolling!

The saga continues… catch up on the prequels here

Astricon 2009 Updates: AsteriskExchange, AsteriskForge, Asterisk.org

astricon 2009

The Astericon conference took place last week in the US with some interesting announcements from Digium. Digium announced the AsteriskExchange application store, an overhauled Asterisk.org community site and AsteriskForge for software developers. The three new offerings help formalise and unify the Asterisk community and confirms Asterisk as a disruptive force in the IP PBX market.

Over the past year, Digium has gradually grown its channel partner program worldwide. But for some VARs and customers, it’s often difficult to find Asterisk-compatible applications, hardware and related services. Digium is aiming to address that challenge with three key moves:

1. AsteriskExchange: A forthcoming app store of sorts, which will apparently allow partners and customers to more easily find Asterisk-compatible applications and services.
2. AsteriskForge: A central location for developers to share and track new Asterisk-related software components and projects.
3. Asterisk.org: Digium overhauled the community site with new content and new points of access to help partners, customers and developers more easily find key information about Asterisk.

Below is a clip of Mark Spencer thoughts of each of these new offerings

snom first with TR-069 standard for VoIP management

snom logo snom first with TR 069 standard for VoIP management

snom technology AG has become the first company to enable the auto configuration of VoIP terminals using the International Broadband Forum’s TR-069 standard.

The new standard allows various devices to contact auto-configuration servers in order to automatically obtain the latest updates and security settings.

It allows organisations using snom phones to customise an unlimited number of extensions for free, and reduces the cost of centrally managing and automatically configuring large VoIP telephone systems.

Oliver Wittig, Vice President of Sales EMEA for snom technology AG said: “As a trusted manufacturer of secure IP phones we were keen to simplify the management of very large phone systems, and use the TR-069 standard to enable automatic configuration.”

snom recently announced a partnership with Jazinga Inc, which allows snom’s VoIP phones to be used with Jazinga’s MGA120 IP PBX appliance.

The partnership makes it easier for SMBs to deploy VoIP systems and benefit from reduced telephony costs.

Interconnect rate debate – winners & losers

loser 11250699604 Interconnect rate debate   winners & losers
The interconnect rate debate continues with government claiming rates will come down by end of the year. But could governments recent vigor to resolve this problem have less to do with the interests of the consumer and more to do with concerns about governments own coffers?

In a recent article on myBroadband it was highlighted that Telkom is a loser in the current state of affairs as they pay out more to other operators than they receive due to the higher mobile interconnect rate versus the fixed line interconnect rate. So obviously with governments interests in Telkom, and recent sale of Vodacom shares, they may be concerned with who is losing out most here.

A slightly cynical view but definately supported by the facts. Below are the net gains and losses of South Africans three largest telecoms operators

 Interconnect rate debate   winners & losers

 Interconnect rate debate   winners & losers

The Polycom VVX-1500 Business Media Phone

vvx1500 large The Polycom VVX 1500 Business Media Phone
Lets get to the point… this is one seriously expensive deskphone…. we talking big mula with a current retail price of over R10000! I guess its not fair to compare it with other other IP deskphones because as the name suggests its a full media phone incorporating video, large high resolution 7” TFT LCD, presence and high definition voice quality.

This vid below might give you an indication of who the market is for this product… yup, the slightly balding Amercian executive with the ‘corner’ office and ergonomic chair. Looks like a great phone with awesome features but hardly a market for such a product in SA and not just because of the price point, bandwidth constraints and no support from local ITSP’s are other limiting factors.

Asterisk tip: P2P SIP URI Dialing

250px Asterisk logo Asterisk tip: P2P SIP URI Dialing

There are thousands of people that operate their own Asterisk based PBX systems, yet they do not enable any method to allow for p2p sip URI dialing. These sip “targets” are very easy to enable and allow you to dial anyone that has also enabled the function. Dialing with SIP URI completely avoids toll calling and forces your Asterisk server to create P2P sip connections when you dial someone’s SIP URI. It makes a less complex phone call without a system administrator configuring a peer and best of all: It gets rid of phone numbers and your telco!
How does it work?

By creating a SRV record in DNS for your domain you can help remote PBX systems establish P2P calls for a specific extensions. For example, when someone calls me, my URI is resolved to my PBX (sip.blyon.com). When the call comes into my Asterisk box, blyon is setup as a extension, and that extension is connected to a phone or a context. As a result, if someone uses something like Xten to call blyon@blyon.com, I get a normal ring and phone call. When I use my Cisco 7960 phone and dial someone’s SIP URI it completes like a normal phone call.
Why is this cool?

This is great because it takes away any central control for locating people. The ENUM standard is nice, but gives someone else control over the mapping database and it keeps an ugly old phone numbers in place. I really don’t want to dial phone numbers 10 years from now, I much rather just give someone my email address and have that map to my phone. If I need to call a business, I much rather just call pbx@somecompany.com then find some obscure phone number.

If more people adopt this as a standard, it will be the method of choice for calling people and it puts power into the end user’s hands!
Configuring the DNS SRV Record

Much like an MX record that defines mail servers for a domain, you can use an SRV record to define your PBX server for a domain. My domain blyon.com has a PBX and I simply created the SRV record for it:

In bind it would look something like this:

_iax._udp SRV 10 10 4569 iax2.blyon.com.
_sip._udp SRV 10 10 5060 sip.blyon.com.

SIP and IAX2 are also host names that point to my PBX. When someone dials my URI extension@blyon.com, their client or PBX will do a DNS lookup and see that sip is available on port 5060 at sip.blyon.com.

IAX records are not needed to make SIP URI dialing work. It is listed here to show that you can use other protocols like IAX.
Create a whitepage TXT record

To make it easy on others to locate your public extensions you should also create a protocol whitepage listing. I suggesst you map your user’s email addresses to extensions. If you do enable extensions to email addresses, you will want to include “email_addr” in your TXT record. A sample in bind looks like this:

sip.whitepage TXT “email_addr, home, echo, pbx”

“sip.whitepage” is the SIP protocol whitepages txt record, the first “email_addr” tells people that email addresses are mapped to extensions, and other non-email address extensions are listed. You should list each extension seperated by a comma.

This TXT record is not a standard RFC, it’s something I thought would be helpful for people to establish SIP communications. This is not needed to make the system work.
Configuring Asterisk to accept inbound URI calls:

Under [general] in sip.conf make sure the following is allowed:

[general]
context=in ; Context for incoming calls
allowguest=yes ; Allow or reject guest calls (default is yes, this can also be set to ‘osp’
bindport=5060 ; UDP Port to bind to (SIP standard port is 5060)
srvlookup=yes ; Enable DNS SRV lookups on outbound calls

My specific context is “in” that’s where these calls go in the extensions.conf, this is the same place that I send inbound calls from a telco or another sip peer. Under your version of the “in” context just define your username mapping:

exten => blyon,1,Macro(doDialExten,${BARRETT-VM},${BARRETT-HOME})

I have BARRETT-VM and BARRETT-HOME setup so that it rings my home office and then sends the caller to voicemail if I don’t answer. So rather than putting my extension there, I just define my username that will be picked apart by Asterisk and matched.
Configuring Asterisk to accept outbound URI calls:

When you define a sip proxy for things like a Cisco 7960 or Xten, they forward all URI calls to the proxy. Asterisk does not have any idea what to do with them so they usually 404 error and as a result you can’t make your free calls to your buddy that also set this up and operates Asterisk. There is a simple fix however, in your dial plan after you have defined your local extensions and usernames, and after your _1XXX… toll definitions simply add this uri context or the exten directly into your dialplan:

[uri]
exten => _[a-z].,1,Macro(uridial,${EXTEN}@${SIPDOMAIN})
exten => _[A-Z].,1,Macro(uridial,${EXTEN}@${SIPDOMAIN})
exten => _X.,1,Macro(uridial,${EXTEN}@${SIPDOMAIN})

Next make sure you add the macro into the extensions.conf in the area where you have your other macros defined:

[macro-uridial]
exten => s,1,NoOp(Calling remote SIP peer ${ARG1})
exten => s,n,Dial(SIP/${ARG1},120,tr)
exten => s,n,Congestion()

After local extensions are not matched and toll extensions are not matched it will then take the call and make a SIP connection and away you go! Asterisk splits everything past the “@” in the call and makes an ${EXTEN} variable and a ${SIPDOMAIN} variable. If we match an lowercase alpha character in the ${EXTEN} then we simply just dial the EXTEN@SIPDOMAIN and away you go!
Dialing with a free “Soft Phone”

Any “soft phone” that can dial sip numbers including Micscrewsoft NetMeeting can now be used to make free inbound calls to your Asterisk box. If you setup an extension called pbx that goes to your main phone tree, and someone calls pbx@yourdomain.com, they would get your main tree just as if they called via a toll system. You can also do SIP calls without any fancy DNS by specifying the full hostname to the Asterisk/PBX:

sip:exten@hostname.of.asterisk.server.com

This requires you to know the exact IP or hostname of the Asterisk PBX, rather it would be more simple to have the one time DNS record and then you can give your extension@hostname.com.

Dialing the URI with DNS is simply:

pbx@blyon.com, blyon@blyon.com, or foo@bar given there are functioning SRV records.
Use Xten without any provider or special settings to call a SIP URI

If you would like to directly dial to another URI without setting up a SIP proxy, X-Lite allows for this option. To configure the direct dialing just go to System Settings -> SIP Proxy menu:

Enabled: Choose “Yes”
Display Name: Your calling name, maybe Joe Daly’s PC
Domain/Realm: Just put your ISP or local domain
Direct Dial IP: choose “Yes”

To make a call, simply specify the URI and away you go!

This works great for dialing out, I have not spent any time to figure out how to accept P2P URI calls just via a raw softphone client, but I am sure they support it. If you know how to do this email me and I will add it to this doc.
SIP URI and Vonage

When I was a vonage user people could dial me by calling: sip:{Vonage_Phone Number 10 digits}@sip.vonage.net. This is a SIP URI but it would be much more clean if they had created SRV records for vonage.com.
Dialing URI with an ATA

This is doable but a little more complex, but for a free call, who cares? The ‘@’ is dialed as “**”, and ‘.’ and ‘:’ are dialed as a ‘*’. If you were to dial 10000000000@sip.vonage.net, it would be dialed like this: 10000000000**12*144*47*38

To keep it easy we have replaced the hostname of sip.vonage.com with the IP address 12.144.47.38 (12*144*74*38). This really sucks having to dial using an IP address, so you may want to setup an exten for old phones that don’t support URI. Someone may also be kind and give us some clue on how to dial alpha with a standard phone, I am sure you can do it somehow.

To setup an exten for the URI to make it simple (if you are using Asterisk):

; Bob
exten => 1100,1,DIAL(SIP/bob@foo.com,120,tr);

Test it!!!

I have setup an echo test so you can just call into the system and see how it goes, just dial: echo@blyon.com

You can also test your SRV and TXT records by running the dig command:

# dig _sip._udp.blyon.com SRV

;; ANSWER SECTION:
_sip._udp.blyon.com. 1200 IN SRV 10 10 5060 sip.blyon.com.

# dig sip.whitepage.blyon.com TXT

;; ANSWER SECTION:
sip.whitepage.blyon.com. 408 IN TXT “email_addr, home, echo, pbx”

You can also use my test form to see if your domain or others are configured for SIP URI.

Source: blyon.com

Enter your email to get regular Blog updates directly in your inbox: