A guide to VoIP and Asterisk

Size: px
Start display at page:

Download "A guide to VoIP and Asterisk"

Transcription

1 A guide to VoIP and Asterisk By Kurt Hutchinson, Tuesday, May 31, 2005 Introduction I've had a phone line free household since I first got a cell phone. Being free from the wires works fairly well, but it has some limitations. To me the cellular phone is like a personal accessory, so when I have a visitor who needs to use a phone it always feels weird to hand the cell-phone over to him. I would almost rather hand him my toothbrush. Also, when the wife and I go out, we need to leave a phone behind for the babysitter in case of emergency. Alphabet soup Before going too far, let s cover some of the terms so this article avoids turning into buzzword bingo, and unless you have some experience in the telco industry, some of these terms can be confusing. VoIP VoIP stands for Voice over IP. VoIP essentially works by taking your phone call, converting the analog signal to a digital format, and then transmitting it over a packet-switched IP network (broadband), and then finally terminating on a PSTN. The reason VoIP carries any advantage over the PSTN is that it virtually eliminates toll charges by avoiding the PSTN until you get close to your destination. POTS POTS stands for Plain old Telephone Service, nothing more nothing less. Most POTS devices (your telephone) connect to a PSTN (Public Switched Telephone Network), which is owned and operated by your local incumbent telephone company. For example let's say you call from Boston to Miami. Using a PSTN, your call would travel from your home to your local telephone exchange, then to your longdistance provider, on to the local telephone exchange in Miami, and finally to the destination. In my theoretical phone call you have involved three companies and have incurred a toll charge.

2 Let's take the same example with VoIP. The call originates on your local telephone. Your voice is converted into a digital format and compressed if necessary. It will then travel to the Internet through your home network to get to your VoIP provider. Assuming your VoIP provider has a presence in Miami, your call will travel via the IP network to a local exchange in Miami. At this point your call gets terminated to your destination's POTS device.

3 With this method, you've avoided all toll charges because you have taken your phone call and hopped over the entire PSTN until you reached your destination. VoIP also has the advantage in the range of equipment (softphones) that can be used with it. A softphone is essentially just software that utilizes your computer s hardware to emulate a phone. The advantages of the softphone are numerous. For instance, when traveling you could have your softphone loaded on your laptop and still maintains access to your VoIP service. SIP VoIP comes with an additional set of acronyms: SIP, H.323, and IAX. SIP stands for Session Initiation Protocol. SIP is a relatively simple protocol that has characteristics similar HTTP and SMTP. This makes SIP easy to troubleshoot. Also, SIP can use either TCP or UDP; most providers utilize the UDP method. With the ease of troubleshooting and the fact that it is considered a lightweight protocol, many VoIP providers utilize SIP to deliver their services. SIP is not without its issues, however. There is some inherent unfriendliness with network address translation (NAT), as many SIP devices like to show their real IP. This can sometimes result in a connection with one-way or no audio. Due to how calls and their associated data travel from point to point, audio is sometimes improperly negotiated. This happens because of the fact that the audio on a SIP phone call is not on the same stream as data that was used to initiate the call. For this reason, you ll notice that a lot of the current VoIP providers provide entire router solutions for their customers. H.323 H.323 is another protocol that some VoIP providers use. It s the heavyweight of the three protocols as it supports everything and the kitchen sink. H.323 has the ability to provide quality of service (QoS) data, and also has greater strength in video conferencing. Like SIP, H.323 suffers inside some NAT implementations for the same reasons as SIP. Also unlike SIP, H.323 is relatively difficult to troubleshoot because it is a completely binary protocol as opposed to SIP, which is more like http. IAX IAX is the newcomer to the VoIP party. IAX is the native Asterisk protocol, and as such, is not widely used. It is a UDP-based protocol, but it is more NAT-aware than either H.323 or SIP. IAX is also an order of magnitude more flexible than the other two. In some ways IAX offers the best of both SIP and H.323. It is relatively lightweight, and there will likely be an increased number of IAX devices soon (i.e., phone Adaptors, VoIP gateway appliances), due to its flexibility and NAT friendliness.

4 So, what are the alternatives? Install a regular phone line, or go with VoIP. In my search for a home phone, Vonage stood out mainly due to their aggressive marketing campaign (you may have noticed a few of their advertisements here on Ars). After doing some research, I concluded that while it s a solid product and the price is right, Vonage didn t offer the flexibility I was looking for. Also, at the time I was researching, I didn t see the ability to use the device of my choice, be it a hand-built SIP appliance or a Polycom ip500 IP Phone. I ultimately settled for the combo punch of Asterisk and Broadvoice.com. Asterisk Asterisk is an open source private branch exchange (PBX) or private telephone network that currently runs on Linux, OS X, and Cygwin/Windows. The possibilities with Asterisk are virtually limitless. It supports VoIP in all three flavors: SIP, h323, and IAX. Asterisk also supports a wide range of hardware that allows you to terminate your Asterisk PBX from a POTS line to a T1. Initially, my plan with Asterisk was to use it to terminate to a POTS line, while using an Analog phone adaptor to terminate to my house s demark and utilize soft-phones on all the PCs in my home. This plan proved to be flawed it had all the complexity of VoIP and all the cost of POTS without really giving any benefits. Getting started Some VoIP providers provide VoIP termination, which means they can take your phone call over VoIP and terminate it on the PSTN network. They also allow you to use your own hardware and devices, which made it the ideal solution for me. Broadvoice.com uses the SIP protocol for communication. Asterisk supports it, but as SIP is not the most NAT-friendly protocol, I installed Asterisk on my Gentoo Linux firewall/gateway in order to prevent any major issues related to SIP and having the server located behind the NAT. Asterisk does not require a whole lot in the way of resources, so a really heavy duty PC isn t necessary to use it. One word about the command line: there are a few GUI configuration tools available for Asterisk. However, at their current stage of development, none of them are mature enough to get the job done correctly. At this point, by using one of the GUIs available for Asterisk, you limit yourself to what the application author

