This is a collection of download URLs to the current versions of Asterisk and related packages for my personal reference and for public enjoyment.
For a timeline go to Asterisk versions timeline.
| Date | Download | Info | wget * |
|---|---|---|---|
| 2010 Aug 10 | Asterisk 1.4.35 | ChangeLog | URL, Version |
| 2010 Jul 23 | Asterisk 1.4.34 |
| Date | Download | Info | wget * |
|---|---|---|---|
| 2010 Apr 15 | Asterisk Addons 1.4.11 | ChangeLog | URL, Version |
| 2009 Dec 02 | Asterisk Addons 1.4.10 | ChangeLog |
| Date | Download | Info | wget * |
|---|---|---|---|
| 2008 Sep 09 | Zaptel 1.4.12.1 | ChangeLog | URL, Version |
| 2008 Sep 03 | Zaptel 1.4.12 | ChangeLog |
| Date | Download | Info | wget * |
|---|---|---|---|
| 2010 Sep 01 | LibPRI 1.4.11.4 | URL, Version | |
| 2010 Jun 29 | LibPRI 1.4.11.3 | ChangeLog |
| Date | Download | Info | wget * |
|---|---|---|---|
| 2010 Aug 10 | Asterisk 1.6.2.11 | ChangeLog | URL, Version |
| 2010 Jul 23 | Asterisk 1.6.2.10 |
| Date | Download | Info | wget * |
|---|---|---|---|
| 2010 Apr 15 | Asterisk Addons 1.6.2.1 | ChangeLog | URL, Version |
| 2009 Dec 18 | Asterisk Addons 1.6.2.0 | ChangeLog |
| Date | Download | Info | wget * |
|---|---|---|---|
| 2010 Sep 01 | Dahdi linux 2.4.0 | ChangeLog | URL, Version |
| 2010 May 26 | Dahdi linux 2.3.0.1 | ChangeLog |
| Date | Download | Info | wget * |
|---|---|---|---|
| 2010 Sep 01 | Dahdi tools 2.4.0 | ChangeLog | URL, Version |
| 2010 Apr 13 | Dahdi tools 2.3.0 | ChangeLog |
Most installation instructions for Asterisk either use
cd /usr/src/ http://downloads.digium.com/pub/asterisk/releases/asterisk-1.4.19.tar.gz tar -xzf asterisk-1.4.19.tar.gz cd asterisk-1.4.19/
where the version is never up to date so the reader can't simply copy & paste the command into their shell. Or they tell you to
cd /usr/src/ http://downloads.digium.com/pub/asterisk/asterisk-1.4-current.tar.gz tar -xzf asterisk-*.tar.gz cd asterisk-*/
which is not what the author intended if you did not remove any older downloads first.
cd /usr/src/ version=`wget -q -O - http://www.kempgen.net/asterisk/current/version/asterisk-1.4`
Your shell evaluates the second line to version=1.4.19
(or whatever the current version of Asterisk may be).
echo ${version}
wget -c http://downloads.digium.com/pub/asterisk/releases/asterisk-${version}.tar.gz
tar -xzf asterisk-${version}.tar.gz
cd asterisk-${version}/
If you are able to figure it out yourself and all you need is the tarball but don't want to look up the current version:
wget -c `wget -q -O - http://www.kempgen.net/asterisk/current/url/asterisk-1.4`
For a complete walkthrough see
The Asterisk Book - Installation instructions for Asterisk
(English, "unstable") or
Das Asterisk Buch - Installationsanleitungen für Asterisk
(German).
last modified: 01 Sep 2010