<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-5134619096013223730</id><updated>2011-04-21T13:56:40.807-07:00</updated><title type='text'>ASTERISK</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://asterisk4arab.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://asterisk4arab.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Atef Digital</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>25</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-5134619096013223730.post-2352598398640627483</id><published>2009-02-10T00:12:00.000-08:00</published><updated>2009-02-10T00:22:22.359-08:00</updated><title type='text'>Asterisk: A Bare-Bones VoIP Example  p:4</title><content type='html'>&lt;span id="intelliTxt"&gt;&lt;h4&gt;Testing: Here We Go!&lt;/h4&gt;  &lt;p&gt;The user on extension 2000 should be able to dial 2001 and the other line will ring. As you watch the console, you should see a flurry of messages showing up as you dial, and after you hang up. If you go immediately to the "Busy" message, it's probably because your phone client hasn't registered with the Asterisk server -- make sure it's sending server registry statements, as these are the "heartbeats" that Asterisk uses to ensure that a remote client is available for inbound calls. If you have your registry interval set to more than 15 seconds, you'll need to wait at least that long for the SIP client to register (once Asterisk is started) before calls can be sent to that phone.&lt;br /&gt;&lt;br /&gt;Try leaving voicemail for extension 2000. From extension 2000, dial 2999 and you should hear a prompt for the password -- you won't need to type in the extension for which you are trying to retrieve mail, as it is automatically entered with the addition of the &lt;code&gt;${CALLERIDNUM}&lt;/code&gt; variable as an argument to the &lt;code&gt;VoiceMailMain&lt;/code&gt; line -- this types in the correct extension automatically. Extension 2999 has a password of 4321, so type in "4321#" -- the # sign is equivalent to "enter." Then follow the prompts to retrieve the mail. You can also change the greetings on the line -- experiment a bit with the different options within voicemail.&lt;/p&gt;   &lt;p&gt;Hopefully this all worked for you. Often, getting the first implementation up and running is a process of trial-and-error, and the added complexity of the SIP clients can make this an exhaustive reduction in variables. Feel free to ask the asterisk-users mailing list any specific questions you might have after reviewing the archives -- both resources are very useful to the beginner. &lt;/p&gt;     &lt;h4&gt;Debugging&lt;/h4&gt;  &lt;p&gt;SIP is a bit tricky to start out with. I would strongly suggest that your Asterisk server and both phones are on the same network segment when you begin your testing; having one or more devices processed through a firewall or NAT will cause you quite a few ulcers, and will almost certainly not work during your testing.&lt;/p&gt; &lt;!-- sidebar begins --&gt; &lt;!-- don't move sidebars --&gt; &lt;!-- sidebar ends --&gt;    &lt;p&gt;Make sure your SIP phones are sending correct &lt;code&gt;REGISTER&lt;/code&gt; statements to the server -- without valid registration, the Asterisk process will not know where to send a call destined for that extension. Try &lt;code&gt;sip show peers&lt;/code&gt; to see if the IP address of your phone shows up and is valid.&lt;/p&gt;   &lt;p&gt;If SIP registration seems to be the problem, you can try removing the &lt;code&gt;secret=&lt;/code&gt; lines and specifying an IP address of the phone in the &lt;code&gt;host=&lt;/code&gt; line. This will lock the phones onto specific addresses and remove any registration issues you might be having.&lt;/p&gt;   &lt;p&gt;I have found the &lt;code&gt;tethereal&lt;/code&gt; tool (part of the &lt;code&gt;ethereal&lt;/code&gt; network sniffer toolset) to be immensely valuable. &lt;code&gt;tethereal -n ip and port 5060&lt;/code&gt; will debug SIP packets in a human-readable form, and should show you what is happening on the wire when testing.&lt;/p&gt;  &lt;p&gt;Another important debugging technique is to run asterisk in "full debug mode." This is done with &lt;code&gt;asterisk -vvvvvgcd&lt;/code&gt; and puts all possible debugging information on your console. Also make sure that your SIP client is using the G.711 codec (either &lt;code&gt;alaw&lt;/code&gt; or &lt;code&gt;ulaw&lt;/code&gt;) as that is a codec that is known to work with Asterisk.&lt;/p&gt;  &lt;h4&gt;Additional Features&lt;/h4&gt; To list Asterisk's full feature set would take quite a while, as it is just as much a toolkit as a set of applications. Some things I've implemented for myself and other customers include: &lt;ul&gt;&lt;li&gt;&lt;b&gt;Telemarketer block:&lt;/b&gt; Forces callers without caller ID to enter valid info, or hangs up.&lt;/li&gt;&lt;li&gt;&lt;b&gt;Zapateller:&lt;/b&gt; Used with telemarketer block -- plays three-tone "disconnected number" for callers with no caller ID, which auto-removes from many phone spam networks.&lt;/li&gt;&lt;li&gt;&lt;b&gt;Dual ring:&lt;/b&gt; Phones at the office and at home ring at the same time, during certain hours.&lt;/li&gt;&lt;li&gt;&lt;b&gt;PBX long distance gateway:&lt;/b&gt; PRI interface to Asterisk box, then low-priced ITSP to get better LD rates using existing PBX.&lt;/li&gt;&lt;li&gt;&lt;b&gt;IVR interface:&lt;/b&gt; Use as an inbound call center pre-processor.&lt;/li&gt;&lt;li&gt;&lt;b&gt;International toll avoidance:&lt;/b&gt; One in the HQ in each continent allows for centrex-style dialing over the Internet.&lt;/li&gt;&lt;li&gt;&lt;b&gt;Voicemail:&lt;/b&gt; Stand-alone voicemail server interfaces with existing PBX -- low-cost solution to otherwise expensive upgrade.&lt;/li&gt;&lt;li&gt;&lt;b&gt;Monitoring system:&lt;/b&gt; Intelligent dial-out platform that can verbalize network problems and take actions based on IVR.&lt;/li&gt;&lt;li&gt;&lt;b&gt;NAT traversal:&lt;/b&gt; Asterisk can work with SIP clients behind NATs with no additional software (see &lt;code&gt;nat=1&lt;/code&gt; in &lt;i&gt;sip.conf&lt;/i&gt;).&lt;/li&gt;&lt;/ul&gt;   &lt;p&gt;&lt;a href="http://www.digium.com/"&gt;Digium&lt;/a&gt; makes a low-cost ($100) analog FXO (Foreign Exchange Office -- meaning, it accepts a wire that has dialtone on it) PCI card that can be used to connect your home or office phone line into Asterisk. Add to this a Cisco ATA-186 (~$150) for two lines of FXS (handsets) use, and you can have a mini-PBX in your house with extremely powerful features for about $250, plus the cost of a reasonably decent old PC that you may have laying around. I've had acceptable experiences running with a 400mhz PIII with two lines. I've found that putting one of these systems together with an FXO card is a fast way to convince others that OSS VoIP platforms are ready to be examined as a serious possibility for the office environment, since one can attach the machine directly to the existing PBX (assuming you can get an analog line off of your PBX system).&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;More complex Asterisk configurations and some other SIP-related examples can be found on &lt;a href="http://www.loligo.com/asterisk/"&gt;my web site&lt;/a&gt;.&lt;/p&gt;  &lt;h3&gt;Other Projects and Resources&lt;/h3&gt;  &lt;h4&gt;Servers/Software&lt;/h4&gt;  &lt;p&gt;There are several SIP implementations that are OSS, but they are primarily what are known as "call proxies" instead of more full-featured PBX applications. This means that they function only to connect two endpoints together, and are basically just large, fast, directory servers. Examples of SIP Proxies are &lt;a href="http://www.iptel.org/ser/"&gt;ser&lt;/a&gt; and &lt;a href="http://www.vovida.org/vocal/"&gt;Vocal&lt;/a&gt;.  There are also  other open source PBX projects like &lt;a href="http://www.gnu.org/software/bayonne/bayonne.html"&gt;Bayonne&lt;/a&gt; and &lt;a href="http://www.voicetronix.com/open-source.htm#openpbx"&gt;OpenPBX&lt;/a&gt;, which have slightly different feature sets than Asterisk.&lt;/p&gt;   &lt;h4&gt;Long Distance/Free Services&lt;/h4&gt;  &lt;p&gt;There are also now retail vendors of SIP long distance service, which are called Internet Telephony Service Providers (ITSPs.) Vendors such as &lt;a href="http://www.iconnecthere.com/"&gt;iconnecthere&lt;/a&gt; (formerly Deltathree) have rates in the $.01-per-minute category anywhere in the U.S., and I expect that some searching will find similar vendors in Europe and Asia. There are also no-cost solutions like &lt;a href="http://fwd.pulver.com/"&gt;Free World Dialup&lt;/a&gt; that are limited to calling users via IP only, but you can mix/match dialplans so you can reach all destinations from the same phone, if that phone is routed through Asterisk. There are other SIP long distance providers, but to my knowledge all of the others (Vonage, Packet8) require you to use their equipment, thus making use with Asterisk impossible.&lt;/p&gt;   &lt;h4&gt;SIP Hardware&lt;/h4&gt;&lt;br /&gt;&lt;table border="1" cellpadding="3" cellspacing="0"&gt; &lt;tbody&gt;&lt;tr&gt;     &lt;td&gt;&lt;a href="http://www.cisco.com/"&gt;Cisco ATA-186&lt;/a&gt;&lt;/td&gt;     &lt;td&gt;(About $150 new)&lt;/td&gt;     &lt;td&gt;Supplies two FXS ports (standard phones plug into FXS ports)&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt;     &lt;td&gt;&lt;a href="http://www.cisco.com/"&gt;Cisco 7960/7940&lt;/a&gt;&lt;/td&gt;     &lt;td&gt;(About $300 used)&lt;/td&gt;     &lt;td&gt;Deskset with XML-programmable six-line LCD&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt;     &lt;td&gt;&lt;a href="http://www.digium.com/"&gt;Digium&lt;/a&gt;&lt;/td&gt;     &lt;td&gt;($100-$500 new)&lt;/td&gt;     &lt;td&gt;Variety of PCI cards for direct telephony connections to Asterisk servers&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt;     &lt;td&gt;&lt;a href="http://www.pingtel.com/"&gt;Pingtel&lt;/a&gt;&lt;/td&gt;     &lt;td&gt;(About $550 new)&lt;/td&gt;     &lt;td&gt;Deskset with LCD&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt;     &lt;td&gt;&lt;a href="http://www.snom.de/"&gt;SNOM 200&lt;/a&gt;&lt;/td&gt;     &lt;td&gt;(About $290 new)&lt;/td&gt;     &lt;td&gt;Deskset with LCD&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt;     &lt;td&gt;&lt;a href="http://www.grandstream.com/"&gt;Grandstream&lt;/a&gt;&lt;/td&gt;     &lt;td&gt;(About $85 new)&lt;/td&gt;     &lt;td&gt;Deskset with small LCD&lt;/td&gt; &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;h4&gt;SIP Software/Hardware&lt;/h4&gt;  &lt;p&gt;&lt;a href="http://www.pulver.com/products/sip/"&gt;SIP Product List&lt;/a&gt;: Lists of hardphones, softphones, and other servers&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.iptel.org/info/products/"&gt;IPTel.org&lt;/a&gt;: Lists of hardphones, softphones, and other servers&lt;/p&gt;  &lt;p&gt;&lt;i&gt; &lt;a href="http://www.onlamp.com/pub/au/1241"&gt;John Todd&lt;/a&gt;  is the CTO of &lt;a href="http://www.talkplus.com/"&gt;TalkPlus, Inc.&lt;/a&gt; which is a next-generation mobile identity management and enhanced call services provider.  &lt;/i&gt;&lt;/p&gt;  &lt;hr size="1" noshade="noshade"&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5134619096013223730-2352598398640627483?l=asterisk4arab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://asterisk4arab.blogspot.com/feeds/2352598398640627483/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5134619096013223730&amp;postID=2352598398640627483' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/2352598398640627483'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/2352598398640627483'/><link rel='alternate' type='text/html' href='http://asterisk4arab.blogspot.com/2009/02/asterisk-bare-bones-voip-example-p4.html' title='Asterisk: A Bare-Bones VoIP Example  p:4'/><author><name>Atef Digital</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5134619096013223730.post-2329169367681958326</id><published>2009-02-09T21:50:00.000-08:00</published><updated>2009-02-09T22:07:31.006-08:00</updated><title type='text'>Asterisk: A Bare-Bones VoIP Example  p:3</title><content type='html'>Configuration&lt;br /&gt;&lt;br /&gt;The following configs are going to put an extremely basic configuration in place, and we will pretty much going to throw out the sample files that came with Asterisk and pare down things to an absolute minimum. If you need to find out more information about additional options, the original demonstration files are located in &lt;i&gt;/usr/src/asterisk/configs&lt;/i&gt; for your reference. Leave everything in place that Asterisk's "make samples" puts in for you, except for the three files below; those are the only three that need to be touched for our sample to work.&lt;br /&gt;&lt;br /&gt;After configuration, you will have the ability to dial between your two phones, and voicemail will end up stored in the system for each extension, and will also be sent as an email attachment to the email address specified in the mailbox configurations. &lt;br /&gt;Since only SIP channels are being used, we only need to modify three files for our mini-PBX two-line system: &lt;i&gt;sip.conf&lt;/i&gt; (this defines the SIP peers, which are the software or hardware SIP phones), &lt;i&gt;extensions.conf&lt;/i&gt; (this is where the dialplans are kept -- the meat of the system), and  &lt;i&gt;voicemail.conf&lt;/i&gt; (where we define the voice mailboxes for each user).&lt;br /&gt;&lt;br /&gt;Perform a &lt;code&gt;cd /etc/asterisk&lt;/code&gt;, move the existing &lt;i&gt;sip.conf&lt;/i&gt;, &lt;i&gt;extensions.conf&lt;/i&gt;, and &lt;i&gt;voicemail.conf&lt;/i&gt; somewhere safe, and create new files with the following contents: &lt;br /&gt;&lt;br /&gt;&lt;i&gt;sip.conf&lt;/i&gt;  &lt;br /&gt;&lt;pre&gt;&lt;code&gt;&lt;br /&gt;[general]&lt;br /&gt;&lt;br /&gt;port = 5060           ; Port to bind to (SIP is 5060)&lt;br /&gt;bindaddr = 0.0.0.0    ; Address to bind to (all addresses on machine)&lt;br /&gt;allow=all             ; Allow all codecs&lt;br /&gt;context = bogon-calls ; Send SIP callers that we don't know about here&lt;br /&gt;&lt;br /&gt;[2000]&lt;br /&gt;&lt;br /&gt;type=friend           ; This device takes and makes calls&lt;br /&gt;username=2000         ; Username on device&lt;br /&gt;secret=9overthruster7 ; Password for device&lt;br /&gt;host=dynamic          ; This host is not on the same IP addr every time&lt;br /&gt;context=from-sip      ; Inbound calls from this host go here&lt;br /&gt;mailbox=100           ; Activate the message waiting light if this&lt;br /&gt;                   ; voicemailbox has messages in it&lt;br /&gt;&lt;br /&gt;[2001]                ; Duplicate of 2000, except with different auth data&lt;br /&gt;&lt;br /&gt;type=friend&lt;br /&gt;username=2001&lt;br /&gt;secret=11bbanzai9&lt;br /&gt;host=dynamic&lt;br /&gt;context=from-sip&lt;br /&gt;mailbox=101&lt;/code&gt;&lt;/pre&gt; &lt;a name="config"&gt;  &lt;/a&gt;&lt;h4&gt;&lt;a name="config"&gt;&lt;i&gt;extensions.conf&lt;/i&gt;&lt;/a&gt;&lt;/h4&gt;  &lt;pre&gt;&lt;code&gt;&lt;a name="config"&gt;[general]&lt;br /&gt;&lt;br /&gt;static=yes       ; These two lines prevent the command-line interface&lt;br /&gt;writeprotect=yes ; from overwriting the config file. Leave them here.&lt;br /&gt;&lt;br /&gt;[bogon-calls]&lt;br /&gt;&lt;br /&gt;;&lt;br /&gt;; Take unknown callers that may have found&lt;br /&gt;; our system, and send them to a re-order tone.&lt;br /&gt;; The string "_." matches any dialed sequence, so all&lt;br /&gt;; calls will result in the Congestion tone application&lt;br /&gt;; being called. They'll get bored and hang up eventually.&lt;br /&gt;;&lt;br /&gt;&lt;br /&gt;exten =&gt; _.,1,Congestion&lt;br /&gt;&lt;br /&gt;[from-sip]&lt;br /&gt;&lt;br /&gt;;&lt;br /&gt;; If the number dialed by the calling party was "2000", then&lt;br /&gt;; Dial the user "2000" via the SIP channel driver. Let the number&lt;br /&gt;; ring for 20 seconds, and if no answer, proceed to priority 2.&lt;br /&gt;; If the number gives a "busy" result, then jump to priority 102&lt;br /&gt;;&lt;br /&gt;&lt;br /&gt;exten =&gt; 2000,1,Dial(SIP/2000,20)&lt;br /&gt;&lt;br /&gt;;&lt;br /&gt;; Priority 2 send the caller to voicemail, and gives the "u"navailable&lt;br /&gt;; message for user 2000, as recorded previously. The only way out&lt;br /&gt;; of voicemail in this instance is to hang up, so we have reached&lt;br /&gt;; the end of our priority list.&lt;br /&gt;;&lt;br /&gt;&lt;br /&gt;exten =&gt; 2000,2,Voicemail(u2000)&lt;br /&gt;&lt;br /&gt;;&lt;br /&gt;; If the Dialed number in priority 1 above results in&lt;br /&gt;; a "busy" code, then Dial will jump to 101 + (current priority)&lt;br /&gt;; which in our case will be 101+1=102. This +101 jump is built&lt;br /&gt;; into Asterisk and does not need to be defined.&lt;br /&gt;;&lt;br /&gt;&lt;br /&gt;exten =&gt; 2000,102,Voicemail(b2000)&lt;br /&gt;exten =&gt; 2000,103,Hangup&lt;br /&gt;&lt;br /&gt;;&lt;br /&gt;; Now, what if the number dialed was "2001"?&lt;br /&gt;;&lt;br /&gt;&lt;br /&gt;exten =&gt; 2001,1,Dial(SIP/2001,20)&lt;br /&gt;exten =&gt; 2001,2,Voicemail(u2001)&lt;br /&gt;exten =&gt; 2001,102,Voicemail(b2001)&lt;br /&gt;exten =&gt; 2001,103,Hangup&lt;br /&gt;&lt;br /&gt;;&lt;br /&gt;; Define a way so that users can dial a number to reach&lt;br /&gt;; voicemail. Call the VoicemailMain application with the&lt;br /&gt;; number of the caller already passed as a variable, so&lt;br /&gt;; all the user needs to do is type in the password.&lt;br /&gt;;&lt;br /&gt;&lt;br /&gt;exten =&gt; 2999,1,VoicemailMain(${CALLERIDNUM})&lt;/a&gt;&lt;/code&gt;&lt;/pre&gt; &lt;a name="config"&gt;   &lt;/a&gt;&lt;p&gt;&lt;a name="config"&gt;Now, we're almost ready to go. Actually, we've completed everything that is required for two phones to call each other, but we still need to assemble the configuration files that will know how to save messages in case a line is busy or "unavailable." Note that Asterisk treats phones that are turned off or are otherwise not registered as "Busy" and not "Unavailable" -- the status of "Unavailable" usually refers to a situation where nobody has answered the phone in the given number of seconds.&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;a name="config"&gt;Before we can use our voicemail system, we need to create empty voicemail boxes for each user. This is done using the script located at &lt;i&gt;/usr/src/asterisk/addmailbox&lt;/i&gt;, which is simply a small shell script that creates a directory and puts some default greetings into place. Run &lt;code&gt;addmailbox&lt;/code&gt; twice, specifying "2000" and "2001" as the mailboxes that you wish to create.&lt;/a&gt;&lt;/p&gt;   &lt;h4&gt;&lt;a name="config"&gt;&lt;i&gt;voicemail.conf&lt;/i&gt;&lt;/a&gt;&lt;/h4&gt;  &lt;pre&gt;&lt;code&gt;&lt;a name="config"&gt;[general]&lt;br /&gt;&lt;br /&gt;format=wav&lt;br /&gt;&lt;br /&gt;[local]&lt;br /&gt;&lt;br /&gt;;&lt;br /&gt;; format: password, name, email address for attached voicemail msgs&lt;br /&gt;;&lt;br /&gt;&lt;br /&gt;2000 =&gt; 4321,John Whorfin,jwhorfin@planet10.com&lt;br /&gt;2001 =&gt; 8383,Sidney Zweibel,newjersey@banzaiinstitute.com&lt;/a&gt;&lt;/code&gt;&lt;/pre&gt;   &lt;p class="secondary"&gt; &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5134619096013223730-2329169367681958326?l=asterisk4arab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://asterisk4arab.blogspot.com/feeds/2329169367681958326/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5134619096013223730&amp;postID=2329169367681958326' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/2329169367681958326'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/2329169367681958326'/><link rel='alternate' type='text/html' href='http://asterisk4arab.blogspot.com/2009/02/asterisk-bare-bones-voip-example-p3.html' title='Asterisk: A Bare-Bones VoIP Example  p:3'/><author><name>Atef Digital</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5134619096013223730.post-1767664778110112015</id><published>2009-02-09T21:38:00.000-08:00</published><updated>2009-02-09T21:48:50.154-08:00</updated><title type='text'>Asterisk: A Bare-Bones VoIP Example  p:2</title><content type='html'>&lt;span id="intelliTxt"&gt;&lt;h4&gt;Applications&lt;/h4&gt;  &lt;p&gt;After a match is made on &lt;code&gt;${EXTEN}&lt;/code&gt;, the applications start to be executed in the order in which they are listed by their priority values. There are a huge number of applications that are available, and additional applications are fairly easy to integrate. There is even an application called AGI that links to external programs, and there are Perl and Python libraries that allow for easy development of tools external to the applications built into Asterisk.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;/span&gt;&lt;p&gt;The most-used application is called Dial, and that is the application that rings a remote channel and then connects the two different channels together if there is an answer. The Dial application has some special abilities due to its multiple responses. If a Dial application gets an answer on the remote channel, then the two callers are bridged together and the call proceeds. After an answer, the only options are for one or both parties to hang up. When a hangup happens, the Dial routine exits with a non-zero status, and the priority list stops executing because we have lost the call -- this is a normal call termination.&lt;/p&gt;   &lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;If the Dial application rings the remote phone for 20 seconds (specified by the &lt;code&gt;,20&lt;/code&gt; in our Dial statement) but there is no answer, Dial will exit and the next priority will be executed -- in our case, that next priority is a command to run the Voicemail application, which sends the caller to the "unavailable" greeting for the called party. If the Dial application gets a "busy" answer back from the remote phone, or the remote phone is not on-line, then the Dial application does something special: it adds 101 to the existing priority, and jumps to that priority. In our case, this means priority 102, which sends the caller to the "busy" greeting for the called party. Dial is the only application that has this special priority incrementing ability, though there are priority control applications that can give the administrator direct control to the priority, context, and extension such as Goto, and more sophisticated versions such as GotoIf, which can be used to evaluate expressions.&lt;/p&gt;  &lt;p&gt;To get a list of applications, just type "show applications" at the command prompt, and then "show application xxxx," where xxxx is the application for which you want more information.&lt;/p&gt;  &lt;h4&gt;Prerequisites&lt;/h4&gt;  &lt;p&gt;Asterisk currently runs on Linux &gt; 2.4.x (various flavors) and OpenBSD 3.3. The OpenBSD version has not been tested thoroughly and should be considered "alpha" at the time of this writing (June 2003).&lt;/p&gt;  &lt;p&gt;You will also need an SIP-capable phone, such as a Cisco 7960 or 7940, SNOM, Pingtel, or Grandstream. Alternately, you could get a software client for Windows such as the &lt;a href="http://www.xten.com/"&gt;free client from Xten&lt;/a&gt; or a Linux SIP phone like &lt;a href="http://www.wirlab.net/kphone/"&gt;kphone&lt;/a&gt;. Configuring these various SIP clients is outside of the scope of this article, but I will describe what is required to make them work with Asterisk as far as SIP login data is required. &lt;/p&gt;  &lt;p&gt;I would strongly suggest a "hardphone" to start with, especially if you are using this as a demonstration platform. Anecdotal evidence strongly suggests that nobody except the most hardcore road-warrior wants to talk on the phone through their computer -- they want a handset that looks and acts like a phone. Plus, the SIP hardphones are usually debugged quite well, as the vendors cannot simply expect to roll out a "patch" to upgrade their customers without extensive preparation, so I have found that the hardphones are generally more reliable than softphones.&lt;/p&gt;  &lt;p&gt;Your two phones or phone clients should have at least 80 kilobits of capacity each back to the Asterisk server, as we will be using G.711 codecs that take up quite a bit of bandwidth. There are other voice encoding methods that get as low as about 4kbps, but that's getting a bit too fancy for this article.&lt;/p&gt;  &lt;p&gt;You will need a complete kernel source tree symlinked to &lt;i&gt;/usr/src/linux&lt;/i&gt; since Asterisk requires certain header files from the kernel to compile correctly. If you are running OpenBSD, this is not required. You will need to have the following packages installed to complete a full installation: &lt;code&gt;bison&lt;/code&gt;, &lt;code&gt;cvs&lt;/code&gt;, &lt;code&gt;gcc&lt;/code&gt;, &lt;code&gt;kernel-source&lt;/code&gt;, &lt;code&gt;libtermcap-devel&lt;/code&gt;, &lt;code&gt;ncurses-devel&lt;/code&gt;, &lt;code&gt;newt-devel&lt;/code&gt;, &lt;code&gt;openssl096b&lt;/code&gt;, and &lt;code&gt;openssl-devel&lt;/code&gt;.&lt;/p&gt;   &lt;h4&gt;SIP Client Configuration&lt;/h4&gt;  &lt;p&gt;You will need to configure your SIP clients so that they have their SIP gateway set to be the IP address of your Asterisk server. The usernames and passwords are contained below in the &lt;i&gt;sip.conf&lt;/i&gt; file -- the username is the extension, and the password is listed in the &lt;code&gt;secret=&lt;/code&gt; line for each extension. The configuration of the clients is often half the battle of getting VoIP to work, but once your particular client is understood, it normally becomes plug-and-play to add more phones. Your client must support registering with the SIP server -- I would suggest telling your client to register every 15 seconds or so during your experiments, to keep things re-registering quickly after Asterisk restarts. Later, you can take this back up to 1000 seconds or higher.&lt;/p&gt;    &lt;h4&gt;Installing Asterisk:&lt;/h4&gt;  &lt;p&gt;Go to the &lt;a href="http://www.asterisk.org/"&gt;Asterisk home page&lt;/a&gt; and you can follow the "Download" link to get to the correct page. I would suggest not downloading the tarball, but using CVS to create your version of the application. The project sees an enormous amount of work done to it almost daily, so getting the most recent version via CVS is strongly suggested. &lt;/p&gt;    &lt;p&gt;To download the latest CVS repository:&lt;/p&gt;  &lt;pre&gt;&lt;code&gt;foo# cd /usr/src&lt;br /&gt;foo# mkdir asterisk&lt;br /&gt;foo# export CVSROOT=:pserver:anoncvs@cvs.digium.com:/usr/cvsroot&lt;br /&gt;foo# cvs login&lt;br /&gt;&lt;br /&gt;[type "anoncvs" without the quotes as your password]&lt;br /&gt;&lt;br /&gt;foo# cvs checkout asterisk&lt;br /&gt;&lt;br /&gt;[Here you should see the package being downloaded&lt;br /&gt; and distributed into the ./asterisk directory.]&lt;br /&gt;&lt;br /&gt;foo# cd asterisk&lt;br /&gt;foo# make&lt;br /&gt;foo# make install&lt;br /&gt;foo# make samples&lt;/code&gt;&lt;/pre&gt;  &lt;p&gt;Now, to test, type &lt;code&gt;asterisk -vvvvgc&lt;/code&gt; to start up Asterisk. If you end up with a prompt that says &lt;code&gt;*CLI&gt;&lt;/code&gt;, then you've successfully installed the demonstration configuration. If you get errors on the installation, I would suggest joining the IRC channel &lt;code&gt;#Asterisk&lt;/code&gt; on &lt;a href="http://www.freenode.org/"&gt;FreeNode&lt;/a&gt; or asking the asterisk-users mailing list for advice. &lt;/p&gt;    &lt;p&gt;Here's a compile hint. If you get "illegal instruction" errors on launching Asterisk, you probably have run across an issue with Asterisk compiling itself for the wrong processor type. Edit &lt;i&gt;/usr/src/asterisk/Makefile&lt;/i&gt; and uncomment your processor type and comment out all other lines starting with &lt;code&gt;PROC=&lt;/code&gt; in the processor definition section.&lt;/p&gt;  &lt;p&gt;Asterisk is normally launched with &lt;code&gt;safe_asterisk&lt;/code&gt;, which will be installed in &lt;i&gt;/usr/sbin&lt;/i&gt;. To connect to the currently running version of Asterisk, launch a client with &lt;code&gt;asterisk -r&lt;/code&gt; and you should see a command prompt.&lt;/p&gt;   &lt;h4&gt;Command-line Use&lt;/h4&gt;  &lt;p&gt;There are many instructions that are available from within Asterisk's CLI interface, and described below are several that you may find useful during your configuration. A full list may be displayed by simply hitting the "?" key, and applications may be displayed (but not executed) with "show applications."&lt;/p&gt;  &lt;pre&gt;&lt;code&gt;reload - soft-restarts Asterisk and updates internal configs&lt;br /&gt;   with changes you've made to /etc/asterisk/* - does not hang up calls&lt;br /&gt;&lt;br /&gt;show dialplan - shows the full dialplan of how your calls will be handled&lt;br /&gt;&lt;br /&gt;sip show peers - shows all registered SIP clients&lt;br /&gt;&lt;br /&gt;sip show channels - shows current "live" channels that are in&lt;br /&gt;   use by SIP clients (off-hook)&lt;br /&gt;&lt;br /&gt;stop gracefully - shuts down Asterisk after all calls have hung up&lt;br /&gt;&lt;br /&gt;stop now - shuts down Asterisk, hanging up any current calls&lt;/code&gt;&lt;/pre&gt;  &lt;p class="secondary"&gt; &lt;/p&gt;&lt;span id="intelliTxt"&gt;  &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5134619096013223730-1767664778110112015?l=asterisk4arab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://asterisk4arab.blogspot.com/feeds/1767664778110112015/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5134619096013223730&amp;postID=1767664778110112015' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/1767664778110112015'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/1767664778110112015'/><link rel='alternate' type='text/html' href='http://asterisk4arab.blogspot.com/2009/02/asterisk-bare-bones-voip-example-p2.html' title='Asterisk: A Bare-Bones VoIP Example  p:2'/><author><name>Atef Digital</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5134619096013223730.post-4992342876577913304</id><published>2009-02-09T21:34:00.000-08:00</published><updated>2009-02-09T21:37:36.515-08:00</updated><title type='text'>Asterisk: A Bare-Bones VoIP Example  p:1</title><content type='html'>&lt;p&gt;Open source software (OSS) has achieved a dominant role in the delivery of IP-based content such as web data (Apache) and email (&lt;code&gt;sendmail&lt;/code&gt;), and is making serious headway in streaming media (&lt;code&gt;icecast&lt;/code&gt;). As processors become less expensive and more powerful, even jobs that were once relegated to specific hardware (such as routing and load sharing) are now becoming possible on low-cost OSS platforms running Linux or BSD-based operating systems. The last bastion of hardware-specific functionality in the office environment has been the phone system, or PBX (Private Branch Exchange). PBX installations range from key systems with a few lines to large platforms fed by Primary Rate Interface ISDN (PRI) that are complex and expensive to deploy, with hundreds or thousands of extensions spanning several states or continents.&lt;/p&gt;  &lt;!--ONJava MPU Ad --&gt;   &lt;div style="float: right; width: 300px; padding-left: 15px;"&gt; &lt;!--JavaScript Tag // Tag for network 5159: TechVertical // Website: OR - ONLamp // Page: ONLamp // Placement: ros_300x250 (425847) // created at: Oct 9, 2008 5:51:40 PM--&gt; &lt;script language="javascript"&gt;&lt;!-- document.write('&lt;scr'+'ipt language="javascript1.1" src="http://adserver.adtechus.com/addyn/3.0/5159/425847/0/170/ADTECH;loc=100;target=_blank;key=key1+key2+key3+key4;grp=[group];misc='+new Date().getTime()+'"&gt;&lt;/scri'+'pt&gt;'); //--&gt; &lt;/script&gt;&lt;script language="javascript1.1" src="http://adserver.adtechus.com/addyn/3.0/5159/425847/0/170/ADTECH;loc=100;target=_blank;key=key1+key2+key3+key4;grp=%5Bgroup%5D;misc=1234235792067"&gt;&lt;/script&gt;&lt;noscript&gt;&lt;a href="http://adserver.adtechus.com/adlink/3.0/5159/425847/0/170/ADTECH;loc=300;key=key1+key2+key3+key4;grp=[group]" target="_blank"&gt;&lt;img src="http://adserver.adtechus.com/adserv/3.0/5159/425847/0/170/ADTECH;loc=300;key=key1+key2+key3+key4;grp=[group]" border="0" width="300" height="250" /&gt;&lt;/a&gt;&lt;/noscript&gt; &lt;!-- End of JavaScript Tag --&gt; &lt;/div&gt;   &lt;!-- Digital Media MPU Ads --&gt;      &lt;p&gt;Until now, open source telephony applications have been at the periphery of the PBX, and even then, they have not been PBX-specific: fax modem software, simple voicemail software, and caller-identification software all work in conjunction with standard phone lines, but rarely together in concert as a unified platform.&lt;/p&gt;   &lt;p&gt;&lt;a href="http://www.asteriskpbx.com/"&gt;Asterisk&lt;/a&gt; is both an open source toolkit for telephony applications and a full-featured call-processing server in itself. It can be a standalone system, or used as an adjunct to a previously existing PBX or Voice Over IP (VoIP) implementation. It can be software only, moving calls around via IP, or it can have a variety of hardware interfaces to directly tie in with existing TDM (Time Division Multiplexing) equipment. Asterisk is &lt;i&gt;not&lt;/i&gt; a VoIP platform; it is a Computerized Telephony Integration platform, which just happens to have a number of very useful input/output channels through VoIP. Asterisk can just as easily be a server that has no Internet connectivity, but uses PCI-card-based analog or digital trunks to process calls -- an important distinction between Asterisk and many other systems.&lt;/p&gt;    &lt;p&gt;It is difficult to describe the full feature set of Asterisk due to the number of fairly complex topics that are incorporated into the system: multiple VOIP channel types, hardware interfaces, a scripting language, an API, modules, and more features than can be addressed in this short article. To provide a brief introduction to Asterisk's capabilities, I will show an example that creates a very simple PBX with two extensions and voicemail on each. There will be no external connectivity to this PBX; we will simply be able to call from one line to the other. This would allow, as an example, two users to be in separate parts of the country but they could ring each other's desk phones. If the called party was unavailable, voicemail could be left. &lt;/p&gt;   &lt;div class="image right" style="width: 120px;"&gt; &lt;br /&gt;Voice Over IP (VoIP)&lt;/div&gt;    &lt;p&gt;VoIP has been around for a while, but has been fairly restricted to high-end users such as phone companies and large enterprise phone networks; only recently has VoIP gained momentum with end users and smaller shops. There have been a small handful of proprietary long-distance solutions for some time, but these were closed-source systems that did not lend themselves to any extensions by the OSS community. The push of VoIP technology closer to the grasp of the Linux/*BSD end user or administrator can be attributed to a combination of low-cost, high-speed bandwidth and a recent agreement to standardize on open protocols for call delivery.&lt;/p&gt;   &lt;p&gt;Within the last eighteen months, it has become evident that the protocol that will be leading the industry for VoIP deployments is Session Initiation Protocol (SIP) -- see &lt;a href="ftp://ftp.isi.edu/in-notes/rfc3265.txt"&gt;RFC3265&lt;/a&gt;. SIP is a simple, text-based description protocol that uses interactions similar to HTTP and SMTP in order for two systems to describe a media stream (in our case, voice traffic) that needs to get from point A to point B. The description includes authentication, caller ID information, media stream parameters, and a variety of other header information that is needed to fully qualify a call between two endpoints. &lt;/p&gt;   &lt;p&gt;While there are other VoIP protocols supported by Asterisk (such as H323 and MGCP) I will only describe SIP, as there are a growing number of phones and software stacks that support SIP as a method for call description, and for the beginner, SIP is easier to debug due to its use of plaintext headers.&lt;/p&gt;  &lt;h3&gt;Asterisk Theory&lt;/h3&gt;  &lt;p&gt;&lt;i&gt;See the &lt;a href="http://www.onlamp.com/pub/a/onlamp/2003/07/03/asterisk.html?page=3#config"&gt;Configuration section&lt;/a&gt; below for samples of the files that are referenced here.&lt;/i&gt;&lt;/p&gt;  &lt;h4&gt;Call Flow: Starting Out&lt;/h4&gt;  &lt;p&gt;A call comes in on one of several channels (SIP in our case) and is "destined" for a dialed number. The Asterisk process first deals with the call via whatever channel it came in on, and learns what to do with it in that manner, and into what context to send the call in &lt;i&gt;extensions.conf&lt;/i&gt;. In our example, calls inbound from both of our SIP phones are sent to the context &lt;code&gt;from-sip&lt;/code&gt;, which is where we are going to start matching the dialed numbers. The called number is translated into a variable called &lt;code&gt;${EXTEN}&lt;/code&gt;, and we'll refer to this variable from now on when talking about the number being dialed. It is implicitly used in any matching statements, so you don't have to worry about specifying it elsewhere. However, for ease of reference, we will use it in this article whenever we talk about the number that has been called.&lt;/p&gt;    &lt;h4&gt;Contexts&lt;/h4&gt;  &lt;p&gt;Now that &lt;i&gt;sip.conf&lt;/i&gt; has told our call what context to go to, the control is handed over to the definitions created by the file &lt;i&gt;extensions.conf&lt;/i&gt;. The &lt;i&gt;extensions.conf&lt;/i&gt; file works by defining various "contexts," which are clusters of dialed-number matching statements. The context is the central building block of Asterisk, and, loosely, is used as one might use a subroutine. Within a context are a number of matching statements that perform match tests against the number being processed. The call is passed through the comparison list until a match is found.&lt;/p&gt;   &lt;p&gt;A context can have "special" extensions, which are pre-defined and are reserved for special behavior. The most commonly used extension is &lt;code&gt;h&lt;/code&gt;, which means hangup, and allows your dial plan to execute certain routines at the completion of a call. See the &lt;a href="http://www.digium.com/handbook-draft.pdf"&gt;manual&lt;/a&gt; for a more complete listing of special extensions. None of the special extensions are used in our example.&lt;/p&gt;  &lt;h4&gt;Extension Matching&lt;/h4&gt;  &lt;p&gt;Each context has a set of extension matches, which determine what applications should be triggered by the call, and how the call should be routed. Matching is performed in numerically ascending order, which can be tricky if you have many matches that are similar; in our example we have a very simple match list. The matching examination is done on the digits following the &lt;code&gt;=&gt;&lt;/code&gt; up until the next comma. Each match definition has at least one "priority," which simply is a number that tells the server in what order to execute the applications when a match for the matching string is found. Priorities must be sequential whole numbers, which sometimes leads to headaches if you discover you need to insert an application at the top of a priority list.&lt;/p&gt;  &lt;p&gt;Each line is in the format:&lt;/p&gt;  &lt;pre&gt;&lt;code&gt;exten =&gt; extension,priority,application&lt;/code&gt;&lt;/pre&gt;  &lt;p&gt;Here's an example:&lt;/p&gt;  &lt;pre&gt;&lt;code&gt;exten =&gt; 3334,1,Answer&lt;br /&gt;exten =&gt; 3334,2,Playback(welcome-to-foo-inc)&lt;br /&gt;exten =&gt; 3334,3,Wait(1)&lt;br /&gt;exten =&gt; 3334,4,Playback(the-date-and-time-is)&lt;br /&gt;exten =&gt; 3334,5,DateTime&lt;/code&gt;&lt;/pre&gt;  &lt;p&gt;The above example will match any inbound calls sent to extension 3334 and play back a short welcome followed by a verbalization of the date and time. As long as the caller hasn't hung up, the next application will be run and the results played into the channel.&lt;/p&gt;     &lt;p&gt;To give an idea of how this works in our mini-phone system, imagine an inbound SIP call is headed towards extension 2001 from extension 2000. Thus, &lt;code&gt;${EXTEN}&lt;/code&gt; would be equal to 2001. Using our example &lt;i&gt;sip.conf&lt;/i&gt; file (see below), it shows that any calls coming from extension 2000 should be passed into the context &lt;code&gt;from-sip&lt;/code&gt;.  When the call is passed into &lt;code&gt;from-sip&lt;/code&gt;, the first match statement compares &lt;code&gt;${EXTEN}&lt;/code&gt; against the string "2000". That isn't a match, so the matching process jumps to the next numeric extension definition, which is "2001". In this comparison, it is true that &lt;code&gt;${EXTEN}&lt;/code&gt; equals "2001" -- we have a match! At this point, the priority 1 application is executed, which is "Dial". &lt;/p&gt;    &lt;p&gt;If the calling channel still exists and has not been terminated at the end of priority 1, then priority 2 is executed, and so on. If there are no matches for &lt;code&gt;${EXTEN}&lt;/code&gt;, then the user will be sent an "Invalid Extension" result, and most likely will hear a re-order tone (fast busy) that would be generated from their phone.&lt;/p&gt;     &lt;p&gt;Wildcards can be used in extension mapping, and match strings beginning with the underscore character (&lt;code&gt;_&lt;/code&gt;), meaning that the following portions of the match string include wildcard characters. Commonly used wildcards are &lt;code&gt;N&lt;/code&gt; (digits 2-9), &lt;code&gt;X&lt;/code&gt; (any digit), &lt;code&gt;.&lt;/code&gt; (any number of digits), and a variety of regular-expression matching methods. See the &lt;a href="http://www.digium.com/handbook-draft.pdf"&gt;handbook&lt;/a&gt; for more detailed explanations of wildcards for matching. A valid example of a wildcarded matching string might be &lt;code&gt;exten =&gt; _301.,1,Dial(Zap/1/${EXTEN})&lt;/code&gt;, which would match any of the following: 3013, 3015551212, 301543*999.&lt;/p&gt;   &lt;p&gt;Much more extensive comparisons can be applied to the matching behaviors: caller ID of calling party, time of day, detection of fax modems, string matching, and more can all be used to determine call flow.&lt;/p&gt;  &lt;p&gt;Also, for a quick description of some system variables and conditional expressions, take a look at the file &lt;i&gt;README.variables&lt;/i&gt;, which is in the main Asterisk source directory.&lt;/p&gt;  &lt;p class="secondary"&gt; &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5134619096013223730-4992342876577913304?l=asterisk4arab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://asterisk4arab.blogspot.com/feeds/4992342876577913304/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5134619096013223730&amp;postID=4992342876577913304' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/4992342876577913304'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/4992342876577913304'/><link rel='alternate' type='text/html' href='http://asterisk4arab.blogspot.com/2009/02/asterisk-bare-bones-voip-example-p1.html' title='Asterisk: A Bare-Bones VoIP Example  p:1'/><author><name>Atef Digital</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5134619096013223730.post-4787981070945781832</id><published>2008-09-23T16:27:00.000-07:00</published><updated>2008-09-23T16:37:49.460-07:00</updated><title type='text'>Asterisk for OpenWRT</title><content type='html'>Asterisk for OpenWRT&lt;br /&gt;&lt;br /&gt;last updated: september 19, 2007&lt;br /&gt;&lt;br /&gt;This page contains binaries and sources for running the Asterisk PBX software on OpenWRT devices.&lt;br /&gt;&lt;br /&gt;This page has become obsolete since the majority of these patches were merged and improved in the official OpenWRT repositories since version 1.4.11. All requests and bug reports should now be propagated through tickets in the OpenWRT development process. People are strongly advised to use the official repositories for further Asterisk development an installations since there will be no new releases or developement through this site.&lt;br /&gt;&lt;br /&gt;The original repositories for version 1.4.9 are still maintained because of some extra features that have not been merged yet, but will be in the near future.&lt;br /&gt;(obsolete) Asterisk 1.4.9&lt;br /&gt;Asterisk 1.4 packages can be obtained through a package repository by adding a new line to your /etc/ipkg.conf:&lt;br /&gt;&lt;br /&gt;For OpenWRT WhiteRussian 0.9 on mipsel/brcm (Broadcom and compatibles):&lt;br /&gt;  src asterisk14 http://members.home.nl/hans.zandbelt/openwrt/whiterussian/packages/asterisk-1.4&lt;br /&gt;&lt;br /&gt;For OpenWRT Kamikaze 7.06 on mipsel/brcm (Broadcom and compatibles):&lt;br /&gt;  src asterisk14 http://members.home.nl/hans.zandbelt/openwrt/kamikaze/packages/asterisk-1.4&lt;br /&gt;&lt;br /&gt;For OpenWRT Kamikaze 7.06 on mips/atheros (Fonera and compatibles):&lt;br /&gt;  src asterisk14 http://members.home.nl/hans.zandbelt/openwrt/kamikaze/packages/asterisk-1.4/atheros&lt;br /&gt;&lt;br /&gt;For OpenWRT Kamikaze 7.06 on x86:&lt;br /&gt;  src asterisk14 http://members.home.nl/hans.zandbelt/openwrt/kamikaze/packages/asterisk-1.4/x86&lt;br /&gt;&lt;br /&gt;NB1: The 1.4.x packages are named "asterisk14-*" to allow them to co-exist with the 1.2.x packages, *BUT* the 1.4 packages _do_ use the same installation directories so installing them next to 1.2 must be done with a different "-d" flag to "ipkg install".&lt;br /&gt;NB2: For the Kamikaze releases based on kernel 2.6 the zaptel/ztdummy kernel module is not yet available thus app_meetme and IAX2 trunking are not yet usable on that platform.&lt;br /&gt;&lt;br /&gt;Update: Asterisk core updated to version 1.4.9; added asterisk-addons 1.4.2 zaptel-libtonezone updated to version 1.4.4.&lt;br /&gt;asterisk14-addons includes backported-from-trunk chan_mobile (svn 384)&lt;br /&gt;asterisk14-app-fax package is included, including app_rxfax and app_txfax.&lt;br /&gt;asterisk14-chan-gtalk is included, with stability fixes, providing GTalk support for Asterisk.&lt;br /&gt;(obsolete) Building from source&lt;br /&gt;You can build Asterisk 1.4.9 and addons for OpenWRT yourself, together with all supported modules, using the buildroot environment provided by the OpenWRT team, called the SDK. The script for doing so (download) :&lt;br /&gt;&lt;br /&gt;#!/bin/sh&lt;br /&gt;&lt;br /&gt;ZAPTEL="1.4.4"&lt;br /&gt;IKSEMEL="1.2"&lt;br /&gt;ASTERISK="1.4.9"&lt;br /&gt;ADDONS="1.4.2"&lt;br /&gt;&lt;br /&gt;URL="http://zandbelt.dyndns.org/asterisk"&lt;br /&gt;PREFIX="openwrt-packages"&lt;br /&gt;&lt;br /&gt;DIR="openwrt-devel"&lt;br /&gt;SDK="OpenWrt-SDK-Linux-i686-1"&lt;br /&gt;&lt;br /&gt;do_patch() {&lt;br /&gt;  PATCH=${PREFIX}-$1-$2.patch&lt;br /&gt;  wget ${URL}/${PATCH}&lt;br /&gt;  patch -p0 &lt; ${PATCH}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;mkdir ${DIR} &amp;&amp; cd ${DIR}&lt;br /&gt;wget http://downloads.openwrt.org/whiterussian/newest/${SDK}.tar.bz2&lt;br /&gt;tar jxvf ${SDK}.tar.bz2&lt;br /&gt;svn co https://svn.openwrt.org/openwrt/packages&lt;br /&gt;do_patch zaptel ${ZAPTEL}&lt;br /&gt;do_patch iksemel ${IKSEMEL}&lt;br /&gt;do_patch asterisk ${ASTERISK}&lt;br /&gt;do_patch asterisk-addons ${ADDONS}&lt;br /&gt;cd ${SDK}/package &amp;&amp; ln -s ../../packages/*/* . &amp;&amp; cd ..&lt;br /&gt;make package/asterisk14-compile V=99&lt;br /&gt;make package/asterisk14-addons-compile V=99&lt;br /&gt;&lt;br /&gt;After finishing successfully, packages can be found in:&lt;br /&gt;  openwrt-devel/OpenWrt-SDK-Linux-i686-1/bin/packages&lt;br /&gt;(obsolete) Asterisk 1.2.16&lt;br /&gt;NB: these packages are obsoleted by the 1.4.x ones; people are encouraged to switch to 1.4.x as OpenWRT support for 1.2.x will probably end in the near future. These packages can be obtained through a package repository by adding a new line to your /etc/ipkg.conf:&lt;br /&gt;&lt;br /&gt;  src asterisk http://members.home.nl/hans.zandbelt/openwrt/whiterussian/packages&lt;br /&gt;Installing dummy Zaptel timer support (ztdummy)&lt;br /&gt;This enables MeetMe audio tele-conferencing bridge support and IAX2 trunking.&lt;br /&gt;It is only useful on routers with UHCI USB features such as the Asus WL-500GdL.&lt;br /&gt;&lt;br /&gt;   1. Install kmod-zaptel&lt;br /&gt;   2. Install kmod-usb-uhci-iv&lt;br /&gt;   3. Install asterisk-app-meetme&lt;br /&gt;   4. Remove the alternate USB kernel module (if loaded): rmmod uhci&lt;br /&gt;   5. Insert the required USB module required for Zaptel timer support: insmod ./usb-uhci.o&lt;br /&gt;   6. Insert the Zaptel module: insmod ./zaptel.o&lt;br /&gt;   7. Insert the dummy USB Zaptel timer module: insmod ./ztdumy.o&lt;br /&gt;   8. Install the Asterisk core package (or *-mini ipk for iax2-only support) from the list above.&lt;br /&gt;   9. For tele-conferencing: configure meetme.conf and extensions.conf and make sure the app_meetme.so is loaded.&lt;br /&gt;  10. For trunking: configure iax.conf. &lt;br /&gt;&lt;br /&gt;Have fun with tele-conferencing and/or IAX2 trunking...&lt;br /&gt;Sounds&lt;br /&gt;Here's a package with Dutch (male) voices for Asterisk 1.x, created by Jeroen Naeff from the samples provided by Born Digital.&lt;br /&gt;# asterisk-dutchmale-sounds_0.1_mipsel.ipk&lt;br /&gt;Contact&lt;br /&gt;Preferably send your comments to the OpenWRT forum in one of the topics on Asterisk in the section for Community Releases.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5134619096013223730-4787981070945781832?l=asterisk4arab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://asterisk4arab.blogspot.com/feeds/4787981070945781832/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5134619096013223730&amp;postID=4787981070945781832' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/4787981070945781832'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/4787981070945781832'/><link rel='alternate' type='text/html' href='http://asterisk4arab.blogspot.com/2008/09/asterisk-for-openwrt.html' title='Asterisk for OpenWRT'/><author><name>Atef Digital</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5134619096013223730.post-1343672275354930965</id><published>2008-09-07T15:12:00.000-07:00</published><updated>2008-09-07T15:14:33.718-07:00</updated><title type='text'>What is VoIP?</title><content type='html'>VoIP (Voice over Internet Protocol) is simply the transmission of voice traffic over IP-based networks.&lt;br /&gt;&lt;br /&gt;&lt;p&gt;The Internet Protocol (IP) was originally designed for data networking. The success of IP in becoming a world standard for data networking has led to its adaption to voice networking.&lt;/p&gt;   &lt;h2&gt;The Economics of VoIP&lt;/h2&gt;  &lt;p&gt;VoIP has become popular largely because of the cost advantages to consumers over traditional telepone networks. Most Americans pay a flat monthly fee for local telephone calls and a per-minute charge for long-distance calls.&lt;/p&gt;  &lt;p&gt;VoIP calls can be placed across the Internet.  Most Internet connections are charged using a flat monthly fee structure.&lt;/p&gt;  &lt;p&gt;Using the Internet connection for both data traffic and voice calls can allow consumers to get rid of one monthly payment. In addition, VoIP plans do not charge a per-minute fee for long distance.&lt;/p&gt;  &lt;p&gt;For International calling, the monetary savings to the consumer from switching to VoIP technology can be enormous.&lt;/p&gt;   &lt;h2&gt;VoIP Telephones&lt;/h2&gt;  &lt;p&gt;There are three methods of connecting to a VoIP network:&lt;/p&gt;  &lt;ul&gt;&lt;li&gt;Using a VoIP telephone &lt;/li&gt;&lt;li&gt;Using a "normal" telephone with a VoIP adapter  &lt;/li&gt;&lt;li&gt;Using a computer with speakers and a microphone &lt;/li&gt;&lt;/ul&gt;   &lt;h2&gt;Types of VoIP Calls&lt;/h2&gt;  &lt;p&gt;VoIP telephone calls can be placed either to other VoIP devices, or to normal telephones on the &lt;a href="http://www.tech-faq.com/pstn.shtml"&gt;&lt;/a&gt;PSTN (Public Switched Telephone Network).&lt;/p&gt;  &lt;p&gt;Calls from a VoIP device to a PSTN device are commonly called "PC-to-Phone" calls, even though the VoIP device may not be a PC.&lt;/p&gt;  &lt;p&gt;Calls from a VoIP device to another VoIP device are commonly called "PC-to-PC" calls, even though neither device may be a PC.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5134619096013223730-1343672275354930965?l=asterisk4arab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://asterisk4arab.blogspot.com/feeds/1343672275354930965/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5134619096013223730&amp;postID=1343672275354930965' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/1343672275354930965'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/1343672275354930965'/><link rel='alternate' type='text/html' href='http://asterisk4arab.blogspot.com/2008/09/what-is-voip.html' title='What is VoIP?'/><author><name>Atef Digital</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5134619096013223730.post-6016691453280499846</id><published>2008-09-07T15:07:00.000-07:00</published><updated>2008-09-07T15:12:12.471-07:00</updated><title type='text'>Why VoIP?</title><content type='html'>The number one reason to switch to VoIP technology for telephone service is cost reduction. From that base, VoIP is able to provide some compelling features which makes switching even more attractive.&lt;br /&gt;&lt;br /&gt;&lt;h2&gt;Eliminating Phone Lines&lt;/h2&gt;  &lt;p&gt;With VoIP service, you can cancel your traditional phone service through your local telephone company and place all of your telephone calls over your broadband Interner connection.&lt;/p&gt;  &lt;p&gt;For a residential customer, this will save around $40 a month. For business customers, the savings can be thousands of dollars a month.&lt;/p&gt;   &lt;h2&gt;Eliminating Long Distance Charges&lt;/h2&gt;  &lt;p&gt;VoIP technology can also save money on long-distance charges. Most residential and business telephone customers pay per-minute fees for long-disatance telephone calls. VoIP can reduce or eliminate those long-distance fees.&lt;/p&gt;  &lt;p&gt;This saving is especially valuable with International calls, where per-minute charges for traditional telephone calls can be very expensive.&lt;/p&gt;   &lt;h2&gt;Number Portability&lt;/h2&gt;  &lt;p&gt;With VoIP service, you can take your phone number anywhere you go, easily. If you have a Chicago number and you move to New York, you can keep your Chicago number. This is very convenient for friends and family to keep in contact with you wherever you go.&lt;/p&gt;   &lt;h2&gt;Computer Telephony Integration (CTI)&lt;/h2&gt;  &lt;p&gt;VoIP service providers are designing and implementing new features which implement &lt;a href="http://www.tech-faq.com/computer-telephony-integration-cti.shtml"&gt;&lt;/a&gt;Computer Telephony Integration (CTI).&lt;/p&gt;  &lt;p&gt;For example, VoIP customers may be able to receive their voice messages in e-mail as .WAV file attachments. This can make managing voice mail messages much easier and more powerful, because it enables recipients to archive voicemails or forward them to anyone with an email address.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5134619096013223730-6016691453280499846?l=asterisk4arab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://asterisk4arab.blogspot.com/feeds/6016691453280499846/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5134619096013223730&amp;postID=6016691453280499846' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/6016691453280499846'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/6016691453280499846'/><link rel='alternate' type='text/html' href='http://asterisk4arab.blogspot.com/2008/09/why-voip.html' title='Why VoIP?'/><author><name>Atef Digital</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5134619096013223730.post-6927720649407404539</id><published>2008-09-07T15:05:00.001-07:00</published><updated>2008-09-07T15:07:24.679-07:00</updated><title type='text'>How can I get free VoIP?</title><content type='html'>The first thing to know about free VoIP calls is that none of them are actually completely free. Even in the best hypothetical case in which the VoIP provider doesn't charge you at all, remember that you still have to pay for your broadband Internet connection. You must understand that the goal is not to achieve completely free calls to all destinations, but to use the VoIP operator that suits your needs best. Keeping that in mind, you will learn that most VoIP companies will let you talk for free in their own network but also they will charge you for making calls outside their proprietary network.&lt;br /&gt;&lt;br /&gt;&lt;p&gt;The main way for free VoIP calls companies is to offer free calls inside their own network and also towards other specially selected destinations. Using this tactic users are drawn to make calls to free destinations and afterwards purchase credits to make calls towards paid destinations.&lt;/p&gt;  &lt;p&gt;There are several ways used by VoIP companies to lure customers and make a profit in the same time. The great thing about VoIP calls is that they're very cheap, but not completely free, here are some systems used today in the VoIP calls market:&lt;/p&gt;  &lt;p&gt;If you take Skype for example, one of the most popular VoIP services on the market, you will see that you can initiate conversations with other PC users of Skype free of charge. Of course, this is an advantage for long distance calls, as there is no fee for calls inside the Skype network. But if you want to make calls to regular landlines, you'll have to pay. The subscription fee for calls in North America is $30 per year. It's not a great deal of money but it still isn't free. You can make free phone calls on a PC to PC basis using the Skype software, and the number of users on the Skype network is continuously growing. On the other hand if you want to reach someone that doesn't have a PC or an Internet connection, you'll have to pay the required fees.&lt;/p&gt;  &lt;p&gt;Another approach to this, could be the way Raketu is seeing things. Raketu is offering free phone calls to landlines in 42 countries and besides that, it also offers live video television. The downside to Raketu's service is that they ask you to pay $9.95 up front in order to use their free services. They say it's used as credit if you happen to call destinations that are not on the free call list, but either way you look at it; it's money that you have to pay to use the service.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;If you are in the pursuit of a real cost free VoIP service you can use something like voipCheap that allows you to make free calls to PC's and regular phone lines. It also includes many destinations outside USA and Canada that can be called without paying a cent. The downside is that you have a limited number of 300 minutes that you can use each week, per IP Address. If you talk more than the included 300, you are required to pay for further calls, you are also required to pay for calls outside of the destinations listed on the free call list.&lt;/p&gt;  &lt;p&gt;To better understand how to make free VoIP calls, let's take a look at how VoIP telephony works. Basically all you need is to setup a VoIP gateway, that's most commonly done by using a PBX. A PBX (Private Branch Exchange) is a device that allows the VoIP provider to purchase as many telephone lines, as the maximum number of simultaneous callers. In general, around 10% of the users will make calls at the same time. This means that the VoIP can purchase fewer telephone lines, instead of buying one for each user. This brings us to the point, configuring a PBX is almost cost free, the actual costs come from the prices collected by the telephone companies for connecting to the PSTN (Public Switched Telephone Network). What VoIP providers do is use PSTN connections for accessing the public land and mobile telephone lines, but at the same time uses the SIP (Session Initiation Protocol) to stream media content such as voice over the Internet.&lt;/p&gt;  &lt;p&gt;With so many VoIP providers appearing every day the problem of interconnecting, preferably free of charge, with other VoIP providers arises. There are several ways to do this, as some of the existing VoIP providers that use SIP technology have already made peering arrangements to allow users interconnect for free. All you have to do, is use the special prefix code put at your disposal. Although this is not standard procedure, just yet, it's still widely used. The only problem with this is that some devices, such as VoIP phones cannot input the format of the prefix (the prefix usually looks similar to this: number@some_provider.com). As a solution to this, groups like SIP Broker or Voxalot, assign numeric values for your SIP URL, so it can be used on a wider scale of devices.&lt;/p&gt;  &lt;p&gt;Although there is no such thing as completely free VoIP telephony, and with some VoIP providers there are some serious hidden costs and restrictions you have to look for, VoIP calls are still very profitable. Knowing that you can make free calls towards destinations in the same VoIP network as you are, and in VoIP networks you have peering with and also towards special destinations selected by your service provider, you can see which combination better suits your needs. If you manage to use services that offer good deals for what you require, you can save up to 98% from your phone bills. This means that you will need to put some time and research into it, but in the end you can achieve almost free calls via the VoIP technology using several and payment methods.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5134619096013223730-6927720649407404539?l=asterisk4arab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://asterisk4arab.blogspot.com/feeds/6927720649407404539/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5134619096013223730&amp;postID=6927720649407404539' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/6927720649407404539'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/6927720649407404539'/><link rel='alternate' type='text/html' href='http://asterisk4arab.blogspot.com/2008/09/how-can-i-get-free-voip.html' title='How can I get free VoIP?'/><author><name>Atef Digital</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5134619096013223730.post-5348297888493967761</id><published>2008-09-07T15:04:00.000-07:00</published><updated>2008-09-07T15:05:43.500-07:00</updated><title type='text'>How do I compare VoIP providers?</title><content type='html'>VoIP (Voice over Internet Protocol) is changing the way people communicate. VoIP utilizes a broadband internet connection for routing telephone calls, as opposed to conventional switching methods, providing efficient use of existing Internet connections as well as lowering overall costs. Interestingly, there is no need for any large scale infrastructures; just combine a conventional phone with a broadband Internet connection to utilize a single service with minimal software and hardware support.&lt;br /&gt;&lt;br /&gt;&lt;!-- END AD TAG --&gt;    &lt;!-- google_ad_section_end --&gt;   &lt;p&gt;VoIP service providers are touting unlimited local and long distance calling for as little as $199 per year. This provides customers with substantial annual savings. There are several VoIP providers offering VoIP service for both residential customers as well as business. However, from a customer's standpoint it is an ideal option to compare several VoIP providers in selecting the best deal. &lt;/p&gt;  &lt;h2&gt;VoIP Product Features&lt;/h2&gt;  &lt;p&gt;There are several VoIP providers who claim outstanding services and comprehensive features. Don't be fooled - not all VoIP services are created equal. The VoIP package includes many features that may not be available on traditional phones. The most common VoIP features include 3-way calling and call waiting. As the competition between VoIP providers escalates, some providers are offering additional features to establish branding of their business while attracting additional customers. That's why it's always a good option to compare several VoIP providers to discover the VoIP product features you will get when taking a connection from the provider. &lt;/p&gt;  &lt;h2&gt;Monthly Rates&lt;/h2&gt;  &lt;p&gt;One of the main advantages of VoIP is reduced long distance cost and inexpensive local phone service with several enhanced features conventional telephone services are ill equipped to provide. Compare various VoIP providers to know the monthly rates they charge for their service. Selecting an ideal VoIP provider will help you to save up to 75% on expected annual charges. &lt;/p&gt;  &lt;h2&gt;Using VoIP for International Calling&lt;/h2&gt;  &lt;p&gt;If you make a lot of international calls, do a bit of research to find a VoIP provider who offers outstanding international services at the best rates. International rates differ from one VoIP provider to another. There are also some carriers which offer unlimited overseas calling. Though this offer is limited to certain countries, check whether the country to which you call falls in this category. &lt;/p&gt;  &lt;h2&gt;911 Service&lt;/h2&gt;  &lt;p&gt;Today, majority of the VoIP providers offer E911 service. While selecting a VoIP provider, make sure the provider offers 911 service. &lt;/p&gt;  &lt;h2&gt;Keeping Your Number&lt;/h2&gt;  &lt;p&gt;There are many VoIP providers who allow the customers to transfer (port) their current phone number to the VoIP service. Not all VoIP providers offer this service. If you need to change your phone number in this way, then you need to do research on the various VoIP providers to discover whether they offer such services. However, before asking your VoIP provider to switch your current number to the VoIP service, it is advisable to try out the provider's service and make sure that you are satisfied with the end result. &lt;/p&gt;  &lt;h2&gt;Money Back Guarantee&lt;/h2&gt;  &lt;p&gt;As VoIP is a relatively new product, most of the VoIP providers will offer a free money back guarantee. As a customer you will be in a risk-free position if your VoIP provider is offers a money back guarantees for up to 30 days. &lt;/p&gt;  &lt;p&gt;Comparing various VoIP providers will help you to select the one VoIP service provider whose terms and conditions meet your specific needs and calling pattern, especially if you make regular long distance or international calls.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5134619096013223730-5348297888493967761?l=asterisk4arab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://asterisk4arab.blogspot.com/feeds/5348297888493967761/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5134619096013223730&amp;postID=5348297888493967761' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/5348297888493967761'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/5348297888493967761'/><link rel='alternate' type='text/html' href='http://asterisk4arab.blogspot.com/2008/09/how-do-i-compare-voip-providers.html' title='How do I compare VoIP providers?'/><author><name>Atef Digital</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5134619096013223730.post-6484357457857197621</id><published>2008-09-07T15:01:00.000-07:00</published><updated>2008-09-07T15:04:16.055-07:00</updated><title type='text'>What are VoIP phones?</title><content type='html'>VoIP phones are telephones which connect to VoIP networks instead of to the PSTN.&lt;br /&gt;&lt;br /&gt;&lt;!-- END AD TAG --&gt;    &lt;!-- google_ad_section_end --&gt;   &lt;ul&gt;&lt;li&gt;VoIP phones with Ethernet connections &lt;/li&gt;&lt;li&gt;VoIP phones with Wi-Fi / 802.11 connections &lt;/li&gt;&lt;li&gt;VoIP phones with dialup modem connections &lt;/li&gt;&lt;li&gt;Software VoIP phones &lt;/li&gt;&lt;/ul&gt;   &lt;h2&gt;VoIP phones with Ethernet connections&lt;/h2&gt;  &lt;p&gt;A VoIP phone with an Ethernet connection is the easiest type of VoIP telephone to use.  Instead of a standard telephone RJ-11 connector to plug into the PSTN, these phones have RJ-45 connectors to plug into Ethernet networks.&lt;/p&gt;  &lt;p&gt;The Ethernet connection is used to connect these VoIP phones to the VoIP server or VoIP &lt;a href="http://www.tech-faq.com/voip-gateway.shtml"&gt;&lt;/a&gt;gateway.&lt;/p&gt;   &lt;h2&gt;VoIP phones with Wi-Fi / 802.11 connections&lt;/h2&gt;  &lt;p&gt;Wi-Fi (802.11) VoIP phones provide the same service as Ethernet VoIP phones, but they do it wirelessly.&lt;/p&gt;  &lt;p&gt;A Wi-Fi enabled VoIP phone connects to a VoIP server or VoIP gateway through your existing Wi-Fi network.&lt;/p&gt;    &lt;h2&gt;VoIP phones with dialup modem connections&lt;/h2&gt;  &lt;p&gt;VoIP phones with dialup modem connections are very similar to VoIP phones with Ethernet connections.&lt;/p&gt;  &lt;p&gt;Instead of connecting to an Ethernet network, these VoIP phones dialup over the PSTN to VoIP service providers.&lt;/p&gt;  &lt;p&gt;Using a VoIP phone with a dialup modem connection requires a regular analog POTS telephone line, but enables long-distance and international calls to be made over VoIP networks, usually at a significant savings.&lt;/p&gt;   &lt;h2&gt;Software VoIP phones&lt;/h2&gt;  &lt;p&gt;Software VoIP phones turn your PC into a VoIP telephone.&lt;/p&gt;  &lt;p&gt;Software VoIP telephones are less expensive than the choices listed above, if you already own a personal computer.&lt;/p&gt;   &lt;blockquote&gt; &lt;h3&gt;Hardware for Software VoIP phones&lt;/h3&gt;  &lt;p&gt;Software VoIP phones use the PC's sound card, speakers or earphones, and microphone. This hardware works to emulate a telephone, even though this is not what the PC was designed for.&lt;/p&gt;  &lt;p&gt;For better ease-of-use, many companies manufacture USB VoIP phones. These devices give your PC a normal-looking telephone handset or headset.&lt;/p&gt; &lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5134619096013223730-6484357457857197621?l=asterisk4arab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://asterisk4arab.blogspot.com/feeds/6484357457857197621/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5134619096013223730&amp;postID=6484357457857197621' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/6484357457857197621'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/6484357457857197621'/><link rel='alternate' type='text/html' href='http://asterisk4arab.blogspot.com/2008/09/what-are-voip-phones.html' title='What are VoIP phones?'/><author><name>Atef Digital</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5134619096013223730.post-7212261027381909623</id><published>2008-09-07T14:57:00.000-07:00</published><updated>2008-09-07T15:01:15.951-07:00</updated><title type='text'>How do I choose a VoIP phone?</title><content type='html'>The first choice is determining if you want a hardware VoIP phone or a software VoIP phone.&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Hardware phones are generally easier to use and do not require a PC. Software phones are usually less expensive and may offer better options for CTI (Computer Telephony Integration).&lt;/p&gt;   &lt;h2&gt;Choosing a VoIP Phone&lt;/h2&gt;  &lt;p&gt;With either a hardware or software VoIP phones, the major considerations remain the same:&lt;/p&gt;  &lt;ul&gt;&lt;li&gt;What VoIP call control protocols does the phone support? &lt;ul&gt;&lt;li&gt;H.323 &lt;/li&gt;&lt;li&gt;SIP &lt;/li&gt;&lt;li&gt;MGCP &lt;/li&gt;&lt;li&gt;IAX2 &lt;/li&gt;&lt;/ul&gt; &lt;/li&gt;&lt;li&gt;What VoIP codecs does the phone support? &lt;ul&gt;&lt;li&gt;G.711 &lt;/li&gt;&lt;li&gt;G.722 &lt;/li&gt;&lt;li&gt;G.723 &lt;/li&gt;&lt;li&gt;G.726 &lt;/li&gt;&lt;li&gt;G.727 &lt;/li&gt;&lt;li&gt;G.728 &lt;/li&gt;&lt;li&gt;G.729 &lt;/li&gt;&lt;li&gt;ILBC &lt;/li&gt;&lt;li&gt;Speex &lt;/li&gt;&lt;li&gt;GSM - Full Rate &lt;/li&gt;&lt;li&gt;GSM - Enhanced Full Rate &lt;/li&gt;&lt;li&gt;GSM - Half Rate &lt;/li&gt;&lt;li&gt;DoS FS-1015 &lt;/li&gt;&lt;/ul&gt; &lt;/li&gt;&lt;li&gt;Does the phone support 3-way calling &lt;/li&gt;&lt;li&gt;Does the phone support Do-Not-Disturb (DND) &lt;/li&gt;&lt;li&gt;Does the phone support custom ringtones? &lt;/li&gt;&lt;li&gt;Does the phone provide a method to work behind routers and NAT? &lt;/li&gt;&lt;li&gt;Does the phone support STUN? &lt;/li&gt;&lt;li&gt;Does the phone support Symmetric RTP? &lt;/li&gt;&lt;li&gt;Does the phone support a SIP outbound proxy? &lt;/li&gt;&lt;li&gt;Does the phone support QoS&lt;a href="http://www.tech-faq.com/qos.shtml"&gt;&lt;/a&gt; &lt;/li&gt;&lt;li&gt;Does the phone support encryption? &lt;ul&gt;&lt;li&gt;Secure RTP&lt;a href="http://www.tech-faq.com/rtp.shtml"&gt;&lt;/a&gt; &lt;/li&gt;&lt;li&gt;AES &lt;/li&gt;&lt;/ul&gt; &lt;/li&gt;&lt;/ul&gt;   &lt;h2&gt;Choosing a Hardware VoIP Phone&lt;/h2&gt;  &lt;p&gt;When selecting a hardware VoIP phone, you should consider these items:&lt;/p&gt;  &lt;ul&gt;&lt;li&gt;What connections does the VoIP phone support? &lt;ul&gt;&lt;li&gt;Ethernet &lt;ul&gt;&lt;li&gt;Does the phone support Power Over Ethernet? &lt;/li&gt;&lt;/ul&gt; &lt;/li&gt;&lt;li&gt;Wi-Fi &lt;/li&gt;&lt;li&gt;Dialup &lt;/li&gt;&lt;li&gt;ISDN &lt;/li&gt;&lt;/ul&gt; &lt;/li&gt;&lt;li&gt;Does the phone support IPv6? &lt;/li&gt;&lt;li&gt;Does the phone support videoconferencing? &lt;/li&gt;&lt;li&gt;Is the phone handset corded or cordless? &lt;/li&gt;&lt;li&gt;Does the phone have a handset or a headset? &lt;/li&gt;&lt;li&gt;Does the phone have a speakerphone? &lt;/li&gt;&lt;li&gt;Does the phone have an LCD display? &lt;ul&gt;&lt;li&gt;Is the LCD display backlit? &lt;/li&gt;&lt;/ul&gt; &lt;/li&gt;&lt;li&gt;Does the phone have good ergonomics? &lt;/li&gt;&lt;li&gt;Do you like the style of the phones? &lt;/li&gt;&lt;/ul&gt;   &lt;h2&gt;Choosing a Software VoIP Phone&lt;/h2&gt;  &lt;p&gt;If you choose a software VoIP phone, you should consider these items:&lt;/p&gt;  &lt;ul&gt;&lt;li&gt;Does the phone software support my Operating System? &lt;/li&gt;&lt;li&gt;Is the phone software easy to use? &lt;/li&gt;&lt;li&gt;Does the software support customizable skins? &lt;/li&gt;&lt;li&gt;Does the software support videoconferencing? &lt;/li&gt;&lt;li&gt;Does the software support shared whiteboarding? &lt;/li&gt;&lt;/ul&gt;  &lt;p&gt;And, of course, the final purchasing decision should always include price as a criteria.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5134619096013223730-7212261027381909623?l=asterisk4arab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://asterisk4arab.blogspot.com/feeds/7212261027381909623/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5134619096013223730&amp;postID=7212261027381909623' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/7212261027381909623'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/7212261027381909623'/><link rel='alternate' type='text/html' href='http://asterisk4arab.blogspot.com/2008/09/how-do-i-choose-voip-phone.html' title='How do I choose a VoIP phone?'/><author><name>Atef Digital</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5134619096013223730.post-1944784301167004070</id><published>2008-09-07T14:56:00.000-07:00</published><updated>2008-09-07T14:57:47.354-07:00</updated><title type='text'>How do I Become A VoIP Reseller?</title><content type='html'>If you are serious about reselling Voice over Internet Protocol (VoIP) services, there are some questions you will need to ask yourself first. Here are some simple guidelines to help you determine if and how you should pursue your goal of becoming a VoIP reseller.&lt;br /&gt;&lt;br /&gt;&lt;h2&gt;Know the Service&lt;/h2&gt;  &lt;p&gt;If you really want to be a reseller for VoIP services, you need at least a basic working knowledge of how VoIP works and what type of applications are currently commonly used. Among the things you will need to understand are gateways and how they interact with voice switches. You will also need to understand the process for creating an integrated voice package that allows easy switching to and from conventional digital switches. Educate yourself on the basics before you attempt to move on to the next step--reselling.&lt;/p&gt;  &lt;h2&gt;Determine the Applications You Want to Sell&lt;/h2&gt;  &lt;p&gt;You may want to market VoIP to audio teleconferencing companies as a cost efficient means of participation during conference calls from any location. You may want to focus on providing Fortune 500 companies with a VoIP telephone service that virtually eliminates long distance charges. By selecting the types of applications you want to resell, you set the stage for moving on to your next step, which is becoming an agent or reseller.&lt;/p&gt;  &lt;h2&gt;Decide Whose Services You Want to Resell&lt;/h2&gt;  &lt;p&gt;Once you know what applications you want to resell, it is easy to begin investigating the companies that offer those types of services. Look into such qualities as reliability, customer support, private labelling options (if you want to sell under your own company name), and the rates offered. You may also want to see if billing and receiving payments are something you will have to do, or whether your supplier handle those functions for you. Don't be afraid to ask questions if you can't find documentation to specifically address a concern of yours. Companies that rely on resellers to generate revenue typically are very happy to work with persons who are serious and can think for themselves.&lt;/p&gt;   &lt;p&gt;Being a VoIP reseller is an excellent way to make a living; and also a career choice that should be secure for a number of years to come. Investigate this possibility in more detail. You may find that this opportunity is right for you.&lt;/p&gt;     &lt;!-- google_ad_section_start(weight=ignore) --&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5134619096013223730-1944784301167004070?l=asterisk4arab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://asterisk4arab.blogspot.com/feeds/1944784301167004070/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5134619096013223730&amp;postID=1944784301167004070' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/1944784301167004070'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/1944784301167004070'/><link rel='alternate' type='text/html' href='http://asterisk4arab.blogspot.com/2008/09/how-do-i-become-voip-reseller.html' title='How do I Become A VoIP Reseller?'/><author><name>Atef Digital</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5134619096013223730.post-8496999475865862268</id><published>2008-09-07T14:54:00.000-07:00</published><updated>2008-09-07T14:55:55.061-07:00</updated><title type='text'>What is a VoIP Gateway?</title><content type='html'>A VoIP Gateway, or Voice over IP Gateway, is a network device which helps to convert voice and fax calls, in real time, between an IP network and Public Switched Telephone Network (PSTN). It is a high performance gateway designed for Voice over IP applications. Typically, a VoIP gateway comes with the ability to support at least two T1/E1 digital channels. Most VoIP gateways feature at least one Ethernet and telephone port. Controlling a gateway can be done with the help of the various protocols like MGCP, SIP or LTP.&lt;br /&gt;&lt;h2&gt;Benefits of VoIP Gateways&lt;/h2&gt;  &lt;p&gt;The main advantage of VoIP gateway is that it can provide connection with your existing telephone and fax machines through the traditional telephone networks, PBXs, and key systems. This makes the process of making calls over the IP network familiar to VoIP customers. &lt;/p&gt;  &lt;p&gt;VoIP gateways can end a call from the telephone and can provide user admission control using IVR (Interactive Voice Response) system and provide accounting records for the call. Gateways also help direct outbound calls to a specific destination, or can end the call from another gateway and send the call to the PSTN. &lt;/p&gt;  &lt;p&gt;VoIP gateways plays a major role in enhancing carrier services and also supports the simplicity of the telephone calls for less cost and easy access. Flexible call integration has been developed at less cost which enables programmable call progress tones and distinctive ring tones. &lt;/p&gt;  &lt;h2&gt;Functions of VoIP Gateways&lt;/h2&gt;  &lt;p&gt;The main functions of VoIP gateways include voice and fax compression or decompression, control signaling, call routing, and packetization. VoIP gateways are also power packed with additional features such as interfaces to external controllers like Gatekeepers or Softswitches, network management systems, and billing systems. &lt;/p&gt;  &lt;h2&gt;Future of VoIP Gateway Technology&lt;/h2&gt;  &lt;p&gt;Over the years, VoIP gateway has become an efficient and flexible solution and is used for office data and voice connectivity. Besides the connectivity performance, VoIP also offers better reliability under a variety of circumstances. &lt;/p&gt;  &lt;p&gt;The future of VoIP gateway is very clear and precise; high-density, scaleable, open platforms need to be designed and implemented to allow the millions of installed telephones and fast-growing number of H.323 computer clients (such as Netscape's Communicator and Microsoft's NetMeeting) to communicate over IP. Many vendors are in the process of designing interoperable VoIP gateways according to the latest architectures to meet the changing demands of service providers, corporate network clients, and individual carriers.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5134619096013223730-8496999475865862268?l=asterisk4arab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://asterisk4arab.blogspot.com/feeds/8496999475865862268/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5134619096013223730&amp;postID=8496999475865862268' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/8496999475865862268'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/8496999475865862268'/><link rel='alternate' type='text/html' href='http://asterisk4arab.blogspot.com/2008/09/what-is-voip-gateway.html' title='What is a VoIP Gateway?'/><author><name>Atef Digital</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5134619096013223730.post-5841037578642062194</id><published>2008-09-07T14:53:00.000-07:00</published><updated>2008-09-07T14:54:44.772-07:00</updated><title type='text'>What is an IP PBX?</title><content type='html'>A PBX (Private Branch Exchange) is a small telephone switch owned by a company or organization. An IP PBX is simply a PBX which supports VoIP (Voice over IP).  An IP PBX can also be referred to as a VoIP PBX.&lt;br /&gt;&lt;br /&gt;&lt;p&gt;An IP PBX may support VoIP both internally and externally. Internal VoIP support means that the IP PBX uses VoIP to communicate with each of its connect PBX phones. External VoIP supports means that the IP PBX uses VoIP to route calls to the outside world.&lt;/p&gt;  &lt;p&gt;Most IP PBX's also support older analog or digital PBX phones and also support external connections on the public switched telephone network (PSTN).&lt;/p&gt;&lt;br /&gt;&lt;h2&gt;Books on IP PBX's&lt;/h2&gt;  &lt;h3&gt;&lt;a href="http://www.amazon.com/exec/obidos/redirect?tag=entrepreneu0a-20&amp;amp;path=tg/detail/-/0071375686" rel="nofollow" target="_blank"&gt; &lt;img src="http://images.amazon.com/images/P/0071375686.01.MZZZZZZZ.jpg" alt="PBX Systems for IP Telephony" border="0" /&gt;&lt;br /&gt;PBX Systems for IP Telephony&lt;/a&gt;&lt;/h3&gt; &lt;p&gt;The most efficient and economical ways to bring enterprise communication systems into the digital age are in this guide. &lt;i&gt;PBX Systems for IP Telephony&lt;/i&gt; evaluates technologies, markets, and best practices for enterprise voice systems, messaging, and customer contact centers.&lt;br /&gt;&lt;br /&gt;The heart and brains of an enterprise communications network, the PBX (Private Branch Exchange) can be the vital link that interfaces businesses and their customers. This guide, from the recognized expert in telephony systems, provides answers. Whether you need to IP-enable a PBX system for a small business, make complex choices for the advanced call center, or gain the expertise to integrate a variety of communication systems into a state-of-the-art foundation for your e-business vision, &lt;i&gt;PBX Systems for IP Telephony&lt;/i&gt; should be your first choice.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5134619096013223730-5841037578642062194?l=asterisk4arab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://asterisk4arab.blogspot.com/feeds/5841037578642062194/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5134619096013223730&amp;postID=5841037578642062194' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/5841037578642062194'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/5841037578642062194'/><link rel='alternate' type='text/html' href='http://asterisk4arab.blogspot.com/2008/09/what-is-ip-pbx.html' title='What is an IP PBX?'/><author><name>Atef Digital</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5134619096013223730.post-2477314329560150103</id><published>2008-09-07T12:45:00.000-07:00</published><updated>2008-09-07T13:04:41.151-07:00</updated><title type='text'>What is VoIP Security?</title><content type='html'>Any technology that involves transfer of data or information is prone to compromised security. It happens with telephones, cell phones, email and Internet transactions. Because &lt;a href="http://www.tech-faq.com/voip.shtml"&gt;VoIP&lt;/a&gt; (Voice Over Internet Protocol) has the internet as its mode of transference it's possible to have your Internet-based called intercepted. To make matters worse, there are techno-troublemakers who are armed with the hacking skills needed to eavesdrop on virtually any call over the Internet they want to. It is impossible to ensure total security on information flow over the web including Internet based phone calls. As new technologies emerge with more highly developed security protocols, there will be those who consider it a unique challenge to crack these online defenses rendering security advances antiquated. The Internet has been notorious for alternating security breaches and accompanying fixes.&lt;br /&gt;&lt;br /&gt;&lt;p&gt;As VoIP becomes more popular, VoIP security continues to be stressed as a key to advancement of this technology, especially since it will thrive in the realm of the World Wide Web. There are, however, advances in VoIP security that have been utilized by VoIP providers in order to ensure protection of customer's personal information. &lt;/p&gt;  &lt;h2&gt;VoIP Security is IP Security&lt;/h2&gt;  &lt;p&gt;VoIP is vulnerable to all security issues that generally affect the traditional IP data networks. This includes viruses, worms and denial of service (DoS), spoofing, port scanning, unauthorized access from a third party. and toll fraud. In short, the same issues you deal with in compromised Internet function can be linked to the use of VoIP technology.&lt;/p&gt;  &lt;h2&gt;VoIP's Defensive Linemen&lt;/h2&gt;  &lt;p&gt;The two primary methods of security for VoIP users are tunneling and encryption. These security measures assist in providing a mechanism of trust in the safe use of the VoIP user's personal data. Most VoIP providers use Layer 2 tunneling and an encryption method called Secure Sockets Layer or &lt;a href="http://www.tech-faq.com/tls-transport-layer-security.shtml"&gt;SSL&lt;/a&gt; to keep hackers at bay. Large corporate enterprises are using similar security mechanisms based on encryption for all internal traffic flowing over the VoIP system as well. It is advisable to route all inbound VoIP traffic that flows via a firewall through a proxy server, thus eliminating any direct connection with the internet.&lt;/p&gt;  &lt;p&gt;On a larger level, organizations that are using VoIP as a popular mode of communication rely on a multiple level defense that addresses most VoIP security issues. In this scenario, the VoIP network is divided into secure zones protected by layers of firewall, intrusion prevention, and various additional security mechanisms. The advantage with this strategy is that it allows an organization to logically split and secure separate voice and data networks in front of individual voice and data components and between interactive points within the network. A system (like the one just described) should be complete with authentication, controls access (passwords and firewalls), encryption, an audit trail of calls, and facilities. Recording these issues can prevent security issue to a large degree because they are traceable.&lt;/p&gt;  &lt;h2&gt;Securing Your VoIP Network&lt;/h2&gt;  &lt;p&gt;While VoIP being internet-based is a key vulnerability, it also has its beneficial side. The years of experience in fending off or foiling internet attacks is experience that can be used in blocking VoIP assaults; the lessons learned in the data networking field are just as applicable to VoIP networking.&lt;/p&gt;  &lt;p&gt;One approach that should be given serious consideration is setting up a separate network for VoIP applications, running in parallel but separate from the data network. This may be considered a serious expense item that is incompatible with the perceived savings from VoIP. On the other hand, one has to consider the potential costs involved if both networks become corrupted or disrupted from an attack on one which also disrupts the other.&lt;/p&gt;  &lt;p&gt;Here are some other methods for securing a VoIP network:&lt;/p&gt;  &lt;ul style="list-style-type: none;"&gt;&lt;li&gt; – Enable as many of the manufacturer's security protocols as possible, adapting or 'tweaking' these to your own specifications rather than simply following manufacturer's defaults. Keep in mind that hackers and other attackers would probably know these defaults as well.&lt;/li&gt;&lt;li&gt; – Apply a strong authentication and encryption for both data and voice networks. As noted above, use the lessons learned in dealing with data network security problems to establish a preemptive stance in dealing with potential VoIP security concerns.&lt;/li&gt;&lt;li&gt; – Work out access controls and authentication protocols to ensure that only legitimate users can gain access to the VoIP network.&lt;/li&gt;&lt;li&gt; – Use gateway and host-based anti-virus as well as anti-spyware programs to protect crucial VoIP servers. At the same time, consider establishing perimeter security protocols to protect both networks.&lt;/li&gt;&lt;/ul&gt;  &lt;p&gt; A key point to remember is that VoIP is built on already established equipment and applications. The experiences and lessons gained from dealing with security threats to the data network can and should be used in developing security for the voice network. &lt;/p&gt;  &lt;h2&gt;Conclusion&lt;/h2&gt;  &lt;p&gt;Because VoIP is a newer technology there is a lot of discussion about its security and reliability. But it may be interesting to note that VoIP is actually more secure than normal email or even bill paying online. You may not need to be too worried about the security issues related to VoIP technology. Many newer technologies are emerging and, given the current trend, it won't take long before VoIP will be as secure as any other communication technology available today. Until then, if you are not sending highly sensitive information over the internet, VoIP is a relatively safe, reliable, and cost effective means of communication. &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5134619096013223730-2477314329560150103?l=asterisk4arab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://asterisk4arab.blogspot.com/feeds/2477314329560150103/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5134619096013223730&amp;postID=2477314329560150103' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/2477314329560150103'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/2477314329560150103'/><link rel='alternate' type='text/html' href='http://asterisk4arab.blogspot.com/2008/09/what-is-voip-security.html' title='What is VoIP Security?'/><author><name>Atef Digital</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5134619096013223730.post-1819729593956830225</id><published>2008-09-07T12:43:00.001-07:00</published><updated>2008-09-07T12:43:52.373-07:00</updated><title type='text'>What are books on VoIP?</title><content type='html'>&lt;table&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://www.amazon.com/exec/obidos/redirect?tag=entrepreneu0a-20&amp;amp;path=tg/detail/-/1578701686" rel="nofollow" target="_blank"&gt; &lt;img src="http://images.amazon.com/images/P/1578701686.01.MZZZZZZZ.jpg" alt="Voice over IP Fundamentals" border="0" /&gt;&lt;br /&gt;Voice over IP Fundamentals&lt;/a&gt;&lt;/td&gt;&lt;td&gt; The authors of Voice over IP Fundamentals--three packet-voice specialists at Cisco Systems--initiate their exploration of next-generation technologies for supporting conversations across large distances: the switched telephone network as implemented on large (intercontinental) and small (building and enterprise) scales. They then point out problems with the old way of doing things and illuminate the standards and regulatory conditions that have made Internet telephony attractive. Signaling System 7 (SS7) gets particularly insightful coverage, with ample graphical support for the clear, fact-rich, example-laden prose.&lt;br /&gt;&lt;br /&gt;The authors do a great service for readers by breaking packet telephony into its component technologies and explaining each one carefully. Coverage of the various protocols that enable voice over IP, particularly H.323 and Session Initiation Protocol (SIP), is simultaneously clear and deep. The same goes for media gateway protocols and various schemes for translating sounds into digital signals and back again, while retaining maximum clarity. There's even some practical material; concluding chapters diagram Cisco router configurations for voice traffic and flesh out solutions with case studies.&lt;br /&gt;&lt;br /&gt;You'll like this book if you need to implement a voice over IP system and know more about IP than you do about traditional voice telecommunications. The patient and detailed explanations of traditional telephony concepts and voice over IP protocols will mesh nicely with your existing data communications knowledge, enabling you to make wise design and product decisions. &lt;/td&gt;&lt;/tr&gt;  &lt;tr&gt;&lt;td colspan="2"&gt;&lt;hr /&gt;&lt;/td&gt;&lt;/tr&gt;  &lt;tr&gt;&lt;td&gt;&lt;a href="http://www.amazon.com/exec/obidos/redirect?tag=entrepreneu0a-20&amp;amp;path=tg/detail/-/0596008686" rel="nofollow" target="_blank"&gt; &lt;img src="http://images.amazon.com/images/P/0596008686.01.MZZZZZZZ.jpg" alt="Switching to VoIP" border="0" /&gt;&lt;br /&gt;Switching to VoIP&lt;/a&gt;&lt;/td&gt;&lt;td&gt;More and more businesses today have their receive phone service through Internet instead of local phone company lines. Many businesses are also using their internal local and wide-area network infrastructure to replace legacy enterprise telephone networks. This migration to a single network carrying voice and data is called convergence, and it's revolutionizing the world of telecommunications by slashing costs and empowering users. The technology of families driving this convergence is called VoIP, or Voice over IP.&lt;br /&gt;&lt;br /&gt;VoIP has advanced Internet-based telephony to a viable solution, piquing the interest of companies small and large. The primary reason for migrating to VoIP is cost, as it equalizes the costs of long distance calls, local calls, and e-mails to fractions of a penny per use. But the real enterprise turn-on is how VoIP empowers businesses to mold and customize telecom and datacom solutions using a single, cohesive networking platform. These business drivers are so compelling that legacy telephony is going the way of the dinosaur, yielding to Voice over IP as the dominant enterprise communications paradigm.&lt;br /&gt;&lt;br /&gt;Developed from real-world experience by a senior developer, O'Reilly's Switching to VoIP provides solutions for the most common VoIP migration challenges. So if you're a network professional who is migrating from a traditional telephony system to a modern, feature-rich network, this book is a must-have. You'll discover the strengths and weaknesses of circuit-switched and packet-switched networks, how VoIP systems impact network infrastructure, as well as solutions for common challenges involved with IP voice migrations. &lt;/td&gt;&lt;/tr&gt;  &lt;tr&gt;&lt;td colspan="2"&gt;&lt;hr /&gt;&lt;/td&gt;&lt;/tr&gt;  &lt;tr&gt;&lt;td&gt;&lt;a href="http://www.amazon.com/exec/obidos/redirect?tag=entrepreneu0a-20&amp;amp;path=tg/detail/-/0764588435" rel="nofollow" target="_blank"&gt; &lt;img src="http://images.amazon.com/images/P/0764588435.01.MZZZZZZZ.jpg" alt="VoIP For Dummies" border="0" /&gt;&lt;br /&gt;VoIP For Dummies&lt;/a&gt;&lt;/td&gt;&lt;td&gt;Put your phone system on your computer network and see the savings See how to get started with VoIP, how it works, and why it saves you money VoIP is techspeak for "voice over Internet protocol," but it could spell "saving big bucks" for your business! Here's where to get the scoop in plain English. Find out how VoIP can save you money, how voice communication travels online, and how to choose the best way to integrate your phone system with your network at home or at the office. Discover how to Use VoIP for your business or home phone service Choose the best network type Set up VoIP on a wireless network Understand transports and services Demonstrate VoIP's advantages to management. &lt;/td&gt;&lt;/tr&gt;  &lt;tr&gt;&lt;td colspan="2"&gt;&lt;hr /&gt;&lt;/td&gt;&lt;/tr&gt;  &lt;tr&gt;&lt;td&gt;&lt;a href="http://www.amazon.com/exec/obidos/redirect?tag=entrepreneu0a-20&amp;amp;path=tg/detail/-/0072262419" rel="nofollow" target="_blank"&gt; &lt;img src="http://images.amazon.com/images/P/0072262419.01.MZZZZZZZ.jpg" alt="VoIP Crash Course" border="0" /&gt;&lt;br /&gt;VoIP Crash Course&lt;/a&gt;&lt;/td&gt;&lt;td&gt;Recent advances in VoIP (Voice over IP) technology have made it the solution of choice for voice service because of its low cost and increased reliability. Voice Over IP Crash Course offers practical technology coverage, while discussing the business, strategic and competitive implications of VoIP deployment in corporations. The book also covers the challenges faced by service providers as they evolve to an IP infrastructure while continuing to operate the PSTN. &lt;/td&gt;&lt;/tr&gt;  &lt;tr&gt;&lt;td colspan="2"&gt;&lt;hr /&gt;&lt;/td&gt;&lt;/tr&gt;  &lt;tr&gt;&lt;td&gt;&lt;a href="http://www.amazon.com/exec/obidos/redirect?tag=entrepreneu0a-20&amp;amp;path=tg/detail/-/1587200759" rel="nofollow" target="_blank"&gt; &lt;img src="http://images.amazon.com/images/P/1587200759.01.MZZZZZZZ.jpg" alt="IP Telephony Unveiled" border="0" /&gt;&lt;br /&gt;IP Telephony Unveiled&lt;/a&gt;&lt;/td&gt;&lt;td&gt; This book explains four key points to help you successfully implement your IP telephony strategy: &lt;ul&gt;&lt;li&gt;IP telephony works today. This is not new, unproven technology. Thousands of customers have implemented IP telephony successfully. So can you. &lt;/li&gt;&lt;li&gt;Expect to save money. IP telephony may well cost your organization money-initially. But the business impact and post-installation process improvements give you a significant and rapid return on your investment. &lt;/li&gt;&lt;li&gt;It's more than voice over IP. You'll understand the difference between voice over IP (VoIP) and IP telephony and what that means for your business. This is critical. They are not the same. &lt;/li&gt;&lt;li&gt;It's more than a dial tone. There are potential business-impacting applications within your own organization. IP Telephony Unveiled helps you recognize these applications. &lt;/li&gt;&lt;/ul&gt;The emerging IP telephony market is fraught with misunderstandings and misinformation. IP telephony can impact a company's business model in tremendous ways. It can open new revenue streams, enhance profitability, drive new levels of customer and employee satisfaction, and be a key enabler in a company's strategy to differentiate itself competitively-but only if you're aware of these benefits.&lt;br /&gt;&lt;br /&gt;IP Telephony Unveiled is written for all those responsible for corporate strategies for revenue generation, cost containment, and customer satisfaction. IP Telephony Unveiled uncovers the value behind this technology, which helps you see past what might appear to be only a new telephone system, to understand the strategic enabler laying dormant in many companies' networks. Through this book, you will understand the real benefits of an IP telephony strategy and get assistance in developing this strategy inside your organization. &lt;/td&gt;&lt;/tr&gt;  &lt;tr&gt;&lt;td colspan="2"&gt;&lt;hr /&gt;&lt;/td&gt;&lt;/tr&gt;  &lt;tr&gt;&lt;td&gt;&lt;a href="http://www.amazon.com/exec/obidos/redirect?tag=entrepreneu0a-20&amp;amp;path=tg/detail/-/1587200929" rel="nofollow" target="_blank"&gt; &lt;img src="http://images.amazon.com/images/P/1587200929.01.MZZZZZZZ.jpg" alt="Taking Charge of Your VoIP Project" border="0" /&gt;&lt;br /&gt;Taking Charge of Your VoIP Project&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The step-by-step approach to VoIP deployment and management enables you to plan early and properly for successful VoIP integration with your existing systems, networks, and applications. &lt;ul&gt;&lt;li&gt;The detailed introduction offers a common grounding for members of both the telephony and data networking communities. &lt;/li&gt;&lt;li&gt;IT managers and project leaders are armed with details on building a business case for VoIP, including details of return-on-investment (ROI) analysis and justification. &lt;/li&gt;&lt;li&gt;A VoIP deployment is presented as a major IT project, enabling you to understand the steps involved and the required resources. &lt;/li&gt;&lt;li&gt;The comprehensive look at quality of service and tuning describes when and where to use them in a VoIP deployment. These are often the most complex topics in VoIP; you'll get smart recommendations on which techniques to use in various circumstances. &lt;/li&gt;&lt;li&gt;You learn how to plan for VoIP security, including prevention, detection, and reaction. &lt;/li&gt;&lt;/ul&gt;Voice over IP (VoIP) is the telephone system of the future. Problem is, VoIP is not yet widely deployed, so there are few skilled practitioners today. As you make your move to VoIP, how will you know how to make VoIP work and keep it working well? What changes will you need to make without disrupting your business? How can you show your return on this investment?&lt;br /&gt;&lt;br /&gt;Many books contain technical details about VoIP, but few explain in plain language how to make it run successfully in an enterprise. Taking Charge of Your VoIP Project provides the detailed plans you need to be successful in your organization's deployment of VoIP. Through their years of work in the field, authors John Q. Walker and Jeffrey T. Hicks bring a project-oriented approach to VoIP, with much-needed clarity on getting VoIP to work well.&lt;br /&gt;&lt;br /&gt;Taking Charge of Your VoIP Project starts with simple concepts, each chapter building on the knowledge from the last. Although not a technical manual, you learn about the standards, such as H.323, G.711, and Real-Time Transport Protocol (RTP), and the implications they have on your VoIP system. Most importantly, you'll gain expert advice and a systematic guide on how to make VoIP work for your organization. &lt;/td&gt;&lt;/tr&gt;  &lt;tr&gt;&lt;td colspan="2"&gt;&lt;hr /&gt;&lt;/td&gt;&lt;/tr&gt;  &lt;tr&gt;&lt;td&gt;&lt;a href="http://www.amazon.com/exec/obidos/redirect?tag=entrepreneu0a-20&amp;amp;path=tg/detail/-/1555583326" rel="nofollow" target="_blank"&gt; &lt;img src="http://images.amazon.com/images/P/1555583326.01.MZZZZZZZ.jpg" alt="VoIP Security" border="0" /&gt;&lt;br /&gt;VoIP Security&lt;/a&gt;&lt;/td&gt;&lt;td&gt;VoIP Security has been designed to help the reader fully understand, prepare for and mediate current security and QoS risks in todays complex and ever changing converged network environment and it will help you secure your VoIP network whether you are at the planning, implementation, or post-implementation phase of your VoIP infrastructure.&lt;br /&gt;&lt;br /&gt;This book will teach you how to plan for and implement VoIP security solutions in converged network infrastructures. Whether you have picked up this book out of curiosity or professional interest . . . it is not too late to read this book and gain a deep understanding of what needs to be done in a VoIP implementation.&lt;br /&gt;&lt;br /&gt;In the rush to be first to market or to implement the latest and greatest technology, many current implementations of VoIP infrastructures, both large and small, have been implemented with minimal thought to QoS and almost no thought to security and interoperability. &lt;/td&gt;&lt;/tr&gt;  &lt;tr&gt;&lt;td colspan="2"&gt;&lt;hr /&gt;&lt;/td&gt;&lt;/tr&gt;  &lt;tr&gt;&lt;td&gt;&lt;a href="http://www.amazon.com/exec/obidos/redirect?tag=entrepreneu0a-20&amp;amp;path=tg/detail/-/0470023597" rel="nofollow" target="_blank"&gt; &lt;img src="http://images.amazon.com/images/P/0470023597.01.MZZZZZZZ.jpg" alt="IP Telephony: Deploying Voice-over-IP Protocols" border="0" /&gt;&lt;br /&gt;IP Telephony: Deploying Voice-over-IP Protocols&lt;/a&gt;&lt;/td&gt;&lt;td&gt;IP Telephony, enabled by softswitches, is going to usher in a new era in telecommunications. By putting voice and data over one IP network, operators can enjoy lower costs and create new, revenue-generating "multimedia" services. This valuable reference offers a comprehensive overview of the technology behind IP telephony and offers essential information to network engineers, designers and managers who need to understand the protocols and explore the issues involved in migrating the existing telephony infrastructure to an IP-based real time communication service. Drawing on extensive research and practical development experience in VoIP from its earliest stages, the authors give access to all the relevant standards and cutting-edge techniques in a single resource. IP Telephony: Deploying Voice-over-IP Protocols: Assumes a working knowledge of IP and networking and addresses the technical aspects of real-time communication over IP. Presents a high level overview of packet media transport technologies, covering all the major VoIP protocols - SIP, H323 and MGCP Details specific strategies to design services for public networks where endpoints cannot be trusted and can be behind firewalls. Explores the problems that may arise from incomplete protocol implementations, or architectures optimized for private networks which fail in a public environment. This amply illustrated, state-of-the art reference tool will be an invaluable resource for all those involved in the practical deployment of VoIP technology. &lt;/td&gt;&lt;/tr&gt;  &lt;tr&gt;&lt;td colspan="2"&gt;&lt;hr /&gt;&lt;/td&gt;&lt;/tr&gt;  &lt;tr&gt;&lt;td&gt;&lt;a href="http://www.amazon.com/exec/obidos/redirect?tag=entrepreneu0a-20&amp;amp;path=tg/detail/-/0470023627" rel="nofollow" target="_blank"&gt; &lt;img src="http://images.amazon.com/images/P/0470023627.01.MZZZZZZZ.jpg" alt="Beyond VoIP Protocols: Understanding Voice Technology and Networking Techniques for IP Telephony" border="0" /&gt;&lt;br /&gt;Beyond VoIP Protocols: Understanding Voice Technology and Networking Techniques for IP Telephony&lt;/a&gt;&lt;/td&gt;&lt;td&gt;This book offers a comprehensive overview of the issues to solve in order to deploy global revenue-generating effective "multimedia" services. Drawing on extensive research and practical deployment experience in VoIP, the authors provide essential advice for those seeking to design and implement a post-bubble VoIP network. Beyond VoIP Protocols: Understanding Voice Technology and Networking Techniques for IP Telephony Introduces the basics of speech coding and voice quality Demonstrates how quality of service may be built into the network and deals with dimensioning aspects, e.g. multipoint communications and how to model call seizures. Explores the potential of multicast to turn an IP backbone into an optimized broadcast medium Includes amply illustrated, state-of-the-art practical advice for formulating a complete deployment strategy A companion volume to "IP Telephony: Deploying VoIP Protocols", this book takes the reader a stage deeper into how to prepare the network and exploit VoIP technology to its full potential. &lt;/td&gt;&lt;/tr&gt;  &lt;tr&gt;&lt;td colspan="2"&gt;&lt;hr /&gt;&lt;/td&gt;&lt;/tr&gt;  &lt;tr&gt;&lt;td&gt;&lt;a href="http://www.amazon.com/exec/obidos/redirect?tag=entrepreneu0a-20&amp;amp;path=tg/detail/-/0596101333" rel="nofollow" target="_blank"&gt; &lt;img src="http://images.amazon.com/images/P/0596101333.01.MZZZZZZZ.jpg" alt="VoIP Hacks: Tips and Tools for Internet Telephony" border="0" /&gt;&lt;br /&gt;VoIP Hacks: Tips and Tools for Internet Telephony&lt;/a&gt;&lt;/td&gt;&lt;td&gt;Voice over Internet Protocol (VoIP) is gaining a lot of attention these days, as more companies and individuals switch from standard telephone service to phone service via the Internet. The reason is simple: A single network to carry voice and data is easier to scale, maintain, and administer. As an added bonus, it's also cheaper, because VoIP is free of the endless government regulations and tariffs imposed upon phone companies.&lt;br /&gt;&lt;br /&gt;VoIP is simply overflowing with hack potential, and VoIP Hacks is the practical guide from O'Reilly that presents these possibilities to you. It provides dozens of hands-on projects for building a VoIP network, showing you how to tweak and customize a multitude of exciting things to get the job done. Along the way, you'll also learn which standards and practices work best for your particular environment. &lt;/td&gt;&lt;/tr&gt;  &lt;tr&gt;&lt;td colspan="2"&gt;&lt;hr /&gt;&lt;/td&gt;&lt;/tr&gt;  &lt;tr&gt;&lt;td&gt;&lt;a href="http://www.amazon.com/exec/obidos/redirect?tag=entrepreneu0a-20&amp;amp;path=tg/detail/-/0130141186" rel="nofollow" target="_blank"&gt; &lt;img src="http://images.amazon.com/images/P/0130141186.01.MZZZZZZZ.jpg" alt="IP Telephony - The Integration of Robust VoIP Services" border="0" /&gt;&lt;br /&gt;IP Telephony - The Integration of Robust VoIP Services&lt;/a&gt;&lt;/td&gt;&lt;td&gt; Now that virtually every leading telecommunications service provider has committed to delivering IP-based telephony services, communications professionals face the enormous challenge of implementation. This hands-on guide brings together today's best-known answers and solutions for delivering Voice Over IP (VoIP) services with the quality customers demand. No other book covers the combined issues of protocol signaling, media transport methodology, reference topological considerations, and voice quality testing in service offerings. Bill Douskalis presents systematic coverage of every aspect of IP-based telephony:&lt;br /&gt;&lt;br /&gt;Coverage includes: &lt;ul&gt;&lt;li&gt;A realistic reference topology for implementing and benchmarking voice quality in IP telephony &lt;/li&gt;&lt;li&gt;Detailed explanations of call setup using each major competing technology &lt;/li&gt;&lt;li&gt;Signaling, bearer transport, and other key network elements &lt;/li&gt;&lt;li&gt;In-depth network and service performance analysis in both "normal" and impaired scenarios &lt;/li&gt;&lt;li&gt;State-of-the-art traces and performance measurements taken from actual IP networks  &lt;/li&gt;&lt;/ul&gt;No matter what your role in delivering VoIP services, IP Telephony delivers the specifics you need to speed deployment, improve reliability, ensure quality, and simplify troubleshooting. Precise, thorough, and based firmly in the real world, it is simply indispensable.&lt;br /&gt;&lt;br /&gt;The accompanying CD-ROM contains Hewlett-Packard Internet Advisor software that runs off-lineview live VoIP traffic examples! It also includes sample capture files of the H.323, MGCP, and SIP protocols; the latest IETF Working Group documents for VoIP; and an assortment of white papers and application notes that provide a real-world view of IP telephony. &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5134619096013223730-1819729593956830225?l=asterisk4arab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://asterisk4arab.blogspot.com/feeds/1819729593956830225/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5134619096013223730&amp;postID=1819729593956830225' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/1819729593956830225'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/1819729593956830225'/><link rel='alternate' type='text/html' href='http://asterisk4arab.blogspot.com/2008/09/what-are-books-on-voip.html' title='What are books on VoIP?'/><author><name>Atef Digital</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5134619096013223730.post-1212650964008139894</id><published>2008-09-07T12:33:00.000-07:00</published><updated>2008-09-07T12:34:28.131-07:00</updated><title type='text'>What is SPIT?</title><content type='html'>VoIP spam or Spam over Internet Telephony (SPIT) is one of the foreseen future forms of spamming that Internet authorities are preparing for today. With the increasing use and dependence on the Internet for communications and data transfer, malicious software programmers have taken advantage by creating VoIP bots with the ability to harvest data and advertise massively at a very small cost. These advertising methods include email spams, SPIMS or spams over instant messaging applications, malicious bots that generate pop up ads, initiate redirects, etc.&lt;br /&gt;&lt;br /&gt;&lt;p&gt;With the inevitable popularity of VoIP over the traditional telephone, authorities are convinced that this is where the next form of spam will come from. In this case, the unsolicited emails will be replaced by video or audio recordings advertising dubious products and services. Prank callers will also take advantage of this new frontier as the new technology becomes more available. This is even more profitable for such users as they can send automated or pre-recorded advertising messages to thousands of users with just one click, making it a very cheap operation to run.&lt;/p&gt;  &lt;p&gt;SPIT will also have more impact on users than unsolicited instant messaging and email spam as it has the potential of clogging up the network. Given enough SPIT volume, users may not have any other options that to hang the VoIP phone 'off the hook'.&lt;/p&gt;  &lt;p&gt;Other threats include spammers who might take temporary control of a user's systems to launch VoIP attacks on other networks, hackers that will inject profane words in conversations, fake voice mails and viruses that have the ability to use critical bandwidth.&lt;/p&gt;  &lt;p&gt;Furthermore, These VoIP bots have the capability of launching automated DDoS or distributed denial of service attacks against rival corporations or users using VoIP with SIP protocols and vulnerabilities. Botnets armed with VoIP-directed software will play a big role in launching these kinds of attacks.&lt;/p&gt;&lt;br /&gt;&lt;h2&gt;VoIP Built-In Security&lt;/h2&gt;  &lt;p&gt;VoIP, however, will have the usual array of spam defenses that other forms of Internet communication applications like emails and instant messengers have to combat unsolicited video/voice communication. This will include the stealth mode of instant messenger applications, privacy options as well as spam reporting options.&lt;/p&gt;  &lt;p&gt;Other security measures may also include separating the voice and data streams so that in the event that the voice lines do get clogged with traffic, the website traffic will not be affected and will remain operational. Anti-spyware and anti-virus systems coupled with SIP encryption systems designed for VoIP will also help a lot in screening incoming calls and data and detect any instructions in the system. This will prevent DDoS attacks from being launched against your company. Moreover, increased collaboration between ISPs and Internet authorities will also be effective in determining the locations of these spammers as well as blocking calls and data from dubious IP addresses.&lt;/p&gt;  &lt;p&gt;Improvements and updates on the security systems for VoIP systems in its initial stages will also play a crucial role in making this communication option a cost effective and reliable alternative than telephones.&lt;/p&gt;       &lt;!-- google_ad_section_start(weight=ignore) --&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5134619096013223730-1212650964008139894?l=asterisk4arab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://asterisk4arab.blogspot.com/feeds/1212650964008139894/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5134619096013223730&amp;postID=1212650964008139894' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/1212650964008139894'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/1212650964008139894'/><link rel='alternate' type='text/html' href='http://asterisk4arab.blogspot.com/2008/09/what-is-spit.html' title='What is SPIT?'/><author><name>Atef Digital</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5134619096013223730.post-6276214819711659577</id><published>2008-09-07T12:32:00.000-07:00</published><updated>2008-09-07T12:33:05.643-07:00</updated><title type='text'>What is H.323?</title><content type='html'>H.323 is an ITU standard multimedia conferencing protocol, which includes voice, video, and data conferencing, for use over packet-switched networks.&lt;br /&gt;&lt;br /&gt;H.323 was the first standard for VoIP, but is being supplanted by SIP.&lt;br /&gt;&lt;br /&gt;&lt;p&gt;H.323 defines five components of a multimedia network:&lt;/p&gt;  &lt;ul&gt;&lt;li&gt;Terminals &lt;/li&gt;&lt;li&gt;Multipoint Control Units (MCUs)  &lt;/li&gt;&lt;li&gt;Gateways  &lt;/li&gt;&lt;li&gt;Gatekeeper  &lt;/li&gt;&lt;li&gt;Border Elements  &lt;/li&gt;&lt;/ul&gt;  &lt;p&gt;Terminals are telephone and PC equipment which connect end-users to the H.323 network.&lt;/p&gt;  &lt;p&gt;MCUs are responsible for managing conferences. MCU's consist of a Multipoint Controller (MC) and an optional Multipoint Processor (MP). The MC manages signaling and the MP manages media mixing and switching.&lt;/p&gt;  &lt;p&gt;Gateways nterface the H.323 network with other networks, including PSTN (Public Switched Telephone Network) and other H.323 networks. Gateways consist of a Media Gateway Controller (MGC) and a Media Gateway (MG). The MGC is is responsible for call signaling functions and the MG is responsible for media-related functions.&lt;/p&gt;  &lt;p&gt;Gatekeepers are responsible for admission control and address resolution. Gatekeepers are able to provide advanced services such as normally found in PBX's.&lt;/p&gt;  &lt;p&gt;Border Elements are positioned between two H.323 networks and assist in call routing and call authorization.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5134619096013223730-6276214819711659577?l=asterisk4arab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://asterisk4arab.blogspot.com/feeds/6276214819711659577/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5134619096013223730&amp;postID=6276214819711659577' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/6276214819711659577'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/6276214819711659577'/><link rel='alternate' type='text/html' href='http://asterisk4arab.blogspot.com/2008/09/what-is-h323.html' title='What is H.323?'/><author><name>Atef Digital</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5134619096013223730.post-2303262902893675465</id><published>2008-09-07T12:29:00.000-07:00</published><updated>2008-09-07T12:31:52.128-07:00</updated><title type='text'>What is IAX?</title><content type='html'>IAX is a call control protocol for VoIP.&lt;br /&gt;&lt;br /&gt;       IAX was designed to replace the earlier call control protocols, H.323 and SIP.&lt;br /&gt;&lt;br /&gt; IAX is much more bandwidth efficient than the competing VoIP call control protocols, enabling it to support more concurrent VoIP calls over the same amount of bandwidth. &lt;br /&gt;&lt;br /&gt;IAX traffic uses UDP port 4569.  The use of a single well-known port enables IAX to be compatible with NAT (Network Address Translation), which can be a serious difficulty for earlier VoIP call control protocols.&lt;br /&gt;&lt;br /&gt; IAX supports authentication using RSA public keys with the SHA-1 message digest algorithm for digital signatures.&lt;br /&gt;&lt;br /&gt; IAX was developed for the Asterisk PBX and originally stood for Inter-Asterisk eXchange. IAX is now supported by many other VoIP platforms.&lt;p&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5134619096013223730-2303262902893675465?l=asterisk4arab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://asterisk4arab.blogspot.com/feeds/2303262902893675465/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5134619096013223730&amp;postID=2303262902893675465' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/2303262902893675465'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/2303262902893675465'/><link rel='alternate' type='text/html' href='http://asterisk4arab.blogspot.com/2008/09/what-is-iax.html' title='What is IAX?'/><author><name>Atef Digital</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5134619096013223730.post-5598679201629213284</id><published>2008-09-07T12:28:00.000-07:00</published><updated>2008-09-07T12:29:45.045-07:00</updated><title type='text'>What is RTP?</title><content type='html'>RTP (Real-Time Transport Protocol) is used to encapsulate VoIP data packets inside UDP packets.&lt;br /&gt;&lt;br /&gt;&lt;p&gt;RTP is defined in &lt;a href="http://www.ietf.org/rfc/rfc3550.txt" rel="nofollow" target="_blank"&gt;RFC 3550 - RTP: A Transport Protocol for Real-Time Applications&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;RTP provides end-to-end network transport functions suitable for applications transmitting real-time data, such as audio, video or simulation data, over multicast or unicast network services. RTP does not address resource reservation and does not guarantee quality-of-service for real-time services. The data transport is augmented by a control protocol (RTCP) to allow monitoring of the data delivery in a manner scalable to large multicast networks, and to provide minimal control and identification functionality. RTP and RTCP are designed to be independent of the underlying transport and network layers. The protocol supports the use of RTP-level translators and mixers.&lt;/p&gt;  &lt;p&gt;Other RFCs which document RTP include:&lt;/p&gt;  &lt;ul&gt;&lt;li&gt;&lt;a href="http://www.ietf.org/rfc/rfc3551.txt" rel="nofollow" target="_blank"&gt;RFC 3551 - RTP Profile for Audio and Video Conferences with Minimal Control&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.ietf.org/rfc/rfc2032.txt" rel="nofollow" target="_blank"&gt;RFC 2032 - RTP Payload Format for H.261 Video Streams&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.ietf.org/rfc/rfc3158.txt" rel="nofollow" target="_blank"&gt;RFC 3158 - RTP Testing Strategies &lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.ietf.org/rfc/rfc3605.txt" rel="nofollow" target="_blank"&gt;RFC 3605 - Real Time Control Protocol (RTCP) attribute in Session Description Protocol (SDP)&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.ietf.org/rfc/rfc3611.txt" rel="nofollow" target="_blank"&gt;RFC 3611 - RTP Control Protocol Extended Reports (RTCP XR)&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.ietf.org/rfc/rfc3711.txt" rel="nofollow" target="_blank"&gt;RFC 3711 - The Secure Real-time Transport Protocol (SRTP)&lt;/a&gt; &lt;/li&gt;&lt;/ul&gt;   &lt;h2&gt;Books on RTP&lt;/h2&gt;    &lt;table&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://www.amazon.com/exec/obidos/redirect?tag=entrepreneu0a-20&amp;amp;path=tg/detail/-/0672322498" rel="nofollow" target="_blank"&gt; &lt;img src="http://images.amazon.com/images/P/0672322498.01.MZZZZZZZ.jpg" alt="RTP: Audio and Video for the Internet" border="0" /&gt;&lt;br /&gt;RTP: Audio and Video for the Internet&lt;/a&gt;&lt;/td&gt;&lt;td&gt; RTP (Real-time Transport Protocol) provides a framework for the delivery of audio and video across IP networks with unprecedented quality and reliability. In &lt;i&gt;RTP: Audio and Video for the Internet&lt;/i&gt;, Colin Perkins provides readers with detailed technical guidance for designing, implementing, and managing any RTP-based system.&lt;br /&gt;&lt;br /&gt;By bringing together crucial information that was previously scattered or difficult to find, Perkins has created an resource that enables network professionals to leverage RTP's benefits in a wide range of Voice-over IP (&lt;a href="http://www.tech-faq.com/voip.shtml"&gt;VoIP&lt;/a&gt;) and streaming media applications. Colin demonstrates how RTP supports audio/video transmission in IP networks, and shares strategies for maximizing performance, robustness, security, and privacy.&lt;br /&gt;&lt;br /&gt;Comprehensive, exceptionally clear, and filled with examples, &lt;i&gt;RTP: Audio and Video for the Internet&lt;/i&gt; is the definitive reference  on RTP for every audio/video application designer, developer, researcher, and administrator.&lt;br /&gt;&lt;br /&gt;Key coverage in the book includes: &lt;ul&gt;&lt;li&gt;RTP's goals, design philosophy, and relationships with other protocols &lt;/li&gt;&lt;li&gt;The psychology of human perception in the design of media delivery systems &lt;/li&gt;&lt;li&gt;RTP data transfer and control protocols, including framing, loss detection, reception quality feedback, and membership control &lt;/li&gt;&lt;li&gt;Media playout, timing, and synchronization, including lip synchronization &lt;/li&gt;&lt;li&gt;Mitigating network problems: error concealment, error correction, and congestion control &lt;/li&gt;&lt;li&gt;Optimizing performance over low-speed links: header compression, multiplexing, and tunneling &lt;/li&gt;&lt;li&gt;Integrating leading media codecs and standards into RTP systems &lt;/li&gt;&lt;li&gt;Securing RTP sessions: encryption, authentication, and the new secure RTP profile for wireless networks &lt;/li&gt;&lt;li&gt;Extensive references and practical examples &lt;/li&gt;&lt;/ul&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5134619096013223730-5598679201629213284?l=asterisk4arab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://asterisk4arab.blogspot.com/feeds/5598679201629213284/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5134619096013223730&amp;postID=5598679201629213284' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/5598679201629213284'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/5598679201629213284'/><link rel='alternate' type='text/html' href='http://asterisk4arab.blogspot.com/2008/09/what-is-rtp.html' title='What is RTP?'/><author><name>Atef Digital</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5134619096013223730.post-2318757934521068702</id><published>2008-09-07T12:27:00.000-07:00</published><updated>2008-09-07T12:28:35.898-07:00</updated><title type='text'>What is RSVP?</title><content type='html'>RSVP (Resource ReSerVation Protocol) is a protocol used in VoIP to manage QoS (Quality of Service).&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;RSVP works by requesting that required bandwidth and latency be "reserved" for the VoIP telephone call by every network device between the two endpoints.&lt;/p&gt;  &lt;p&gt;RSVP is defined in &lt;a href="http://www.ietf.org/rfc/rfc2205.txt" rel="nofollow" target="_blank"&gt;RFC 2205: Resource ReSerVation Protocol (RSVP)&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;RSVP is a unicast and multicast signaling protocol, designed to install and maintain reservation state information at each router along the path of a stream of data. &lt;/p&gt;&lt;p&gt;The RSVP protocol is used by a host to request specific qualities of service from the network for particular application data streams or flows. RSVP is also used by routers to deliver quality-of-service (&lt;a href="http://www.tech-faq.com/qos.shtml"&gt;QoS&lt;/a&gt;) requests to all nodes along the path(s) of the flows and to establish and maintain state to provide the requested service. RSVP requests will generally result in resources being reserved in each node along the data path.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5134619096013223730-2318757934521068702?l=asterisk4arab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://asterisk4arab.blogspot.com/feeds/2318757934521068702/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5134619096013223730&amp;postID=2318757934521068702' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/2318757934521068702'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/2318757934521068702'/><link rel='alternate' type='text/html' href='http://asterisk4arab.blogspot.com/2008/09/what-is-rsvp.html' title='What is RSVP?'/><author><name>Atef Digital</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5134619096013223730.post-5927333972628259510</id><published>2008-09-07T12:26:00.000-07:00</published><updated>2008-09-07T12:27:37.183-07:00</updated><title type='text'>What is MGCP?</title><content type='html'>MGCP (Media Gateway Control Protocol) is a protocol used within a Voice over IP (VoIP) system. This internal protocol was primarily developed to address the demands of carrier-based IP telephone networks. MGCP is a complementary protocol for both H.323 and SIP, which was designed as an internal protocol between the Media Gateway Controller and the Media Gateway. In MGCP, an MGC primarily handles all the call processing by linking with the IP network through constant communications with an IP signaling device, for example an SIP Server or an H.323 gatekeeper.&lt;br /&gt;&lt;p&gt;MGCP is comprised of a Call Agent, one MG (media gateway) which performs the conversion of media signals between circuits and packets, and one SG (signaling gateway) when connected to the PSTN (Public Switched Telephone Network). MGCP is widely used between elements of a decomposed multimedia gateway. The gateway has a Call Agent, which is comprised of the call control "intelligence" and a media gateway boasting the media functions, for example conversion from TDM voice to Voice over IP. &lt;/p&gt;  &lt;p&gt;Media Gateways feature endpoints for the Call Agent to create and manage media sessions with other multimedia endpoints. Endpoints are sources and/or sinks of data that can be physical or virtual. For creating physical endpoints, hardware installation is needed while virtual endpoint can be created using available software. &lt;/p&gt;  &lt;p&gt;Call Agents come with the capability of creating new connections, or modify an existing connection. Generally, a media gateway is a network element which provides conversion between the data packets carried over the Internet or other packet networks and the voice signals carried by telephone lines. The Call Agent provides instructions to the endpoints to check for any events and - if there is any - create signals. The endpoints are designed in such a way as to automatically communicate changes in service state to the Call Agent. The Call Agent can audit endpoints and the connections on endpoints. &lt;/p&gt;  &lt;h2&gt;MGCP Connections&lt;/h2&gt;  &lt;p&gt;MGCP connections can be point to point or multipoint. Point to point connection can be a connection between two endpoints for transmitting data between these endpoints. Once the connection is setup between two endpoints, data transfer takes place between the endpoints. In a multipoint connection, the connection is set up between an endpoint and a multipoint session. In a multipoint connection, connections can be created over various types of bearer networks. &lt;/p&gt;  &lt;h2&gt;MGCP Architecture &lt;/h2&gt;  &lt;p&gt;MGCP came to be a much sought after application of VoIP technology because it is not involved in the frustrating work of encoding, decoding, and transferring voice signals. Though, the MGCP Call Agent works as a software switch for a VoIP network, it really does nothing more than simply direct the media gateways and signaling gateways which perform all the work. One of the main tasks in building a Call Agent is implementing the numerous possibilities in the protocol. There are various informational RFCs which may explain the expected behavior under a wide range of conditions. &lt;/p&gt;  &lt;p&gt;In MGCP architecture, each and every command features a transaction ID, gets an acknowledgement and receives a response. This can be better understood as subscription architecture, as the Call Agent informs the media gateways and the signaling gateways as to what events it takes care of and what events it leaves unattended. &lt;/p&gt;  &lt;p&gt;MGCP packets are generally found wrapped in UDP port 2427. Similar to what you might find in TCP protocols, MGCP datagrams are formatted with whitespace. An MGCP packer can either be a command or a response. Commands start with a four-letter verb while "responses" start with a three number response code. &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5134619096013223730-5927333972628259510?l=asterisk4arab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://asterisk4arab.blogspot.com/feeds/5927333972628259510/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5134619096013223730&amp;postID=5927333972628259510' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/5927333972628259510'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/5927333972628259510'/><link rel='alternate' type='text/html' href='http://asterisk4arab.blogspot.com/2008/09/what-is-mgcp.html' title='What is MGCP?'/><author><name>Atef Digital</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5134619096013223730.post-6436499894535055424</id><published>2008-09-07T12:22:00.000-07:00</published><updated>2008-09-07T12:25:19.865-07:00</updated><title type='text'>What is SIP?</title><content type='html'>SIP (Session Initiation Protocol) is an IETF standard multimedia conferencing protocol, which includes voice, video, and data conferencing, for use over packet-switched networks.&lt;br /&gt;&lt;p&gt;SIP is an open standard replacement for the ITU's H.323.&lt;/p&gt;  &lt;p&gt;SIP is described in &lt;a href="http://www.ietf.org/rfc/rfc3261.txt" rel="nofollow" target="_blank"&gt;RFC 3621 - SIP: Session Initiation Protocol&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;SIP is an application-layer control (signaling) protocol for creating, modifying, and terminating sessions with one or more participants. These sessions include Internet telephone calls, multimedia distribution, and multimedia conferences.&lt;/p&gt;  &lt;p&gt;SIP invitations used to create sessions carry session descriptions that allow participants to agree on a set of compatible media types. SIP makes use of elements called proxy servers to help route requests to the user's current location, authenticate and authorize users for services, implement provider call-routing policies, and provide features to users. SIP also provides a registration function that allows users to upload their current locations for use by proxy servers. SIP runs on top of several different transport protocols.&lt;/p&gt;   &lt;p&gt;Other RFC's which document SIP include:&lt;/p&gt;  &lt;ul&gt;&lt;li&gt;&lt;a href="http://www.ietf.org/rfc/rfc3262.txt" rel="nofollow" target="_blank"&gt;RFC 3262 - Reliability of Provisional Responses in the Session Initiation Protocol (SIP)&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.ietf.org/rfc/rfc3263.txt" rel="nofollow" target="_blank"&gt;RFC 3263 - Session Initiation Protocol (SIP): Locating SIP Servers&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.ietf.org/rfc/rfc3264.txt" rel="nofollow" target="_blank"&gt;RFC 3264 - An Offer/Answer Model with the Session Description Protocol (SDP)&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.ietf.org/rfc/rfc3265.txt" rel="nofollow" target="_blank"&gt;RFC 3265 - Session Initiation Protocol (SIP)-Specific Event Notification &lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;h2&gt;Books on SIP&lt;/h2&gt;    &lt;table&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://www.amazon.com/exec/obidos/redirect?tag=entrepreneu0a-20&amp;amp;path=tg/detail/-/0071373403" rel="nofollow" target="_blank"&gt; &lt;img src="http://images.amazon.com/images/P/0071373403.01.MZZZZZZZ.jpg" alt="SIP Demystified" border="0" /&gt;&lt;br /&gt;SIP Demystified&lt;/a&gt;&lt;/td&gt;&lt;td&gt; State-of-the-art SIP primer SIP (Session Initiation Protocol) is the open standard that will make IP telephony an irresistible force in communications, doing for converged services what http does for the Web. SIP Demystified - authored by Gonzalo Camarillo, one of the contributors to SIP development in the IETF-;gives you the tools to keep your company and career competitive. This guide tells you why the standard is needed, what architectures it supports, and how it interacts with other protocols. As a bonus, you even get a context-setting background in data networking. Perfect if you're moving from switched voice into a data networking environment, here's everything you need to understand: &lt;ul&gt;&lt;li&gt;Where, why, and how SIP is used  &lt;/li&gt;&lt;li&gt;What SIP can do and deliver  &lt;/li&gt;&lt;li&gt;SIP's fit with other standards and systems  &lt;/li&gt;&lt;li&gt;How to plan implementations of SIP-enabled services  &lt;/li&gt;&lt;li&gt;How to size up and choose from available SIP products. &lt;/li&gt;&lt;/ul&gt; &lt;/td&gt;&lt;/tr&gt;  &lt;tr&gt;&lt;td colspan="2"&gt;&lt;hr /&gt;&lt;/td&gt;&lt;/tr&gt;  &lt;tr&gt;&lt;td&gt;&lt;a href="http://www.amazon.com/exec/obidos/redirect?tag=entrepreneu0a-20&amp;amp;path=tg/detail/-/1580536557" rel="nofollow" target="_blank"&gt; &lt;img src="http://images.amazon.com/images/P/1580536557.01.MZZZZZZZ.jpg" alt="SIP: Understanding the Session Initiation Protocol" border="0" /&gt;&lt;br /&gt;SIP: Understanding the Session Initiation Protocol&lt;/a&gt;&lt;/td&gt;&lt;td&gt; This newly revised edition of the ground-breaking Artech House bestseller, SIP: Understanding the Session Initiation Protocol offers a thorough and up-to-date understanding of this revolutionary technology for IP Telephony. Essential reading for anyone involved in the development and operation of voice or data networks, the second edition includes brand new discussions on the use of SIP as a wireless communications protocol and mobility technology. Professionals find details on the latest application areas such as instant messaging.&lt;br /&gt;&lt;br /&gt;The book explains how SIP is a highly-scalable and cost-effective way to offer new and exciting telecommunication feature sets. From an examination of SIP as a key component in the Internet multimedia conferencing architecture to a look at the future direction of SIP, practitioners get the knowledge they need to design "next generation" networks and develop new applications and software stacks. &lt;/td&gt;&lt;/tr&gt;  &lt;tr&gt;&lt;td colspan="2"&gt;&lt;hr /&gt;&lt;/td&gt;&lt;/tr&gt;  &lt;tr&gt;&lt;td&gt;&lt;a href="http://www.amazon.com/exec/obidos/redirect?tag=entrepreneu0a-20&amp;amp;path=tg/detail/-/0471413992" rel="nofollow" target="_blank"&gt; &lt;img src="http://images.amazon.com/images/P/0471413992.01.MZZZZZZZ.jpg" alt="Internet Communications Using SIP" border="0" /&gt;&lt;br /&gt;Internet Communications Using SIP&lt;/a&gt;&lt;/td&gt;&lt;td&gt;Session Initiation Protocol (SIP) has gained tremendous market acceptance since it became an official IETF Internet communications standard in 1999. SIP is the technology that makes it possible for multimedia communications sessions on the Web--ones that allow voice, video, chat, interactive games, and others to run all at the same time. Now that the deployment of real SIP networks is about to take off, two leaders of the commercial rollout deliver complete guidance on this exciting new technology. Geared to IT and networking professionals and decision-makers at Internet service providers (ISPs), as well as networking (NSPs) and application (ASPs) service providers, this book helps readers sort through the available vendor offerings and services to discover how to integrate and maximize SIP's power across their networks. &lt;/td&gt;&lt;/tr&gt;  &lt;tr&gt;&lt;td colspan="2"&gt;&lt;hr /&gt;&lt;/td&gt;&lt;/tr&gt;  &lt;tr&gt;&lt;td&gt;&lt;a href="http://www.amazon.com/exec/obidos/redirect?tag=entrepreneu0a-20&amp;amp;path=tg/detail/-/0974813001" rel="nofollow" target="_blank"&gt; &lt;img src="http://images.amazon.com/images/P/0974813001.01.MZZZZZZZ.jpg" alt="SIP Beyond VoIP: The Next Step in the IP Communications Revolution" border="0" /&gt;&lt;br /&gt;SIP Beyond VoIP: The Next Step in the IP Communications Revolution&lt;/a&gt;&lt;/td&gt;&lt;td&gt;VON Publishing's latest effort is SIP Beyond VoIP, an extraordinary 333-page effort that picks up where previous books have left off about SIP (Session Initiation Protocol), the protocol that has revolutionized the world of VoIP. The book's three distinguished authors relate in great detail how this versatile and extensible protocol has truly "moved beyond VoIP" and is now starting to have an impact on the whole telecommunication industry, including wireless and enterprise communications. Anyone who thinks that SIP has any real competitors will come away from this book in astonishment. "SIP Events" are the glue that even now integrates communications and applications. And "SIP Presence" may well be the "dial tone" of the 21st century. The book's advanced discussion of SIP interleaves with such associated topics as &lt;a href="http://www.tech-faq.com/dns.shtml"&gt;DNS&lt;/a&gt; (the Domain Name Service), ENUM (electronic numbering), NAT (Network Address Translation) and firewall traversal, security, Peer-to-Peer SIP (P2P SIP) networks, SIP-based conferencing/collaboration and even accessibility to communications for disabled people. This heavily illustrated, footnoted and fully-indexed book also has a foreword by Vinton Cerf, who writes: "It is my honest opinion that we have barely scratched the surface of the various applications to which SIP may be adapted. If we have seen 1% of the applications of SIP so far, then there are still 99% waiting to be invented, developed or deployed. The generality of SIP will make it a major workhorse the Internet of this century." If you think you know SIP, think again. Get this book its authors will set you straight about SIP, once and for all! &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;table&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5134619096013223730-6436499894535055424?l=asterisk4arab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://asterisk4arab.blogspot.com/feeds/6436499894535055424/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5134619096013223730&amp;postID=6436499894535055424' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/6436499894535055424'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/6436499894535055424'/><link rel='alternate' type='text/html' href='http://asterisk4arab.blogspot.com/2008/09/what-is-sip.html' title='What is SIP?'/><author><name>Atef Digital</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5134619096013223730.post-2431554104105298753</id><published>2008-09-07T12:20:00.000-07:00</published><updated>2008-09-07T12:22:03.625-07:00</updated><title type='text'>What is common VoIP hardware?</title><content type='html'>VoIP hardware falls into several categories:&lt;br /&gt;&lt;!-- END AD TAG --&gt;    &lt;!-- google_ad_section_end --&gt;   &lt;ul&gt;&lt;li&gt;VoIP Interface Cards for PCs &lt;/li&gt;&lt;li&gt;PC Telephones &lt;/li&gt;&lt;li&gt;VoIP Telephones &lt;/li&gt;&lt;li&gt;VoIP Switches &lt;/li&gt;&lt;li&gt;VoIP Gateways &lt;/li&gt;&lt;li&gt;VoIP Routers &lt;/li&gt;&lt;li&gt;VoIP PBX's &lt;/li&gt;&lt;li&gt;VoIP Telephones &lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;h2&gt;VoIP Interface Cards for PCs&lt;/h2&gt;  &lt;p&gt;VoIP Interface cards for PCs turn your PC into a very capable VoIP telephone.&lt;/p&gt;  &lt;p&gt;Leading manufacturers of VoIP interface cards for the PC include:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;Digium &lt;/li&gt;&lt;li&gt;VoiceTronix &lt;/li&gt;&lt;li&gt;Quicknet &lt;/li&gt;&lt;/ul&gt;  &lt;h2&gt;PC Telephones&lt;/h2&gt;  &lt;p&gt;PC Telephones are telephones which attach to your PC, usually via the USB port, and allow you to make telephone calls through your PC.&lt;/p&gt;   &lt;h2&gt;VoIP Telephones&lt;/h2&gt;  &lt;p&gt;VoIP telephones are telephones which attach directly to Ethernet network ports.&lt;/p&gt;    &lt;h2&gt;VoIP Switches&lt;/h2&gt;  &lt;p&gt;VoIP switches are devices which allow you to connect multiple phone lines to one Ethernet port. This allows every telephone which is connected to the switch to place VoIP calls.&lt;/p&gt;   &lt;h2&gt;VoIP Gateways&lt;/h2&gt;  &lt;p&gt;&lt;a href="http://www.tech-faq.com/voip-gateway.shtml"&gt;&lt;/a&gt;VoIP Gateways connect VoIP networks to the PSTN (Public Switched Telephone Network).&lt;/p&gt;   &lt;h2&gt;VoIP Routers&lt;/h2&gt;  &lt;p&gt;VoIP Routers route VoIP traffic in much the same way that regular routers route IP (Internet Protocol) traffic.&lt;/p&gt;   &lt;h2&gt;VoIP PBX's&lt;/h2&gt;  &lt;p&gt;VoIP PBX's are high-tech low-cost equivalents of traditional telephone PBX's. In addition to traditional PBX functionality, VoIP PBX's configure and manage VoIP network capabilities.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5134619096013223730-2431554104105298753?l=asterisk4arab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://asterisk4arab.blogspot.com/feeds/2431554104105298753/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5134619096013223730&amp;postID=2431554104105298753' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/2431554104105298753'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/2431554104105298753'/><link rel='alternate' type='text/html' href='http://asterisk4arab.blogspot.com/2008/09/what-is-common-voip-hardware.html' title='What is common VoIP hardware?'/><author><name>Atef Digital</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5134619096013223730.post-604081180659868393</id><published>2008-08-02T14:46:00.000-07:00</published><updated>2008-08-02T14:47:53.865-07:00</updated><title type='text'></title><content type='html'>&lt;img alt="Image" title="Image" src="http://www.voip-info.org/img/wiki_up//asterisk-logo.gif" style="" /&gt;&lt;br /&gt;Original Website - &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.asterisk.org/' );" href="http://www.asterisk.org/"&gt;http://www.asterisk.org/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Asterisk is a complete PBX in software.&lt;/strong&gt; It runs on &lt;a title="Linux" href="http://www.voip-info.org/wiki/view/Linux"&gt;Linux&lt;/a&gt;, &lt;a title="BSD" href="http://www.voip-info.org/wiki/view/BSD"&gt;BSD&lt;/a&gt;, &lt;a title="Windows" href="http://www.voip-info.org/wiki/view/Windows"&gt;Windows&lt;/a&gt; (emulated) and &lt;a title="MacOS X" href="http://www.voip-info.org/wiki/view/MacOS+X"&gt;OS X&lt;/a&gt; and provides all of the features you would expect from a PBX and more. Asterisk does voice over IP in four protocols, and can interoperate with almost all standards-based telephony equipment using relatively inexpensive hardware.&lt;br /&gt;&lt;br /&gt;Asterisk provides Voicemail services with Directory, Call Conferencing, Interactive Voice Response, Call Queuing. It has support for three-way calling, caller ID services, &lt;a title="ADSI" href="http://www.voip-info.org/wiki/view/ADSI"&gt;ADSI&lt;/a&gt;, &lt;a title="IAX" href="http://www.voip-info.org/wiki/view/IAX"&gt;IAX&lt;/a&gt;, &lt;a title="SIP" href="http://www.voip-info.org/wiki/view/SIP"&gt;SIP&lt;/a&gt;, &lt;a title="H.323" href="http://www.voip-info.org/wiki/view/H.323"&gt;H.323&lt;/a&gt; (as both client and gateway), &lt;a title="MGCP" href="http://www.voip-info.org/wiki/view/MGCP"&gt;MGCP&lt;/a&gt; (call manager only) and &lt;a title="SCCP" href="http://www.voip-info.org/wiki/view/SCCP"&gt;SCCP&lt;/a&gt;/Skinny. Check the Features section for a more complete list.&lt;br /&gt;&lt;br /&gt;Asterisk &lt;strong&gt;needs no additional hardware for Voice-over-IP&lt;/strong&gt;, although it does expect a non-standard driver that implements dummy hardware as a non-portable timing mechanism (for certain applications such as conferencing). A single (or multiple) VOIP provider(s) can be used for outgoing and/or incoming calls (outgoing and incoming calls can be handled through entirely different VOIP and/or telco providers)&lt;br /&gt;&lt;br /&gt;For interconnection with digital and analog telephony equipment, Asterisk supports a number of hardware devices, most notably all of the hardware manufactured by Asterisk's sponsor, &lt;a title="Digium" href="http://www.voip-info.org/wiki/view/Digium"&gt;Digium&lt;/a&gt;. Digium has single and quad span &lt;a title="T1" href="http://www.voip-info.org/wiki/view/T1"&gt;T1&lt;/a&gt; and &lt;a title="E1" href="http://www.voip-info.org/wiki/view/E1"&gt;E1&lt;/a&gt; interfaces for interconnection to &lt;a title="PRI" href="http://www.voip-info.org/wiki/view/PRI"&gt;PRI&lt;/a&gt; lines and &lt;a title="channel banks" href="http://www.voip-info.org/wiki/view/channel+banks"&gt;channel banks&lt;/a&gt;. In addition, single to quad port analog &lt;a title="FXO" href="http://www.voip-info.org/wiki/view/FXO"&gt;FXO&lt;/a&gt; and &lt;a title="FXS" href="http://www.voip-info.org/wiki/view/FXS"&gt;FXS&lt;/a&gt; cards are available and are popular for small installations. Other vendors' cards can be used for &lt;a title="BRI" href="http://www.voip-info.org/wiki/view/BRI"&gt;BRI&lt;/a&gt; (ISDN2) or quad- and octo- port &lt;a title="BRI" href="http://www.voip-info.org/wiki/view/BRI"&gt;BRI&lt;/a&gt; based upon CAPI compatible cards or HFC chipset cards.&lt;br /&gt;&lt;br /&gt;For interconnection with the cellular network (GSM or CDMA), Asterisk can use the &lt;a title="Celliax" href="http://www.voip-info.org/wiki/view/Celliax"&gt;Celliax&lt;/a&gt; channel driver or chan_mobile that is in the trunk now and there is also a unofficial backported version.&lt;br /&gt;&lt;br /&gt;Lastly, standalone devices are available to do a wide range of tasks including providing fxo and fxs ports that simply plug into the LAN and register to Asterisk as an available device.&lt;br /&gt;&lt;br /&gt;&lt;div class="bitbox"&gt;The current release versions of Asterisk are &lt;a title="Asterisk v1.2" href="http://www.voip-info.org/wiki/view/Asterisk+v1.2"&gt;1.2.27&lt;/a&gt;, &lt;a title="Asterisk v1.4" href="http://www.voip-info.org/wiki/view/Asterisk+v1.4"&gt;1.4.21.1&lt;/a&gt; and &lt;a title="Asterisk v1.6" href="http://www.voip-info.org/wiki/view/Asterisk+v1.6"&gt;1.6.0-beta9&lt;/a&gt;.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;This Wiki covers both the stable and the development branch of Asterisk. When adding new commands, applications and options, please also add a note on *when* this was added so that users may compare with their version date.&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;h1 id="News"&gt;News &lt;/h1&gt;&lt;ul&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.netsecuritysolutionsltda.com/spanish/index.php' );" href="http://www.netsecuritysolutionsltda.com/spanish/index.php?option=com_content&amp;amp;task=view&amp;amp;id=113&amp;amp;Itemid=153"&gt; Net Security Solutions - Nuevas Voces de Asterisk en Español de Colombia, Acento Neutro.&lt;/a&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.asteriskcolombia.com//' );" href="http://www.asteriskcolombia.com//?q=node/50"&gt; Asterisk Colombia&lt;/a&gt; &lt;/li&gt;&lt;/ul&gt;&lt;ul class="rsslist"&gt;&lt;li&gt;&lt;a href="http://www.venturevoip.com/news.php?rssid=2042"&gt;Astlinux-users: Please test: New AstLinux install script&lt;/a&gt; &lt;small&gt;(15 Jul 2008 | 8:25 pm PDT)&lt;/small&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.venturevoip.com/news.php?rssid=2041"&gt;Your comments: Astricon 2008 Balloon Trip&lt;/a&gt; &lt;small&gt;(15 Jul 2008 | 7:12 pm PDT)&lt;/small&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.venturevoip.com/news.php?rssid=2040"&gt;Asterisk PBX How-to Guide for Amazon EC2&lt;/a&gt; &lt;small&gt;(15 Jul 2008 | 6:53 pm PDT)&lt;/small&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.venturevoip.com/news.php?rssid=2039"&gt;app_swift v1.2.2 released for Asterisk 1.2.x code-base&lt;/a&gt; &lt;small&gt;(15 Jul 2008 | 6:32 pm PDT)&lt;/small&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.venturevoip.com/news.php?rssid=2038"&gt;A plan for span&lt;/a&gt; &lt;small&gt;(7 Jul 2008 | 5:59 pm PDT)&lt;/small&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.venturevoip.com/news.php?rssid=2037"&gt;AsteriskWatch FaceBook Application Completed&lt;/a&gt; &lt;small&gt;(7 Jul 2008 | 5:28 pm PDT)&lt;/small&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.venturevoip.com/news.php?rssid=2036"&gt;Dreams can come true&lt;/a&gt; &lt;small&gt;(7 Jul 2008 | 5:09 pm PDT)&lt;/small&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.venturevoip.com/news.php?rssid=2035"&gt;AsterPas ObjectPascal Based FastAGI Server goes Open Source&lt;/a&gt; &lt;small&gt;(7 Jul 2008 | 4:33 pm PDT)&lt;/small&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.venturevoip.com/news.php?rssid=2034"&gt;New Polycom SpectraLink 8002 Wifi SIP Handset&lt;/a&gt; &lt;small&gt;(7 Jul 2008 | 4:31 pm PDT)&lt;/small&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.venturevoip.com/news.php?rssid=2033"&gt;OLPC Sound Samples&lt;/a&gt; &lt;small&gt;(7 Jul 2008 | 4:30 pm PDT)&lt;/small&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt; 2008-07-16 - &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.yeastar.com ' );" href="http://www.yeastar.com/"&gt; Yeastar&lt;/a&gt; release their 16 ports analog card! &lt;/li&gt;&lt;li&gt; 2008-07-14 - Tutorial by voipphreak.ca, How to create Asterisk PBX dialplan in a visual way, &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.voipphreak.ca/2008/05/27/creating-visual-asterisk-dialplans-with-apstel-visual-dialplan-professional-part-i/' );" href="http://www.voipphreak.ca/2008/05/27/creating-visual-asterisk-dialplans-with-apstel-visual-dialplan-professional-part-i/"&gt;part one&lt;/a&gt;, &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.voipphreak.ca/2008/05/28/advanced-features-of-apstel-visual-dialplan-professional-part-ii/' );" href="http://www.voipphreak.ca/2008/05/28/advanced-features-of-apstel-visual-dialplan-professional-part-ii/"&gt;part two&lt;/a&gt;, &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.voipphreak.ca/2008/05/29/deploying-asterisk-dialplans-with-apstel-visual-dialplan-part-iii/' );" href="http://www.voipphreak.ca/2008/05/29/deploying-asterisk-dialplans-with-apstel-visual-dialplan-part-iii/"&gt;part three&lt;/a&gt; &lt;/li&gt;&lt;li&gt; 2008-07-10 - &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.zaprolink ' );" href="http://www.zaprolink/"&gt; Zaprolink&lt;/a&gt; release their high performance 4 ports anlog and 4 port E1!!! &lt;/li&gt;&lt;li&gt; 2008-07-09 - &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.openvox.com.cn ' );" href="http://www.openvox.com.cn/"&gt; OpenVox&lt;/a&gt;  Releases the Open Source Enterprise Embedded IPPBX Kit Based on x86 Architecture! &lt;/li&gt;&lt;li&gt; 2008-07-08 - &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.flagtech.net ' );" href="http://www.flagtech.net/"&gt; Flagtech&lt;/a&gt; release their 4 ports anlogu and single E1 and 4E1 card! &lt;/li&gt;&lt;li&gt; 2008-06-30 - &lt;a title="ZaKoTel" href="http://www.voip-info.org/wiki/view/ZaKoTel"&gt;ZaKoTel&lt;/a&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.astertools.com/products/asterboard' );" href="http://www.astertools.com/products/asterboard"&gt;asterBoard&lt;/a&gt; v1.0.4 released, including connectivity with FreePBX, trixbox and AsteriskNOW! &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.astertools.com/node/53' );" href="http://www.astertools.com/node/53"&gt;News article on astertools.com&lt;/a&gt;  &lt;/li&gt;&lt;li&gt; 2008-06-23 - &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.openvox.com.cn ' );" href="http://www.openvox.com.cn/"&gt; OpenVox&lt;/a&gt; New Product B100M Mini-PCI ISDN BRI Card Is Released Today! &lt;/li&gt;&lt;li&gt; 2008-06-18 - &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.noojee.com.au/Page/Package-Call-Recorder' );" href="http://www.noojee.com.au/Page/Package-Call-Recorder"&gt;Noojee Recorder 2.1&lt;/a&gt; released. Callcentre Recording solution with auditing, archival and multi-leg recording. &lt;/li&gt;&lt;li&gt; 2008-06-18 - &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.noojee.com.au/Page/AsterFax' );" href="http://www.noojee.com.au/Page/AsterFax"&gt;Noojee Fax 2.0&lt;/a&gt; (aka AsterFax) released. Commercial Email to Fax gateway with reliable fax driver for all Asterisk supported hardware. &lt;/li&gt;&lt;li&gt; 2008-06-18 - &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.noojee.com.au/Page/The-Receptionist-Console' );" href="http://www.noojee.com.au/Page/The-Receptionist-Console"&gt;Noojee Receptionist 2.01&lt;/a&gt; released. Optimized Receptionist console with support for multiple receptionist. &lt;/li&gt;&lt;li&gt; 2008-06-11 - &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.taa.com/products-vdex-40.html' );" href="http://www.taa.com/products-vdex-40.html"&gt;Vdex-40 Asterisk 4 FXO port Appliance&lt;/a&gt;: Vdex-40 - USA distributor &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.taa.com' );" href="http://www.taa.com/"&gt;TAA.com&lt;/a&gt;: Australian Manafacturer &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.technoco.biz' );" href="http://www.technoco.biz/"&gt;Technoco.biz&lt;/a&gt;. First appliance ever with dual cpu's  &lt;/li&gt;&lt;li&gt; 2008-06-05 - &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.pikatechnologies.com/english/view.asp' );" href="http://www.pikatechnologies.com/english/view.asp?x=498&amp;amp;id=102"&gt; Warp, the Pika Appliance now generally available&lt;/a&gt; &lt;/li&gt;&lt;li&gt; 2008-06-05 - &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.openvox.com.cn ' );" href="http://www.openvox.com.cn/"&gt; OpenVox&lt;/a&gt; has Now Released the PFM100-Power Feeding Converter for ISDN BRI Mini Card! &lt;/li&gt;&lt;li&gt; 2008-06-02 - &lt;a title="ZaKoTel" href="http://www.voip-info.org/wiki/view/ZaKoTel"&gt;ZaKoTel&lt;/a&gt; releases asterBoard, a new switchboard and operator GUI based on Flash. &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.astertools.com/products/asterboard' );" href="http://www.astertools.com/products/asterboard"&gt;asterBoard&lt;/a&gt; &lt;/li&gt;&lt;li&gt; 2008-05-15 - Watch videos on &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.youtube.com/user/telecomspecialist ' );" href="http://www.youtube.com/user/telecomspecialist"&gt; Building High-Performance VoIP Clusters with Asterisk/OpenSER&lt;/a&gt; on YouTube. &lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;after the 4&amp;amp;8 ports anolog cards,and we will release our high performance 16 ports anlog cards to add our product line,and we will have 1/4/8/16 ports anolog cards and 1/4 ports PRI cards..&lt;br /&gt;&lt;h2 id="StartingOut"&gt;Starting Out &lt;/h2&gt;&lt;h3 id="Books"&gt;Books &lt;/h3&gt;&lt;ul&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/asterisk.pbx.in/asterisk-book' );" href="http://asterisk.pbx.in/asterisk-book"&gt; Tutorial for Novice to get started with Asterisk - Day to day Plan&lt;/a&gt; &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.aw-bc.com/' );" href="http://www.aw-bc.com/"&gt;Addison-Wesley&lt;/a&gt; &lt;ul&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.the-asterisk-book.com/' );" href="http://www.the-asterisk-book.com/"&gt;The Asterisk Book&lt;/a&gt; - Practical Asterisk 1.4 - GNU FDL, &lt;span style="color: red;"&gt;completely available online&lt;/span&gt; &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.das-asterisk-buch.de/' );" href="http://www.das-asterisk-buch.de/"&gt;Das Asterisk Buch&lt;/a&gt; (German) - Asterisk 1.2 + 1.4 - GNU FDL, &lt;span style="color: red;"&gt;completely available online&lt;/span&gt; &lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.oreilly.com' );" href="http://www.oreilly.com/"&gt;O'Reilly Media&lt;/a&gt; &lt;ul&gt;&lt;li&gt; &lt;a href="http://www.voip-info.org/wiki/view/Asterisk%3A+The+Future+of+Telephony"&gt;Asterisk: The Future of Telephony&lt;/a&gt; - Brought To You By The &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.asteriskdocs.org' );" href="http://www.asteriskdocs.org/"&gt;Asterisk Documentation Project&lt;/a&gt; - &lt;span style="color: red;"&gt;FREE DOWNLOAD!&lt;/span&gt; &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.oreilly.com/catalog/switchingvoip/' );" href="http://www.oreilly.com/catalog/switchingvoip/"&gt;Switching to VoIP&lt;/a&gt; - Ted's book is full of Asterisk know-how &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.oreilly.com/catalog/t1survival' );" href="http://www.oreilly.com/catalog/t1survival"&gt;T1: A Survival Guide&lt;/a&gt; - Not specifically about Asterisk, but if you want to understand T1s, this is the book &lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.packtpub.com/index' );" href="http://www.packtpub.com/index"&gt;Packt Publishing&lt;/a&gt; &lt;ul&gt;&lt;li&gt; Latest Asterisk Book&lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.packtpub.com/asterisk/book ' );" href="http://www.packtpub.com/asterisk/book"&gt; Building Telephone Systems With Asterisk&lt;/a&gt; &lt;/li&gt;&lt;li&gt; Latest Asterisk eBook&lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.packtpub.com/asterisk/book ' );" href="http://www.packtpub.com/asterisk/book"&gt; Building Telephone Systems With Asterisk&lt;/a&gt; &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.packtpub.com/files/Asterisk_Chapter_Making_a_Plan_For_Deployment.pdf' );" href="http://www.packtpub.com/files/Asterisk_Chapter_Making_a_Plan_For_Deployment.pdf"&gt;Free Chapter&lt;/a&gt; from the Asterisk Book &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.packtpub.com/asterisk/book' );" href="http://www.packtpub.com/asterisk/book"&gt;Building Telephony Systems With Asterisk&lt;/a&gt; &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.packtpub.com/asterisk_it/book' );" href="http://www.packtpub.com/asterisk_it/book"&gt;Costruire Sistemi Telefonici con Asterisk&lt;/a&gt; Asterisk book in Italian released. &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.packtpub.com/asterisk_pt/book' );" href="http://www.packtpub.com/asterisk_pt/book"&gt;Construindo Sistemas de Telefonia com o Asterisk&lt;/a&gt; Asterisk book in Portugues released. &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.packtpub.com/asterisk_es/book' );" href="http://www.packtpub.com/asterisk_es/book"&gt;Construyendo Sistemas telefÃ³nicos con Asterisk&lt;/a&gt; Asterisk book in Spanish released. &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.packtpub.com/trix_box/book' );" href="http://www.packtpub.com/trix_box/book"&gt;TrixBox Made Easy&lt;/a&gt; book has just been Announced. &lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.asteriskguide.com' );" href="http://www.asteriskguide.com/"&gt;V.Office Networks&lt;/a&gt; &lt;ul&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.asteriskguide.com/asterisk-configuration-guide-english1.html' );" href="http://www.asteriskguide.com/asterisk-configuration-guide-english1.html"&gt;Asterisk Configuration Guide (English) - free chapters available&lt;/a&gt;. &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.asteriskguide.com/asterisk-guia-de-la-configuracion.html' );" href="http://www.asteriskguide.com/asterisk-guia-de-la-configuracion.html"&gt; Asterisk Guia de la Configuracion (Spanish) - free chapters available&lt;/a&gt;. &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.asteriskexperts.com.br/FreeChapters/Portugues/FreeChapters123pt.htm' );" href="http://www.asteriskexperts.com.br/FreeChapters/Portugues/FreeChapters123pt.htm"&gt; Asterisk Guia de ConfiguraÃ§Ã£o (Portuguese) - free chapters available&lt;/a&gt;. &lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;h3 id="Introduction"&gt;Introduction &lt;/h3&gt;&lt;ul&gt;&lt;li&gt; &lt;strong&gt;&lt;a title="Asterisk introduction" href="http://www.voip-info.org/wiki/view/Asterisk+introduction"&gt;Asterisk introduction&lt;/a&gt;&lt;/strong&gt;: An overview for new Asterisk administrators - &lt;span style="color: rgb(255, 0, 0);"&gt;THE PLACE TO START!!&lt;/span&gt; &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk-mirrors" href="http://www.voip-info.org/wiki/view/Asterisk-mirrors"&gt;Where to download Asterisk&lt;/a&gt; &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.asteriskglobe.blogspot.com/' );" href="http://www.asteriskglobe.blogspot.com/"&gt;Asterisk video training&lt;/a&gt; Asterisk and Linux step by step installation guide  &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.asterisktutorials.com/' );" href="http://www.asterisktutorials.com/"&gt;Asterisk video training&lt;/a&gt; Free videos on Asterisk, trixbox, and FreePBX &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.etech-training.co.uk/zen' );" href="http://www.etech-training.co.uk/zen"&gt;Asterisk training videos for trixbox&lt;/a&gt; From Download to Setting up Queues &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.millenigence.com/articles/asterisk-non-technical-review.pdf' );" href="http://www.millenigence.com/articles/asterisk-non-technical-review.pdf"&gt;Asterisk: A Non-Technical Review (pdf)&lt;/a&gt;: An overview for executives and managers &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk status" href="http://www.voip-info.org/wiki/view/Asterisk+status"&gt;News, Project status and roadmap&lt;/a&gt; &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk installation tips" href="http://www.voip-info.org/wiki/view/Asterisk+installation+tips"&gt;Asterisk installation&lt;/a&gt; &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk addons" href="http://www.voip-info.org/wiki/view/Asterisk+addons"&gt;Asterisk software addons&lt;/a&gt; &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk FAQ" href="http://www.voip-info.org/wiki/view/Asterisk+FAQ"&gt;FAQ and SEARCH helper&lt;/a&gt;: Look for answer for the question that bugs you here! &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk tips and tricks" href="http://www.voip-info.org/wiki/view/Asterisk+tips+and+tricks"&gt;Asterisk tips and tricks&lt;/a&gt;: Solutions to common problems, hints of what you can do with this powerful software &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.youtube.com/watch' );" href="http://www.youtube.com/watch?v=UP9b_FEZuUE"&gt;Systm 5 - Asterisk&lt;/a&gt;: Video @ YouTube &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.suvi.org/theory/asterisk.html' );" href="http://www.suvi.org/theory/asterisk.html"&gt;http://www.suvi.org/theory/asterisk.html&lt;/a&gt; Gives a good German introduction howto setup Asterisk quickly. &lt;/li&gt;&lt;li&gt; &lt;a title="VoIP User Groups" href="http://www.voip-info.org/wiki/view/VoIP+User+Groups"&gt;VoIP User Groups&lt;/a&gt;: Local resources in your area &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk Mailing Lists" href="http://www.voip-info.org/wiki/view/Asterisk+Mailing+Lists"&gt;Asterisk Mailing Lists&lt;/a&gt; &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.asteriskgeeks.com/' );" href="http://www.asteriskgeeks.com/"&gt;Asterisk IRC logs&lt;/a&gt;: #asterisk IRC logs &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/learn.clemsonlinux.org/' );" href="http://learn.clemsonlinux.org/"&gt;Linux 101&lt;/a&gt;: A beginners guide to using Linux &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.linux101.org/HomePage' );" href="http://www.linux101.org/HomePage"&gt;Linux 101&lt;/a&gt;: A small wiki with snippets of useful Linux info &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.xorcom.com/asterisk.html' );" href="http://www.xorcom.com/asterisk.html"&gt;Asterisk non-technical overview&lt;/a&gt; - General information and analysis. &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.asteriskguru.com' );" href="http://www.asteriskguru.com/"&gt;Asteriskguru Tutorials&lt;/a&gt; A huge collection of tutorials for asterisk. &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.blindhog.net/category/asterisk-voip/' );" href="http://www.blindhog.net/category/asterisk-voip/"&gt;Blindhog.net&lt;/a&gt; - Video Tutorials. &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.evtmedia.com/designersFAQ.htm' );" href="http://www.evtmedia.com/designersFAQ.htm"&gt;Development&lt;/a&gt; Which development environment is best for my voice app? (Asterisk, usually!) &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.voicepeeringforum.com/video' );" href="http://www.voicepeeringforum.com/video"&gt;Building VoIP Clusters using Asterisk (Video)&lt;/a&gt; &lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;h3 id="Hardware"&gt;Hardware &lt;/h3&gt;&lt;ul&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.asteriskglobe.blogspot.com/' );" href="http://www.asteriskglobe.blogspot.com/"&gt;Asterisk Hardware &lt;/a&gt; Asterisk and Linux step by step installation and hardware recommendations guide  &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk phones" href="http://www.voip-info.org/wiki/view/Asterisk+phones"&gt;Asterisk phones&lt;/a&gt;: Common phones in use together with Asterisk &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk hardware" href="http://www.voip-info.org/wiki/view/Asterisk+hardware"&gt;Asterisk Hardware&lt;/a&gt;: Hardware known to work with Asterisk &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk dimensioning" href="http://www.voip-info.org/wiki/view/Asterisk+dimensioning"&gt;Asterisk dimensioning&lt;/a&gt;: How big a processor do I need and what call load can my system handle? &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk hardware recommendations" href="http://www.voip-info.org/wiki/view/Asterisk+hardware+recommendations"&gt;Hardware use cases&lt;/a&gt;: Hardware recommendations for different needs &amp;amp; success stories &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk video" href="http://www.voip-info.org/wiki/view/Asterisk+video"&gt;Asterisk video&lt;/a&gt;: Video call support in Asterisk &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk text" href="http://www.voip-info.org/wiki/view/Asterisk+text"&gt;Asterisk text&lt;/a&gt;: Text communications support in Asterisk &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk legacy integration" href="http://www.voip-info.org/wiki/view/Asterisk+legacy+integration"&gt;Asterisk legacy integration&lt;/a&gt;: How to integrate Asterisk and an ordinary PBX &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk embedded systems" href="http://www.voip-info.org/wiki/view/Asterisk+embedded+systems"&gt;Asterisk Embedded Systems&lt;/a&gt;: Asterisk on no-frills hardware &lt;/li&gt;&lt;li&gt; &lt;a title="VoIP Gateways" href="http://www.voip-info.org/wiki/view/VoIP+Gateways"&gt;Asterisk and VoIP Gateways&lt;/a&gt;: A list of many manufacturers of VoIP gateways &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk and Cable Modems with embedded ATAs" href="http://www.voip-info.org/wiki/view/Asterisk+and+Cable+Modems+with+embedded+ATAs"&gt;Asterisk and Cable Modems with embedded ATAs&lt;/a&gt;: How to connect a embedded ATA to Asterisk &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk and Virtual Private/Dedicated Servers" href="http://www.voip-info.org/wiki/index.php?page=Asterisk+and+Virtual+Private%2FDedicated+Servers"&gt;Asterisk and Virtual Private/Dedicated Servers&lt;/a&gt;: How to run Asterisk on a VPS/VDS &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.asteriskmotherboards.com ' );" href="http://www.asteriskmotherboards.com/"&gt;Asterisk Hardware Compatibility Forum&lt;/a&gt; &lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;h3 id="Administrationandsystemlayout"&gt;Administration and system layout &lt;/h3&gt;&lt;ul&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.asteriskglobe.blogspot.com/' );" href="http://www.asteriskglobe.blogspot.com/"&gt;Asterisk video training&lt;/a&gt; Asterisk and Linux step by step installation guide  &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk fax" href="http://www.voip-info.org/wiki/view/Asterisk+fax"&gt;Asterisk fax&lt;/a&gt; Asterisk and Faxing &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk administration" href="http://www.voip-info.org/wiki/view/Asterisk+administration"&gt;Asterisk administration&lt;/a&gt; &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk dimensioning" href="http://www.voip-info.org/wiki/view/Asterisk+dimensioning"&gt;Asterisk dimensioning&lt;/a&gt;: What CPU do I need, how many concurrent calls does my hardware support? &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk at large" href="http://www.voip-info.org/wiki/view/Asterisk+at+large"&gt;Asterisk at large&lt;/a&gt;: Tips for large installations (SIP proxy, load balancing) &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk billing" href="http://www.voip-info.org/wiki/view/Asterisk+billing"&gt;Asterisk billing&lt;/a&gt; support &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk configuration from database" href="http://www.voip-info.org/wiki/view/Asterisk+configuration+from+database"&gt;Asterisk configuration from database&lt;/a&gt; &lt;/li&gt;&lt;li&gt; &lt;a title="STS Template Engine" href="http://www.voip-info.org/wiki/view/STS+Template+Engine"&gt;Asterisk configuration from template files&lt;/a&gt; &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk password files" href="http://www.voip-info.org/wiki/view/Asterisk+password+files"&gt;Asterisk password files&lt;/a&gt;: Where can you find users and passwords in Asterisk configuration files? &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk PBX functions" href="http://www.voip-info.org/wiki/view/Asterisk+PBX+functions"&gt;Asterisk PBX functions&lt;/a&gt;: Introduction that helps you find common PBX functions in Asterisk &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk QoS" href="http://www.voip-info.org/wiki/view/Asterisk+QoS"&gt;Asterisk QoS&lt;/a&gt;: How Asterisk supports QoS networking &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk groups" href="http://www.voip-info.org/wiki/view/Asterisk+groups"&gt;Asterisk groups&lt;/a&gt;: The various and confusing group concepts in Asterisk. &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk rollout tips" href="http://www.voip-info.org/wiki/view/Asterisk+rollout+tips"&gt;Asterisk rollout tips&lt;/a&gt;: Tips on how to move from testing to practical rollout. &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk security" href="http://www.voip-info.org/wiki/view/Asterisk+security"&gt;Asterisk security&lt;/a&gt;: Security in the PBX &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk encryption" href="http://www.voip-info.org/wiki/view/Asterisk+encryption"&gt;Asterisk encryption&lt;/a&gt;: About SRTP, TLS and IAX encryption &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk monitoring" href="http://www.voip-info.org/wiki/view/Asterisk+monitoring"&gt;Asterisk monitoring&lt;/a&gt;: Making sure it stays up &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk High Availability Solutions" href="http://www.voip-info.org/wiki/view/Asterisk+High+Availability+Solutions"&gt;Asterisk High Availability Solutions&lt;/a&gt;: Hardware and software solutions to increase availability. &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk Bootable CDROM" href="http://www.voip-info.org/wiki/view/Asterisk+Bootable+CDROM"&gt;Asterisk Bootable CDROM&lt;/a&gt;: Boot and run Asterisk from a CDROM &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk Install CDROM" href="http://www.voip-info.org/wiki/view/Asterisk+Install+CDROM"&gt;Asterisk Install CDROM&lt;/a&gt;: Simultaneously install an OS and Asterisk from one CDROM — easiest and quickest way to get Asterisk up and running. &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk OS Platforms" href="http://www.voip-info.org/wiki/view/Asterisk+OS+Platforms"&gt;Asterisk OS Platforms&lt;/a&gt;: What Operating Systems Asterisk works with &lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;h3 id="Configuration"&gt;Configuration &lt;/h3&gt;&lt;ul&gt;&lt;li&gt; &lt;a title="Asterisk - documentation of application commands" href="http://www.voip-info.org/wiki/view/Asterisk+-+documentation+of+application+commands"&gt;Asterisk - documentation of application commands&lt;/a&gt;: The complete cross-reference! &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.asteriskglobe.blogspot.com/' );" href="http://www.asteriskglobe.blogspot.com/"&gt;Asterisk video training&lt;/a&gt; Asterisk and Linux step by step installation guide  &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk functions" href="http://www.voip-info.org/wiki/view/Asterisk+functions"&gt;Asterisk Functions&lt;/a&gt;: The Functions used in 1.2 &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk config files" href="http://www.voip-info.org/wiki/view/Asterisk+config+files"&gt;Asterisk config files&lt;/a&gt;: Overview of the Asterisk configuration files &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk variables" href="http://www.voip-info.org/wiki/view/Asterisk+variables"&gt;Asterisk Variables&lt;/a&gt;: Variables used in configuration and dial plan &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk database" href="http://www.voip-info.org/wiki/view/Asterisk+database"&gt;Asterisk Database&lt;/a&gt;: The built-in database used in the dialplan &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk configuration from database" href="http://www.voip-info.org/wiki/view/Asterisk+configuration+from+database"&gt;Asterisk Configuration from database&lt;/a&gt; &lt;/li&gt;&lt;li&gt; &lt;a title="STS Template Engine" href="http://www.voip-info.org/wiki/view/STS+Template+Engine"&gt;Asterisk configuration from template files&lt;/a&gt; &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk AGI" href="http://www.voip-info.org/wiki/view/Asterisk+AGI"&gt;Asterisk AGI&lt;/a&gt;: Powerful programmatic scripting interface &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk AEL" href="http://www.voip-info.org/wiki/view/Asterisk+AEL"&gt;Asterisk AEL&lt;/a&gt;: Asterisk Extension Language &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk AEL2" href="http://www.voip-info.org/wiki/view/Asterisk+AEL2"&gt;Asterisk AEL2&lt;/a&gt;: Asterisk Extension Language - version 2 &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk Configurations for connecting with VOIP providers" href="http://www.voip-info.org/wiki/view/Asterisk+Configurations+for+connecting+with+VOIP+providers"&gt;Asterisk Configurations for connecting with VOIP providers&lt;/a&gt;: How to connect Asterisk to VOIP providers &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk Configuration Examples" href="http://www.voip-info.org/wiki/view/Asterisk+Configuration+Examples"&gt;Asterisk Configuration Examples&lt;/a&gt;: Complete Asterisk configuration examples from various users &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk Data Configuration" href="http://www.voip-info.org/wiki/view/Asterisk+Data+Configuration"&gt;Asterisk Data Configuration&lt;/a&gt;: Zaptel and Asterisk data and hybrid configuration &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk phones" href="http://www.voip-info.org/wiki/view/Asterisk+phones"&gt;Asterisk Configuration Notes for Specific Phones&lt;/a&gt; &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk Slimming" href="http://www.voip-info.org/wiki/view/Asterisk+Slimming"&gt;Asterisk Slimming&lt;/a&gt;:How can we slim-up about so many modules &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk tips and tricks" href="http://www.voip-info.org/wiki/view/Asterisk+tips+and+tricks"&gt;Asterisk tips and tricks&lt;/a&gt;: Many config tips &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.xorcom.com/tips.html' );" href="http://www.xorcom.com/tips.html"&gt;Asterisk Tips&lt;/a&gt; &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.xorcom.com/content/download/119/693/file/AB007_Echo.pdf' );" href="http://www.xorcom.com/content/download/119/693/file/AB007_Echo.pdf"&gt;Treating Echo in Asterisk Systems&lt;/a&gt; - short article about the reasons and solutions to echo issues with Asterisk &lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;h3 id="Management"&gt;Management &lt;/h3&gt;&lt;ul&gt;&lt;li&gt; &lt;a title="Startup options used when launching your Asterisk PBX" href="http://www.voip-info.org/wiki/view/Asterisk+options"&gt;Asterisk options&lt;/a&gt;: Command line switches when you start your Asterisk PBX &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk CLI" href="http://www.voip-info.org/wiki/view/Asterisk+CLI"&gt;Asterisk CLI&lt;/a&gt;: The interactive command prompt language &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk GUI" href="http://www.voip-info.org/wiki/view/Asterisk+GUI"&gt;Asterisk GUI&lt;/a&gt;: Web and other interfaces to Asterisk for management and configuration &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk manager API" href="http://www.voip-info.org/wiki/view/Asterisk+manager+API"&gt;Asterisk Manager API&lt;/a&gt;: The Asterisk Manager API &lt;/li&gt;&lt;li&gt; &lt;a href="http://www.voip-info.org/wiki/view/Aynchronous+Javascript+Asterisk+Manager+%28AJAM%29"&gt;Asynchronous Javascript Asterisk Manager (AJAM)&lt;/a&gt; - HTTP Manager API Access &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk Zeroconf Support" href="http://www.voip-info.org/wiki/view/Asterisk+Zeroconf+Support"&gt;Asterisk Zeroconf Support&lt;/a&gt;: Service Discovery for Asterisk using &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.zeroconf.org' );" href="http://www.zeroconf.org/"&gt;Zeroconf&lt;/a&gt; &lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;h3 id="Troubleshooting"&gt;Troubleshooting &lt;/h3&gt;&lt;ul&gt;&lt;li&gt; &lt;a title="Asterisk PSTN interface debugging" href="http://www.voip-info.org/wiki/view/Asterisk+PSTN+interface+debugging"&gt;Asterisk PSTN interface debugging&lt;/a&gt;: Echo problem, signal level issues, etc. &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk PCI bus Troubleshooting" href="http://www.voip-info.org/wiki/view/Asterisk+PCI+bus+Troubleshooting"&gt;Asterisk PCI bus Troubleshooting&lt;/a&gt;: Troubleshooting PCI bus issues (Especially those related to the Digium TDM400P) &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk debugging" href="http://www.voip-info.org/wiki/view/Asterisk+debugging"&gt;Asterisk debugging&lt;/a&gt;: How to debug Asterisk &lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;h4 id="GeneralReference"&gt;General Reference &lt;/h4&gt;&lt;ul&gt;&lt;li&gt; &lt;a title="Asterisk protocols" href="http://www.voip-info.org/wiki/view/Asterisk+protocols"&gt;Asterisk protocols&lt;/a&gt;: Supported protocols &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk channels" href="http://www.voip-info.org/wiki/view/Asterisk+channels"&gt;Asterisk channels&lt;/a&gt;: Supported voice channels &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk codecs" href="http://www.voip-info.org/wiki/view/Asterisk+codecs"&gt;Asterisk codecs&lt;/a&gt;: Supported codecs &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk International" href="http://www.voip-info.org/wiki/view/Asterisk+International"&gt;Asterisk International&lt;/a&gt;: How to make * work outside the USA &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk libpri" href="http://www.voip-info.org/wiki/view/Asterisk+libpri"&gt;Asterisk libpri&lt;/a&gt;: Open Source &lt;a title="PRI" href="http://www.voip-info.org/wiki/view/PRI"&gt;PRI&lt;/a&gt; library &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk Paging and Intercom" href="http://www.voip-info.org/wiki/view/Asterisk+Paging+and+Intercom"&gt;Asterisk Paging and Intercom&lt;/a&gt; &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk sound files" href="http://www.voip-info.org/wiki/view/Asterisk+sound+files"&gt;Asterisk sound files&lt;/a&gt;: Standard sound files and their meaning &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk multi-language" href="http://www.voip-info.org/wiki/view/Asterisk+multi-language"&gt;Asterisk multi-language&lt;/a&gt;: Tips on configurations for multi-language installations &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk Vertical Service Activation Codes for Zap Channels" href="http://www.voip-info.org/wiki/view/Asterisk+vertical+service+activation+codes"&gt;Asterisk vertical service activation codes&lt;/a&gt;: *XX codes used on Zap Channels &lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;&lt;h2 id="CountrySpecificInformation"&gt;Country-Specific Information &lt;/h2&gt;&lt;ul&gt;&lt;li&gt; &lt;a title="Australia Asterisk Details" href="http://www.voip-info.org/wiki/view/Australia+Asterisk+Details"&gt;Australia Asterisk Details&lt;/a&gt; &lt;/li&gt;&lt;li&gt; &lt;a title="UK Asterisk Details" href="http://www.voip-info.org/wiki/view/UK+Asterisk+Details"&gt;UK Asterisk Details&lt;/a&gt; &lt;/li&gt;&lt;li&gt; &lt;a title="India Specific Information" href="http://www.voip-info.org/wiki/view/India+Specific+Information"&gt;India Specific Information&lt;/a&gt; &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.asterisker.cn' );" href="http://www.asterisker.cn/"&gt;http://www.asterisker.cn&lt;/a&gt;: An Asterisk discussion forum in China &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.asterisk.lv' );" href="http://www.asterisk.lv/"&gt;http://www.asterisk.lv&lt;/a&gt;: Asterisk in Latvia &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/pbx-installers.com/dir/Asterisk/' );" href="http://pbx-installers.com/dir/Asterisk/"&gt;http://pbx-installers.com/dir/Asterisk/&lt;/a&gt;: Directory of Asterisk dealers and programmers in the United States &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.asteriskdiy.com' );" href="http://www.asteriskdiy.com/"&gt;http://www.asteriskdiy.com&lt;/a&gt;: An Asterisk WiKI in Thailand &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.asteriskexperts.com.br' );" href="http://www.asteriskexperts.com.br/"&gt;http://www.asteriskexperts.com.br&lt;/a&gt;: Portal, forum and tutorials about Asterisk in Brazil &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.asterisk-online.com.ar' );" href="http://www.asterisk-online.com.ar/"&gt;http://www.asterisk-online.com.ar&lt;/a&gt;: Foro Argentino de profesionales Asterisk. (&lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/forum.asterisk-online.com.ar' );" href="http://forum.asterisk-online.com.ar/"&gt;http://forum.asterisk-online.com.ar&lt;/a&gt;) &lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;&lt;h2 id="Commercialsupport"&gt;Commercial support &lt;/h2&gt;&lt;ul&gt;&lt;li&gt; &lt;a title="Asterisk system vendors" href="http://www.voip-info.org/wiki/view/Asterisk+system+vendors"&gt;Asterisk system vendors&lt;/a&gt;: Where to buy complete systems with Asterisk already installed &lt;/li&gt;&lt;li&gt; &lt;a title="Digium" href="http://www.voip-info.org/wiki/view/Digium"&gt;Digium&lt;/a&gt;, the creators of Asterisk and Asterisk-compatible hardware &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk consultants" href="http://www.voip-info.org/wiki/view/Asterisk+consultants"&gt;Asterisk consultants&lt;/a&gt;: A list of Asterisk consultants &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk Help Wanted" href="http://www.voip-info.org/wiki/view/Asterisk+Help+Wanted"&gt;Asterisk Help Wanted&lt;/a&gt;: Make a living of Asterisk &lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;h2 id="SIPServiceProviders"&gt;SIP Service Providers &lt;/h2&gt;&lt;ul&gt;&lt;li&gt; &lt;a title="SIP/IAX Services for Asterisk" href="http://www.voip-info.org/wiki/index.php?page=SIP%2FIAX+Services+for+Asterisk"&gt;SIP/IAX Services for Asterisk&lt;/a&gt;: Where to obtain VoIP Services for Asterisk Platform &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.axvoice.com/voip-asterisk-pbx.html ' );" href="http://www.axvoice.com/voip-asterisk-pbx.html"&gt; Voip Asterisk&lt;/a&gt; &lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;h2 id="UserGroups"&gt;User Groups &lt;/h2&gt;&lt;ul&gt;&lt;li&gt; &lt;a title="Asterisk User Groups" href="http://www.voip-info.org/wiki/view/Asterisk+User+Groups"&gt;Asterisk User Groups&lt;/a&gt; Hang out with Asteristas in your area! &lt;/li&gt;&lt;li&gt; &lt;a title="VoIP User Groups" href="http://www.voip-info.org/wiki/view/VoIP+User+Groups"&gt;VoIP User Groups&lt;/a&gt;: Local resources in your area &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk Army" href="http://www.voip-info.org/wiki/view/Asterisk+Army"&gt;Asterisk Army&lt;/a&gt;: Asterisk User Map - Forum &lt;/li&gt;&lt;li&gt; &lt;a title="AsteriskCounter" href="http://www.voip-info.org/wiki/view/AsteriskCounter"&gt;AsteriskCounter&lt;/a&gt;: Page that counts how many users uses Asterisk &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk Professionals" href="http://www.voip-info.org/wiki/view/Asterisk+Professionals"&gt;Asterisk Professionals&lt;/a&gt;: Certified Asterisk Professionals and Instructors &lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;h2 id="WeeklySIPAsteriskUsersConference"&gt;Weekly SIP Asterisk Users Conference &lt;/h2&gt;&lt;ul&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.x2z.eu/' );" href="http://www.x2z.eu/"&gt;x2z.eu&lt;/a&gt; THis conference is open to users at all levels of asterisk expertise &lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;h2 id="HowtosandTutorials"&gt;Howtos and Tutorials &lt;/h2&gt;&lt;ul&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.8774e4voip.com/kb.asp' );" href="https://www.8774e4voip.com/kb.asp?ID=2"&gt;BLF Tutorial for Asterisk PBX&lt;/a&gt; and Linksys SPA962/932 &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.8774e4voip.com/kb.asp' );" href="https://www.8774e4voip.com/kb.asp?ID=24"&gt;How to: Snom M3 and the Web UI (Simple)&lt;/a&gt; &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.asterikast.com' );" href="http://www.asterikast.com/"&gt;http://www.asterikast.com&lt;/a&gt; Asterikast.com Offering a free video tutorial for Asterisk. &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.asteriskguru.com/tutorials/' );" href="http://www.asteriskguru.com/tutorials/"&gt;Asterisk Tutorials&lt;/a&gt; A wide variety of Asterisk Tutorials from AsteriskGuru.com &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.digitalni.com.au/articles/openser' );" href="http://www.digitalni.com.au/articles/openser"&gt;Openser Article&lt;/a&gt; A discussion regarding Asterisk, OpenSER and PABX features in WAN environments &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.astrecipes.net' );" href="http://www.astrecipes.net/"&gt;http://www.astrecipes.net&lt;/a&gt; A wiki about ready-to-run Asterisk recipes &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.digiumcards.com/asterisearch.html' );" href="http://www.digiumcards.com/asterisearch.html"&gt;Asterisk "How To" Search Tool&lt;/a&gt; Uses Google -No Ads - Just Asterisk information from all the best sites! &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk Voicemail Notify for Support Numbers" href="http://www.voip-info.org/wiki/view/Asterisk+Voicemail+Notify+for+Support+Numbers"&gt;Asterisk Voicemail Notify for Support Numbers&lt;/a&gt;: Asterisk Voicemail Notify for Support Numbers &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/asterisk.pbx.in/asterisk-book' );" href="http://asterisk.pbx.in/asterisk-book"&gt; Tutorial for Novice to get started with Asterisk - Day to day Plan&lt;/a&gt; &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.asteriskguru.com' );" href="http://www.asteriskguru.com/"&gt;Collection of tutorials (easy to difficult) for asterisk&lt;/a&gt; &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk auto-dial out" href="http://www.voip-info.org/wiki/view/Asterisk+auto-dial+out"&gt;Asterisk auto-dial out&lt;/a&gt;: How to make your PBX dial out automatically &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.len.ro/work/tools/setting-up-a-voip-platform-for-distributed-sales-force/' );" href="http://www.len.ro/work/tools/setting-up-a-voip-platform-for-distributed-sales-force/"&gt;Setting up a small scale solution for distributed sales force&lt;/a&gt; A practical example. &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk Cisco 79XX XML Services" href="http://www.voip-info.org/wiki/view/Asterisk+Cisco+79XX+XML+Services"&gt;Asterisk Cisco 79XX XML Services&lt;/a&gt;: How-To Create XML scripts for Cisco 79XX Phones &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk Cisco CallManager Integration" href="http://www.voip-info.org/wiki/view/Asterisk+Cisco+CallManager+Integration"&gt;Asterisk Cisco CallManager Integration&lt;/a&gt;: How-To integrate Asterisk with Cisco CallManager &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk Cisco CallManager Express Integration" href="http://www.voip-info.org/wiki/view/Asterisk+Cisco+CallManager+Express+Integration"&gt;Asterisk Cisco CallManager Express Integration&lt;/a&gt;: How-To integrate Asterisk with Cisco CallManager Express &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.asterisktutorials.com' );" href="http://www.asterisktutorials.com/"&gt;Asterisk Tutorials&lt;/a&gt; - Free video tutorials for Asterisk, trixBox, and FreePBX &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.pasewaldt.com/cme/cme_index.htm' );" href="http://www.pasewaldt.com/cme/cme_index.htm"&gt;Asterisk Cisco CallManager Express Integration&lt;/a&gt;: How-To set up Asterisk Voicemail &amp;amp; IVR with CME &lt;/li&gt;&lt;li&gt; &lt;a class="external" onclick="javascript: pageTracker._trackPageview('/outgoing/wikipages/www.asteriskguru.com/tutorials/xlite_softphone.html' );" href="http://www.asteriskguru.com/tutorials/xlite_softphone.html"&gt;Asterisk and the X-Lite SIP softphone&lt;/a&gt;: How-To set up Asterisk for X-Lite software Phone &lt;/li&gt;&lt;li&gt; &lt;a title="Asterisk Clarent Class 5 Call Manager" href="http://www.voip-info.org/wiki/view/Asterisk+Clarent+Class+5+Call+Manager"&gt;Asterisk Clarent Class 5 Call Manager&lt;/a&gt; : H &lt;/li&gt;&lt;li&gt; &lt;a title="Use Asterisk for Nagios Notifications" href="http://www.voip-info.org/wiki/view/Use+Asterisk+for+Nagios+Notifications"&gt;Use Asterisk for Nagios Notifications&lt;/a&gt; How-To use Asterisk for Nagios Notifications&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5134619096013223730-604081180659868393?l=asterisk4arab.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://asterisk4arab.blogspot.com/feeds/604081180659868393/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5134619096013223730&amp;postID=604081180659868393' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/604081180659868393'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5134619096013223730/posts/default/604081180659868393'/><link rel='alternate' type='text/html' href='http://asterisk4arab.blogspot.com/2008/08/image-original-website-httpwww.html' title=''/><author><name>Atef Digital</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