5 thought was important, and none of them are very helpful when it comes to initial setup. So I pulled up my sleeves and typed emerge asterisk (actually, I didn't do that, but I could have). Instead, I went to asterisk.org and downloaded the source and built it using their make file. I also went ahead and built some sample files. Now here is the scary part about asterisk, after its built you are presented with several configuration files. I sat back dumbfounded for a second, just plain overwhelmed with what I saw in /etc/asterisk. So where do you start? After doing some cursory research, I found which has proven to be invaluable. There, I was able to find enough information to get me a kick-start on getting my Asterisk server going. (Note: when it comes to configuration, Asterisk does not differ much between Linux, Windows or OS X.) Out of the box, Asterisk is configured to provide a demonstration environment. So I started up Asterisk, by running the command asterisk vvvvc. This will start Aterisk and provide a console with debugging turned on. The only thing this Asterisk demonstration environment was missing was a softphone and an actual account on the system. So I dug in and edited the sip.conf file since I would be using a SIP softphone. With the setup I had planned, all of the phones in my house would be a different extension. So you can use your imagination when setting up asterisk. Once you work your way through all the examples inside of sip.conf, adding a new extension is pretty simple. An example: [3001] type=friend secret=******* context=stl callerid="kurt desk" <3000> disallow=all

6 allow=ulaw host=dynamic dtmfmode=rfc2833 The xten software phone came highly recommended from friends who deal with VoIP. Besides offering a full retail copy of their product, they offer a "light" version which is still fairly full featured. The xten xlite product is supported on Windows and OS X. Configuring this software was also quite simple. The configured softphone With the configuration of my softphone complete as well as the associated sip.conf file, I proceeded to give Asterisk a test. So I dialed one of the sample numbers provided 1000 and voila! I was successful. I tested the entire set of sample numbers included with the asterisk server and was satisfied with the set up. I've got Asterisk, but what about VoIP service? Moving right along, I traveled to the broadvoice.com website to get set up with some service. At the time I signed up with Broadvoice, I wasn t so sure about my

7 level of commitment, so I paid the US$9.95 BYOD (Bring Your Own Device) start-up fee and then chose their US$9.95/month unlimited in-state plan and selected my number. As soon as you complete sign-up, Broadvoice sends you an with some configuration items for your generic SIP device. Of course, once I received the instructions I turned back to voip-info.org for some guidance. After inputting the new entry for broadvoice.com into my sip.conf, I turned my attention to extensions.conf. This file isn t very straightforward. Basically it appears to work similar to regex. [localterm] exten => exten => _NXXXXXX,2,Congestion exten => _NXXXXXX,102,Busy() In the above case, I ve set a rule that tells Asterisk, that if I dial 7 digits into the telephone, to attach 314 to the numbers I ve dialed and then connect myself to broadvoice.com. I also made a few rules to ring my softphone on any inbound calls from Broadvoice.com. Everything worked as planned and inbound dialing was also equally successful. To associate your asterisk setup with other VoIP setups, you would only need to create the appropriate rules in extensions.conf and create the appropriate device in the appropriate protocol files (h323.conf sip.conf or iax.conf). Marrying your phones and your VoIP system So, the next hurdle I had to face was getting my "regular" phones on this new VoIP system. I needed some sort of analog adaptor first, and secondly I needed some way to interface this adaptor with the rest of my home. The first thing I learned is that this "analog adaptor" had a proper name: FXS. I found an inexpensive Sipura two-port FXS, and the price per port on the Sipura SPA-2000 looked good, so I ordered one. The Sipura is a rather simple-looking device. It has a power jack and RJ-45 connector on one end and two RJ-11 connectors on the other end.

8 The Sipura SPA-2000 analog adaptor Configuring the device is just as easy. By default it looks for a DHCP server, but can also configure it with the touch-tones from an analog phone. Once the device has an IP, you can complete the configuration from its web interface. The web interface for Sipura I assigned a new extension to my sip.conf and modified my dial plan in my extensions.conf. I now had the ability to use my voip system with a regular phone.

9 Now, the only thing missing is a method to interface my entire house with this new appliance. Normally, when you get a line in from your local telephone company, they bring the service to your house and terminate it at what is called a demark. In my house all my lines terminate at this juncture. My house is over 100 years old and I swear the demark here was installed by Alexander Graham Bell himself. Anyhow, I made a trip to my local hardware store and purchased some Cat-3 cable along with some RJ-11 jacks. Making sure to disconnect my demark from the connection that appeared to be going outside, I connected my new Cat03 cable from my spa-2000 to the demark. I haven t seen any issues yet. Since I travel a bit, I ve modified my firewall to allow inbound UDP connections on port 5060, the SIP port. With this open, I ve been able to connect directly to my home VoIP network and call outbound over my Broadvoice.com service. VoIP and Asterisk for the small business Setting up an Asterisk server for an office would mostly follow the same path that was used for setting up Asterisk in the home. Things that would differ would be the plan used with your VoIP provider and the equipment. Many small business maintain multiple PSTN lines. Using the ability of Asterisk to terminate to the PSTN, one option could be to use Asterisk as a IP-based PBX for this environment. You would need an analog adaptor such as the Clipcomm CG-101E to work in this environment. This adaptor, while costlier then the sipura adaptor used for terminating your telephone, allows the PSTN lines from outside to be terminated internally.

10 This setup would expand your setup to allow IP-based phones as well as analog phones. Another option for small business owners involves terminating to a VoIP provider. This option with the appropriate bandwidth would be a cost-effective method of maintaining phone service while allowing for more useable phone lines. The demark in most small offices will be a tad more complex then those found within the average home. Other than the demark, the installation will identical to the process outlined above. Asterisk will be right at home in the small business environment, with features like call attendant, hold music, and conference-calling "meet-me" rooms. For the fraction of the cost of a full-blown PBX you can have all of the features. Conclusion So now I have a vanilla VoIP phone system that is now wired to every phone in the house. What am I missing? 911! VoIP does not always play nicely with emergency 911 service. While Vonage and some of the other services have struck deals or are negotiating with the likes of Verizon, SBC, and the other Baby Bells, not all of them offer true 911 capability. Broadvoice.com doesn t have it yet, so what do you do? I have found that SBC offers e911 service only for a minimal fee per month. The flexibility of Asterisk allowed me to dig around and find a one-port FXS card (a supported modem. Unfortunately the modem that is supplied with the Macintosh is not compatible currently). So to put this all together, you need to add a dial plan that matches 911 and configure your modem.conf to identify your modem. So what other caveats are there? Well, as I said before the machine has to be reliable. I went the extra mile with my Asterisk Server, connecting it to a UPS, using RAID 1, and not messing around with the installation. Another major problem I ve run into is bandwidth and VoIP. Using any sort of P2P app causes me heartache, as I have a relatively small upstream cap with my ISP (ahem, Charter). Needless to say, I ve changed most of my usage habits. I do have one ace up my sleeve: the flexibility of using a Linux-based firewall. Using some of the QoS features built into the kernel, I ve been able to set some traffic-shaping rules and prioritize all UDP packets on my network (SIP relies on UDP). Since making my firewall changes, I ve had minimal problems with unintelligible calls. For those of you without a flexible firewall, I recommend the use of a VoIP gateway/firewall product.

11 All in all, I have been extremely impressed with my new phone setup. I've since added a toll-free number from broadvoice.com and have created some rules on my asterisk server that allows me to call in with my cellphone and then dial out anywhere. The possibilities are endless with Asterisk. Asterisk Pros: Completely customizable Once configured, minimal fuss Cons: Initial setup is tedious Broadvoice.com Pros: Allows you to "bring your own device" Competitive pricing Excellent support Cons: No e911

Asterisk. http://www.asterisk.org. http://www.kismetwireless.net/presentations.shtml. Michael Kershaw <dragorn@kismetwireless.net>

Asterisk. http://www.asterisk.org. http://www.kismetwireless.net/presentations.shtml. Michael Kershaw <dragorn@kismetwireless.net> Asterisk * http://www.asterisk.org What Asterisk Can Do Voice Over IP (VOIP) Physical phone switch (PBX) Software phone switch Answering machine Call trees (Press 1 to...) VOIP Voice Over IP: Make telephone

More information

Guide to Voice Over IP (VoIP)

Guide to Voice Over IP (VoIP) Guide to Voice Over IP (VoIP) Introduction Voice over Internet Protocol, also called VoIP, IP Telephony, or Internet Telephony, represents the latest in phone system technology. VoIP is a phone service

More information

Micronet VoIP Solution with Asterisk

Micronet VoIP Solution with Asterisk Application Note Micronet VoIP Solution with Asterisk 1. Introduction This is the document for the applications between Micronet units and Asterisk IP PBX. It will show you some basic configurations in

More information

VOIP with Asterisk & Perl

VOIP with Asterisk & Perl VOIP with Asterisk & Perl By: Mike Frager 11/2011 The Elements of PSTN - Public Switched Telephone Network, the pre-internet phone system: land-lines & cell-phones. DID - Direct

More information

Asterisk: The Open Source PBX Solution Adam Olson Systems and network administrators typically deal with

Asterisk: The Open Source PBX Solution Adam Olson Systems and network administrators typically deal with 1 1 1 0 1 0 1 0 1 Asterisk: The Open Source PBX Solution Adam Olson Systems and network administrators typically deal with data and functionality such as email communications, Web and database applications,

More information

Compatible devices. Analog Telephone Adaptors. Linksys PAP2. Cisco ATA 186/188. Sipura SPA-2000. Sipura SPA-2002. Sipura SPA-3000

Compatible devices. Analog Telephone Adaptors. Linksys PAP2. Cisco ATA 186/188. Sipura SPA-2000. Sipura SPA-2002. Sipura SPA-3000 Toll Free Number: (866)-686-4236 Fax: (416)-981-3313 Sales: Analog Telephone Adaptors Linksys PAP2 Cisco ATA 186/188 Sipura SPA-2000 Sipura SPA-2002 Compatible devices The Linksys Phone Adapter enables

More information

EarthLink Business SIP Trunking. Asterisk 11.2 IP PBX Customer Configuration Guide

EarthLink Business SIP Trunking. Asterisk 11.2 IP PBX Customer Configuration Guide EarthLink Business SIP Trunking Asterisk 11.2 IP PBX Customer Configuration Guide Publication History First Release: Version 1.0 August 30, 2011 CHANGE HISTORY Version Date Change Details Changed By 1.0

More information

PBX Setup Basic setup procedures

PBX Setup Basic setup procedures Basic setup procedures 1) Configure the SpoTel PBX & Voip phones to a router/switch 2) Setup Extensions on SpoTel PBX -> Testing: Call between Extension phones 3) Setup Trunks on Spotel PBX 4) Setup Outbound

More information

Fig. Setting up of a VoIP call. Fig. Experimental setup

Fig. Setting up of a VoIP call. Fig. Experimental setup Volume 5, Issue 6, June 2015 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Asterisk VoIP Private

More information

Mediatrix 3000 with Asterisk June 22, 2011

Mediatrix 3000 with Asterisk June 22, 2011 Mediatrix 3000 with Asterisk June 22, 2011 Proprietary 2011 Media5 Corporation Table of Contents Introduction... 3 Network Topology... 3 Equipment Detail... 3 Configuration of the Fax Extension... 4 Configuration

More information

VOIP, Linux, and Asterisk Making Beautiful Voice Together

VOIP, Linux, and Asterisk Making Beautiful Voice Together VOIP, Linux, and Asterisk Making Beautiful Voice Together Daryll Strauss President Digital Ordnance SCALE 3x Feb 13th, 2005 POTS World Ma Bell Telephone Company Wire Central Office Public Switched Telephone

More information

VoIP 101: An introduction to the basics of Voice over Internet Protocol. How to guide

VoIP 101: An introduction to the basics of Voice over Internet Protocol. How to guide VoIP 101: An introduction to the basics of Voice over Internet Protocol How to guide Introduction You may have heard of VoIP that it s the future of telephone service, and that you can save a lot of money

More information

Converged Voice Service Summary

Converged Voice Service Summary SERVICE DELIVERY OVERVIEW Zayo Enterprise Networks (ZEN) offers a managed converged voice and Internet solution for businesses owning and managing a premise-based KTS or PBX system. Voice and Internet

More information

VoIP Solutions Guide Everything You Need to Know

VoIP Solutions Guide Everything You Need to Know VoIP Solutions Guide Everything You Need to Know Simplify, Save, Scale VoIP: The Next Generation Phone Service Ready to Adopt VoIP? 10 Things You Need to Know 1. What are my phone system options? Simplify,

More information

Telephony with an Asterisk phone system

Telephony with an Asterisk phone system Telephony with an phone system TALKATIVE An old computer is all you need to build your own do-it-yourself personal phone server. BY MARTIN LOSCHWITZ Technology that supports the easy exchange of audio

More information

Network Connection Considerations for Microsoft Response Point 1.0 Service Pack 2

Network Connection Considerations for Microsoft Response Point 1.0 Service Pack 2 Network Connection Considerations for Microsoft Response Point 1.0 Service Pack 2 Updated: February 2009 Microsoft Response Point is a small-business phone solution that is designed to be easy to use and

More information

ATA: An Analogue Telephone Adapter is used to connect a standard telephone to a high-speed modem to facilitate VoIP and/or calls over the Internet.

ATA: An Analogue Telephone Adapter is used to connect a standard telephone to a high-speed modem to facilitate VoIP and/or calls over the Internet. KEY VOIP TERMS 1 ACD: Automatic Call Distribution is a system used to determine how incoming calls are routed. When the ACD system receives an incoming call it follows user-defined specifications as to

More information

Implementation of a Fully Functional VoIP Server Inside of a Campus Network

Implementation of a Fully Functional VoIP Server Inside of a Campus Network Implementation of a Fully Functional VoIP Server Inside of a Campus Network Prepared for Ronny L. Bull Lecturer, Computer Science Department SUNY Institute of Technology By Matthew Lapinski Student, NCS416

More information

Ryan Brown October 9, 2004 The Burgh Live, LLC. Voice over IP using Asterisk (*)

Ryan Brown October 9, 2004 The Burgh Live, LLC. Voice over IP using Asterisk (*) Ryan Brown October 9, 2004 The Burgh Live, LLC Voice over IP using Asterisk (*) What is Asterisk? * (http://www.asterisk.org www.asterisk.org) ) is an Open Source Private Branch Exchange (PBX) and Interactive

More information

VoIP Buying Guide for Small Business

VoIP Buying Guide for Small Business VoIP Buying Guide for Small Business By Brad Chacos, PCWorld Aug 14, 2012 6:00 PM The cord-cutting movement isn't limited to consumer cable and Netflix. As Voice over Internet Protocol communication matures

More information

IP-PBX Quick Start Guide

IP-PBX Quick Start Guide IP-PBX Quick Start Guide Introduce... 3 Configure and set up the IP-PBX... 4 How to change the IP address... 7 Set up extensions and make internal calls... 8 How to make calls via the FXO port... 10 How

More information

Broadband Phone Gateway BPG510 Technical Users Guide

Broadband Phone Gateway BPG510 Technical Users Guide Broadband Phone Gateway BPG510 Technical Users Guide (Firmware version 0.14.1 and later) Revision 1.0 2006, 8x8 Inc. Table of Contents About your Broadband Phone Gateway (BPG510)... 4 Opening the BPG510's

More information

NCS 416 Paul Brennan Mohammed Haque IAX2 Trunking

NCS 416 Paul Brennan Mohammed Haque IAX2 Trunking NCS 416 Paul Brennan Mohammed Haque IAX2 Trunking Abstract This project explores setting up a server to interface between the PSTN and multiple Asterisk PBX systems. The server interfaces with the PSTN

More information

Hosted Voice. Best Practice Recommendations for VoIP Deployments

Hosted Voice. Best Practice Recommendations for VoIP Deployments Hosted Voice Best Practice Recommendations for VoIP Deployments Thank you for choosing EarthLink! EarthLinks best in class Hosted Voice phone service allows you to deploy phones anywhere with a Broadband

More information

VOIP THE ULTIMATE GUIDE VERSION 1.0. 9/23/2014 onevoiceinc.com

VOIP THE ULTIMATE GUIDE VERSION 1.0. 9/23/2014 onevoiceinc.com VOIP THE ULTIMATE GUIDE VERSION 1.0 9/23/2014 onevoiceinc.com WHAT S IN THIS GUIDE? WHAT IS VOIP REQUIREMENTS OF A VOIP SYSTEM IMPLEMENTING A VOIP SYSTEM METHODS OF VOIP BENEFITS OF VOIP PROBLEMS OF VOIP

More information

VoIP from A to Z. NAEO 2009 Conference Cancun, Mexico

VoIP from A to Z. NAEO 2009 Conference Cancun, Mexico VoIP from A to Z NAEO 2009 Conference Cancun, Mexico VoIP glossary What is VoIP? Bandwidth Signaling Codecs Quality of Service (QoS) What is VoIP? Voice over Internet Protocol (VoIP) is the method of transmitting

More information

Introduction to VOIP. Stephen Okay Abdus Salam Int l Center for Theoretical Physics Trieste, Italy, February 21, 2007

Introduction to VOIP. Stephen Okay Abdus Salam Int l Center for Theoretical Physics Trieste, Italy, February 21, 2007 Introduction to VOIP Stephen Okay Abdus Salam Int l Center for Theoretical Physics Trieste, Italy, February 21, 2007 Intro to VOIP Classic Telephony Data Networks(Review) VOIP What it is Protocols Hardware

More information

10 QUESTIONS TO ASK BEFORE YOU BUY PHONE SERVICE FOR YOUR BUSINESS SHARE THIS DOCUMENT 1

10 QUESTIONS TO ASK BEFORE YOU BUY PHONE SERVICE FOR YOUR BUSINESS SHARE THIS DOCUMENT 1 10 QUESTIONS TO ASK BEFORE YOU BUY PHONE SERVICE FOR YOUR BUSINESS SHARE THIS DOCUMENT 1 TELEPHONE SERVICE TELEPHONE SERVICE Telephone service continues to be a critical factor to business success. What

More information

Packetized Telephony Networks

Packetized Telephony Networks Packetized Telephony Networks Benefits of Packet Telephony Networks Traditionally, the potential savings on long-distance costs was the driving force behind the migration to converged voice and data networks.

More information

Internet Basics Thursday, November 20, 2008

Internet Basics Thursday, November 20, 2008 Internet Basics Thursday, November 20, 2008 Welcome to Internet Basics, the first section of the Basic Networking course of the online Allworx Reseller technical training. This course provides general

More information

ICE 008 IP PBX. 1. Product Information. 1.1. New Mini PBX. 1.2. Features 1.2.1. System Features

ICE 008 IP PBX. 1. Product Information. 1.1. New Mini PBX. 1.2. Features 1.2.1. System Features 1. Product Information 1.1. New Mini PBX ICE 008 IP PBX ICE008 is new generation office communication equipment that delivers traditional PBX (private branch exchange) functions and more with advanced

More information

HOSTED VOICE Bring Your Own Bandwidth & Remote Worker. Install and Best Practices Guide

HOSTED VOICE Bring Your Own Bandwidth & Remote Worker. Install and Best Practices Guide HOSTED VOICE Bring Your Own Bandwidth & Remote Worker Install and Best Practices Guide 2 Thank you for choosing EarthLink! EarthLinks' best in class Hosted Voice phone service allows you to deploy phones

More information

Guideline for SIP Trunk Setup

Guideline for SIP Trunk Setup Guideline for SIP Trunk Setup with ZONETEL Table of contents Sample sip.conf (it applies to asterisk 1.4.x)...3 Sample elastix setup... 3 Ports required... 4 Caller ID...4 FAQ... 5 After i dial out, the

More information

VoIP and POTS Integration with Asterisk

VoIP and POTS Integration with Asterisk VoIP and POTS Integration with Asterisk by John Todd 01/22/2004 VoIP and POTS Integration with Asterisk In my last article on Asterisk, I demonstrated how to build a very basic two-line PBX (Private Branch

More information

Voice Over Internet Protocol (VoIP) Issues and Challenges William McCrum mccrum.william@ic.gc.ca

Voice Over Internet Protocol (VoIP) Issues and Challenges William McCrum mccrum.william@ic.gc.ca Voice Over Internet Protocol (VoIP) Issues and Challenges William McCrum Phone: +1 613-990-4493 Fax: Email: +1 613-957-8845 mccrum.william@ic.gc.ca Content Network Evolution and drivers VoIP Realizations

More information

VOIP (Voice Over Internet Protocol) Hacking-Fake Calling

VOIP (Voice Over Internet Protocol) Hacking-Fake Calling VOIP (Voice Over Internet Protocol) Hacking-Fake Calling Author: Avinash Singh Co-Author: Akash Shukla Avinash Singh Corporate Trainer (Virscent Technologies Pvt. Ltd.) Appin Certified Ethical Hacker (ACEH)

More information

MINIMUM NETWORK REQUIREMENTS 1. REQUIREMENTS SUMMARY... 1

MINIMUM NETWORK REQUIREMENTS 1. REQUIREMENTS SUMMARY... 1 Table of Contents 1. REQUIREMENTS SUMMARY... 1 2. REQUIREMENTS DETAIL... 2 2.1 DHCP SERVER... 2 2.2 DNS SERVER... 2 2.3 FIREWALLS... 3 2.4 NETWORK ADDRESS TRANSLATION... 4 2.5 APPLICATION LAYER GATEWAY...

More information

Linksys Voice over IP Products Guide: SIP CPE for Massive Scale Deployment

Linksys Voice over IP Products Guide: SIP CPE for Massive Scale Deployment Linksys Voice over IP Products Guide: SIP CPE for Massive Scale Deployment Corporate Headquarters Linksys 121 Theory Drive Irvine, CA 92617 USA http://www.linksys.com Tel: 949 823-1200 800 546-5797) Fax:

More information

Buyer s Guide. 10 questions to ask. Essential information about your Voice over IP options

Buyer s Guide. 10 questions to ask. Essential information about your Voice over IP options VOIP Buyer s Guide 10 questions to ask Essential information about your Voice over IP options VoIP is the Future. There s a lot of buzz about Voice over IP these days. People are talking about how it can

More information

Configuration of Applied VoIP Sip Trunks with the Toshiba CIX40, 100, 200 and 670

Configuration of Applied VoIP Sip Trunks with the Toshiba CIX40, 100, 200 and 670 Configuration of Applied VoIP Sip Trunks with the Toshiba CIX40, 100, 200 and 670 Businesses Save Money with Toshiba s New SIP Trunking Feature Unlike gateway based solutions, Toshiba s MIPU/ GIPU8 card

More information

IP Telephony with Asterisk. Sunday A. Folayan

IP Telephony with Asterisk. Sunday A. Folayan IP Telephony with Asterisk Sunday A. Folayan There lived the PSTN. A few years ago, everyone struggled to convert data (IP) into sound, and move it over the Public Switched Telephone Network (PSTN) infrastructure

More information

Video Conferencing and Firewalls

Video Conferencing and Firewalls Video Conferencing and Firewalls Out with the Old, in with the New Video Conferencing is leaving ISDN for a better transport medium, IP. It s been happening for a long time in Europe but now ISDN is well

More information

Asterisk SIP Trunk Settings - Vestalink

Asterisk SIP Trunk Settings - Vestalink Asterisk SIP Trunk Settings - Vestalink Vestalink is a new SIP trunk provider that has sprung up as a replacement for Google Voice trunking within Asterisk servers. They offer a very attractive pricing

More information

VoIP Workshop PacNOG3

VoIP Workshop PacNOG3 VoIP Workshop PacNOG3 Rarotonga, Cook Islands June 2007 Labs 1-4, Asterisk Lab 5, INOC-DBA Lab 6-7, Cisco Voice Gateways Lab 8, CODECS Page 1 of 13 Lab Summary Server logins are as you have set up in previous

More information

Integration of GSM Module with PC Mother Board (GSM Trunking) WHITE/Technical PAPER. Author: Srinivasa Rao Bommana (srinivasrao.bommana@wipro.

Integration of GSM Module with PC Mother Board (GSM Trunking) WHITE/Technical PAPER. Author: Srinivasa Rao Bommana (srinivasrao.bommana@wipro. (GSM Trunking) WHITE/Technical PAPER Author: Srinivasa Rao Bommana (srinivasrao.bommana@wipro.com) Table of Contents 1. ABSTRACT... 3 2. INTRODUCTION... 3 3. PROPOSED SYSTEM... 4 4. SOLUTION DESCRIPTION...

More information

VOICE OVER IP AND NETWORK CONVERGENCE

VOICE OVER IP AND NETWORK CONVERGENCE POZNAN UNIVE RSITY OF TE CHNOLOGY ACADE MIC JOURNALS No 80 Electrical Engineering 2014 Assaid O. SHAROUN* VOICE OVER IP AND NETWORK CONVERGENCE As the IP network was primarily designed to carry data, it

More information

StarLeaf Network Guide

StarLeaf Network Guide Network Guide Contents Introduction------------------------------------------------------------------------------------------------------------------------- 3 Registration to the ------------------------------------------------------------------------------------------

More information

Is Skype Safe for Judges?

Is Skype Safe for Judges? Is Skype Safe for Judges? By Martin Felsky, PhD, JD, for the Judges Technology Advisory Committee, Canadian Judicial Council, 1 Version 2.0 July 6, 2010 In this article I will try to help judges understand

More information

VoIP Glossary. Client (Softphone client): The software installed in the userâ s computer to make calls over the Internet.

VoIP Glossary. Client (Softphone client): The software installed in the userâ s computer to make calls over the Internet. VoIP Glossary Analog audio signals: Analog audio signals are used to transmit voice data over telephone lines. This is done by varying or modulating the frequency of sound waves to accurately reflect the

More information

Subtitle. VoIP Migration Strategy. Keys to a Successful Planning and Transition. VoIP Migration Strategy Compare Business Products 2014 1

Subtitle. VoIP Migration Strategy. Keys to a Successful Planning and Transition. VoIP Migration Strategy Compare Business Products 2014 1 Subtitle VoIP Migration Strategy Keys to a Successful Planning and Transition VoIP Migration Strategy Compare Business Products 2014 1 Contents Introduction... 3 VoIP Defined... 3 Why Are Businesses Opting

More information

1 ABSTRACT 3 2 CORAL IP INFRASTRUCTURE 4

1 ABSTRACT 3 2 CORAL IP INFRASTRUCTURE 4 Coral IP Solutions TABLE OF CONTENTS 1 ABSTRACT 3 2 CORAL IP INFRASTRUCTURE 4 2.1 UGW 4 2.2 IPG 4 2.3 FLEXSET IP 5 2.4 FLEXIP SOFTPHONE 6 2.5 TELEPORT FXS/FXO GATEWAYS 7 2.6 CORAL SENTINEL 7 3 CORAL IP

More information

Setup the Asterisk server with the Internet Gate

Setup the Asterisk server with the Internet Gate 1 (9) Setup the Asterisk server with the Internet Gate This guide presents ways to setup the Asterisk server together with the Intertex Internet Gate. Below two different setups are described. Also, please

More information

Integrate VoIP with your existing network

Integrate VoIP with your existing network Integrate VoIP with your existing network As organisations increasingly recognise and require the benefits voice over Internet Protocol (VoIP) offers, they stop asking "Why?" and start asking "How?". A

More information

IPChitChat VoIP Service User Manual

IPChitChat VoIP Service User Manual IPChitChat VoIP Service User Manual Document Owner: Netcloud Ltd Prepared By: Michael Date of Issue: 11 th June 2011 Version: V0.5 Copyright 2009 Netcloud Ltd Page 1 of 31 Netcloud are UK specialists in

More information

An unofficial guide to setting up Vonage/VoIP on B4RN and notes on integrating with a home phone circuit. Introduction

An unofficial guide to setting up Vonage/VoIP on B4RN and notes on integrating with a home phone circuit. Introduction An unofficial guide to setting up Vonage/VoIP on B4RN and notes on integrating with a home phone circuit!! Introduction!!!!!!!! p1!! -1- Vonage - Easy step by step!!!!! p1-2!! -2- Optional setup with DECT

More information

Configuration Notes 290

Configuration Notes 290 Configuring Mediatrix 41xx FXS Gateway with the Asterisk IP PBX System June 22, 2011 Proprietary 2011 Media5 Corporation Table of Contents Introduction... 3 About Mediatrix 41xx Series FXS Gateways...

More information

Integrating Asterisk FreePBX with Lync Server 2010

Integrating Asterisk FreePBX with Lync Server 2010 1 Integrating Asterisk FreePBX with Lync Server 2010 Author: Baaskar R 1 www.baaskarcharles.com 2 Integrating Asterisk FreePBX with Lync Server 2010... 1 AsteriskNow package Source... 3 Installing AsteriskNow...

More information

Selecting the Right SIP Phone for Your IP PBX By Gary Audin May 5, 2014

Selecting the Right SIP Phone for Your IP PBX By Gary Audin May 5, 2014 Selecting the Right SIP Phone for Your IP PBX By Gary Audin May 5, 2014 There are many Session Initiation Protocol (SIP) phones on the market manufactured by IP PBX vendors and third parties. Selecting

More information

Basic configuration of the GXW410x with Asterisk

Basic configuration of the GXW410x with Asterisk Basic configuration of the GXW410x with Asterisk Please note that due to the customizable nature of both the GXW410x and Asterisk and the vast deployment possibilities, these instructions should be taken

More information

AT&T IP Flex Reach/ IP Toll Free Configuration Guide IC 3.0 with Interaction SIP Proxy

AT&T IP Flex Reach/ IP Toll Free Configuration Guide IC 3.0 with Interaction SIP Proxy INTERACTIVE INTELLIGENCE AT&T IP Flex Reach/ IP Toll Free Configuration Guide IC 3.0 with Interaction SIP Proxy Version 1.7 9/2/2009 TABLE OF CONTENTS 1 AT&T... 5 1.1 Introduction... 5 1.2 Product Descriptions...

More information

Voice over IP Basics for IT Technicians

Voice over IP Basics for IT Technicians Voice over IP Basics for IT Technicians White Paper Executive summary The IP phone is coming or has arrived on desk near you. The IP phone is not a PC, but does have a number of hardware and software elements

More information

H.323 / SIP VoIP Gateway VIP GW. Quick Installation Guide

H.323 / SIP VoIP Gateway VIP GW. Quick Installation Guide H.323 / SIP VoIP Gateway VIP GW Quick Installation Guide Overview This quick installation guide describes the objectives; organization and basic installation of the PLANET VIP-281/VIP-480/VIP-880/VIP-1680/VIP-2480

More information

Atcom MP01 and Elastix Server

Atcom MP01 and Elastix Server Atcom MP01 and Elastix Server Setup Guide http://www.elastix.org 1.0 Setup Diagram This is a setup diagram for a mesh network of Atcom MP01 configuration. When everything is configured we ll be able to

More information

QUICK START GUIDE RELEASE 7

QUICK START GUIDE RELEASE 7 QUICK START GUIDE RELEASE 7 VOICENT AUTOREMINDER TM VOICENT BROADCASTBYPHONE TM VOICENT AGENTDIALER TM VOICENT FLEX PBX TM VOICENT IVR STUDIO TM VOICENT TELEPHONY CRM TM VOICENT GATEWAY TM TABLE OF CONTENT

More information

Contents. Specialty Answering Service. All rights reserved.

Contents. Specialty Answering Service. All rights reserved. Contents 1 Introduction... 2 2 PBX... 3 3 IP PBX... 4 3.1 How It Works... 4 3.2 Functions of IP PBX... 5 3.3 Benefits of IP PBX... 5 4 Evolution of IP PBX... 6 4.1 Fuelling Factors... 6 4.1.1 Demands from

More information

Quick Provisioning Guide for Third-Party PBX

Quick Provisioning Guide for Third-Party PBX Quick Provisioning Guide for Third-Party PBX Table of Contents Quick Provisioning Guide Table of Contents Chapter 1: Overview...1 Chapter 2: Asterisk Configuration...2 Creating a Phone Extension on Asterisk...2

More information

Overview of Asterisk (*) Jeff Gunther

Overview of Asterisk (*) Jeff Gunther Overview of Asterisk (*) Jeff Gunther Agenda Background Introduction to Asterisk and review the core components of it s architecture. Exploration of Asterisk s telephony and call features. Review some

More information

Running Asterisk in a Corporate Environment: a Beginner s Tale

Running Asterisk in a Corporate Environment: a Beginner s Tale Running Asterisk in a Corporate Environment: a Beginner s Tale Stephen Uhler Sun Microsystems Laboratories 2005, Sun Microsystems Stephen Uhler Astricon 2005 Sun Labs (1/19) How I Got into the Phone Business

More information

Prestige 2302R Series

Prestige 2302R Series VoIP Station Gateway Quick Start Guide Version 3.60 6/2005 Overview This Quick Start Guide covers the Prestige (P2302R) and (P2302RL) models. It explains how to use your Prestige to make phone calls through

More information

Copyright 2012 Fortinet, Inc. All rights reserved. Fortinet, FortiGate, and FortiGuard, are registered trademarks of Fortinet, Inc.

Copyright 2012 Fortinet, Inc. All rights reserved. Fortinet, FortiGate, and FortiGuard, are registered trademarks of Fortinet, Inc. Copyright 2012 Fortinet, Inc. All rights reserved. Fortinet, FortiGate, and FortiGuard, are registered trademarks of Fortinet, Inc., and other Fortinet names herein may also be trademarks of Fortinet.

More information

Copyright 2012 Fortinet, Inc. All rights reserved. Reproduction, adaptation or translation without prior written permission is prohibited, except as

Copyright 2012 Fortinet, Inc. All rights reserved. Reproduction, adaptation or translation without prior written permission is prohibited, except as Copyright 2012 Fortinet, Inc. All rights reserved. Reproduction, adaptation or translation without prior written permission is prohibited, except as allowed under the copyright laws. Fortinet trademarks,

More information

ZyXEL V100 Support Notes. ZyXEL V100. (V100 Softphone 1 Runtime License) Support Notes

ZyXEL V100 Support Notes. ZyXEL V100. (V100 Softphone 1 Runtime License) Support Notes ZyXEL V100 (V100 Softphone 1 Runtime License) Support Notes Version 1.00 April 2009 1 Contents Overview 1. Overview of V100 Softphone...3 2. Setting up the V100 Softphone.....4 3. V100 Basic Phone Usage.....7

More information

ACD: Average Call Duration is the average duration of the calls routed bya a VoIP provider. It is a quality parameter given by the VoIP providers.

ACD: Average Call Duration is the average duration of the calls routed bya a VoIP provider. It is a quality parameter given by the VoIP providers. ACD: Average Call Duration is the average duration of the calls routed bya a VoIP provider. It is a quality parameter given by the VoIP providers. API: An application programming interface (API) is a source

More information

Lab Testing Summary Report

Lab Testing Summary Report Lab Testing Summary Report February 2007 Report 070228 Product Category: SMB IP-PBX Vendor Tested: Cisco Systems Product Tested: Cisco Unified Communications 500 Series Key findings and conclusions: Complete

More information

Glossary of Telco Terms

Glossary of Telco Terms Glossary of Telco Terms Access Generally refers to the connection between your business and the public phone network, or between your business and another dedicated location. A large portion of your business

More information

Configuring a Mediatrix 500 / 600 Enterprise SIP Trunk SBC June 28, 2011

Configuring a Mediatrix 500 / 600 Enterprise SIP Trunk SBC June 28, 2011 Configuring a Mediatrix 500 / 600 Enterprise SIP Trunk SBC June 28, 2011 Proprietary 2011 Media5 Corporation Table of Contents Introduction... 3 Solution Overview... 3 Network Topology... 4 Network Configuration...

More information

Connecting with Vonage

Connecting with Vonage Connecting with Vonage Vonage (http://www.vonage.com/) offers telephone service using the VoIP (Voice over Internet Protocol) standard SIP (Session Initiation Protocol). The service allow users making

More information

Configuring the Cisco SPA8800 IP Telephony Gateway in an Asterisk Environment

Configuring the Cisco SPA8800 IP Telephony Gateway in an Asterisk Environment Application Note May 2009 Configuring the Cisco SPA8800 IP Telephony Gateway in an Asterisk Environment 2009 Cisco Systems, Inc. All rights reserved. Page 1 of 20 Contents Introduction 3 Audience 3 Scope

More information

V o I P. VoIP What it can do for you. John Ferlito johnf@inodes.org

V o I P. VoIP What it can do for you. John Ferlito johnf@inodes.org V o I P VoIP What it can do for you John Ferlito johnf@inodes.org A p o l o g y LCA Payment gateway http://justblamepia.com Pay Now!! We need volunteers! B a c k g r o u n d Using VoIP for 5 years Basic

More information

The 21 st Century Business Telephone System. VOIP PBX Telephone System

The 21 st Century Business Telephone System. VOIP PBX Telephone System The 21 st Century Business Telephone System VOIP PBX Telephone System Develop with open standard PLATON is an all-in-one IP-PBX solution for your business operation. It s a PBX system which connect all

More information

Optimize your network for voice.

Optimize your network for voice. RingCentral Office Optimize your network for voice. To contact RingCentral, please visit www.ringcentral.com RingCentral or call 1-800-574-5290. Office 1 Complete Business Phone System Design your network

More information

UIP1868P User Interface Guide

UIP1868P User Interface Guide UIP1868P User Interface Guide (Firmware version 0.13.4 and later) V1.1 Monday, July 8, 2005 Table of Contents Opening the UIP1868P's Configuration Utility... 3 Connecting to Your Broadband Modem... 4 Setting

More information

Asterisk Business Edition TM Digium Partner Certification

Asterisk Business Edition TM Digium Partner Certification Asterisk Business Edition TM Digium Partner Certification Cyberdata VoIPSpeaker Interoperability Report April 2007 Digium, Inc. 150 West Park Loop, Suite 100 Huntsville, AL 35806 Main Number: 256.428.6000

More information

Asterisk Voice Exchange: An Alternative to Conventional EPBX

Asterisk Voice Exchange: An Alternative to Conventional EPBX 2008 International Conference on Computer and Electrical Engineering Asterisk Voice Exchange: An Alternative to Conventional EPBX Mohammed A Qadeer Department of Computer Engineering, Aligarh Muslim University,

More information

IPitomy 1000 User Guide

IPitomy 1000 User Guide IPitomy 1000 User Guide Table of Contents Introduction... 1 About the IPitomy 1000... 1 Benefits of VoIP Technology... 1 How This Guide Works... 2 Web-based System Setup... 2 The Installation Worksheet...

More information

Toll-bypass Long Distance Calling... 1. What Is VOIP?... 2. Immediate Cost Savings... 3. Applications... 3. Business Quality Voice...

Toll-bypass Long Distance Calling... 1. What Is VOIP?... 2. Immediate Cost Savings... 3. Applications... 3. Business Quality Voice... telephony internet access remote access modems Content Toll-bypass Long Distance Calling... 1 What Is VOIP?... 2 That Was Then... This is Now... Immediate Cost Savings... 3 Applications... 3 Office-to-office

More information

Voice over IP (VoIP) Basics for IT Technicians

Voice over IP (VoIP) Basics for IT Technicians Voice over IP (VoIP) Basics for IT Technicians VoIP brings a new environment to the network technician that requires expanded knowledge and tools to deploy and troubleshoot IP phones. This paper provides

More information

Internet Telephony Terminology

Internet Telephony Terminology Internet Telephony Terminology Understanding the business phone system world can be a daunting task to a lay person who just wants a system that serves his or her business needs. The purpose of this paper

More information

LAN Planning Guide LAST UPDATED: 1 May 2013. LAN Planning Guide

LAN Planning Guide LAST UPDATED: 1 May 2013. LAN Planning Guide LAN Planning Guide XO Hosted PBX Document version: 1.05 Issue date: 1 May 2013 Table of Contents Table of Contents... i About this Document... 1 Introduction: Components of XO Hosted PBX... 1 LAN Fundamentals...

More information

FAQ: Introduction to VoIP for Small Businesses/SOHO

FAQ: Introduction to VoIP for Small Businesses/SOHO FAQ: Introduction to VoIP for Small Businesses/SOHO Speed Dial Your Company into VoIP and Save If your company is ready to lower its monthly phone costs, while also doing business more efficiently, switching

More information

AVer EVC. Quick Installation Guide. Package Contents. 8. Mini Din 8 pin MIC Cable. 1. Main System. 9. HDMI Cable. 2. Camera. 10.

AVer EVC. Quick Installation Guide. Package Contents. 8. Mini Din 8 pin MIC Cable. 1. Main System. 9. HDMI Cable. 2. Camera. 10. AVer EVC Quick Installation Guide Package Contents 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2013 AVer Information Inc. All Rights Reserved. 1. Main System 2. Camera 3. Microphone 4. Remote Control 5. Power

More information

SIP Trunking, ITSP Checklist

SIP Trunking, ITSP Checklist SIP Trunking, ITSP Checklist Note: This is not an official document of any kind so please do your own homework and research and also note that Vocale Ltd (owner of the SIP School) does not accept any responsibility

More information

nexvortex SIP Trunking Implementation & Planning Guide V1.5

nexvortex SIP Trunking Implementation & Planning Guide V1.5 nexvortex SIP Trunking Implementation & Planning Guide V1.5 510 S PRING S TREET H ERNDON VA 20170 +1 855.639.8888 Introduction Welcome to nexvortex! This document is intended for nexvortex Customers and

More information

With 360 Cloud VoIP, your company will benefit from more advanced features:

With 360 Cloud VoIP, your company will benefit from more advanced features: Voice over IP (VoIP) has emerged as the new leader in cost-effective standards based communications. 360 Cloud VoIP enables customers have the benefits of an Enterprise PBX for a fraction of the cost of

More information

SSC 1.5+ - Getting rid of the biggest drag on VoIP!

SSC 1.5+ - Getting rid of the biggest drag on VoIP! SSC 1.5+ - Getting rid of the biggest drag on VoIP! Internet Cloud Internet access for web pages is always allowed! But firewalls often block strictly VoIP calls! Typical scenario Without SSC (Simple SIP

More information

WorkTime UC Mobile Admin Guide

WorkTime UC Mobile Admin Guide WorkTime UC Mobile Admin Guide Release: 20.1.1 Android 20.1.2 ios Document Version 1.0 Table of Contents 1 About XO Hosted PBX UC Mobile Client...1 2 Use Cases...2 2.1 Placing Outbound Calls... 2 2.2 Receiving

More information

Practical Guide. How to setup VoIP Infrastructure using AsteriskNOW

Practical Guide. How to setup VoIP Infrastructure using AsteriskNOW Practical Guide How to setup VoIP Infrastructure using AsteriskNOW Table of Contents 1. Background...1 2. The VoIP scenarios...2 3. Before getting started...3 3.1 Training Kits...3 3.2 Software requirements...3

More information

Quick Installation Guide. Overview. PLANET VIP-156/VIP-156PE/VIP-158 Quick Installation Guide

Quick Installation Guide. Overview. PLANET VIP-156/VIP-156PE/VIP-158 Quick Installation Guide Quick Installation Guide Overview This quick installation guide describes the objectives; organization and basic installation of the PLANET VIP-156/VIP-156PE/VIP-158 VoIP Phone Adapter, and explains how

More information

Table of Contents. Confidential and Proprietary

Table of Contents. Confidential and Proprietary Table of Contents About Toshiba Strata CIX and Broadvox SIP Trunking... 1 Requirements... 2 Purpose, Scope and Audience... 3 What is SIP Trunking?... 4 Business Advantages of SIP Trunking... 4 Technical

More information

Device SIP Trunking Administrator Manual

Device SIP Trunking Administrator Manual Table of Contents Device SIP Trunking Administrator Manual Version 20090401 Table of Contents... 1 Your SIP Trunking Service... 2 Terminology and Definitions... 2 PBX, IP-PBX or Key System... 2 Multi-port

More information