Book Image

Asterisk 1.6

Book Image

Asterisk 1.6

Overview of this book

Asterisk is a powerful and flexible open source framework for building feature-rich telephony systems. As a Private Branch Exchange (PBX) which connects one or more telephones, and usually connects to one or more telephone lines, Asterisk offers very advanced features, including extension-to-extension calls, queues, ring groups, line trunking, call distribution, call detail rerecords, and call recording. This book will show you how to build a telephony system for your home or business using this open source application. 'Asterisk 1.6' takes you step-by-step through the process of installing and configuring Asterisk. It covers everything from establishing your deployment plan to creating a fully functional PBX solution. Through this book you will learn how to connect employees from all over the world as well as streamline your callers through Auto Attendants (IVR) and Ring Groups.This book is all you need to understand and use Asterisk to build the telephony system that meets your need. You will learn how to use the many features that Asterisk provides you with. It presents example configurations for using Asterisk in three different scenarios: for small and home offices, small businesses, and Hosted PBX. Over the course of ten chapters, this book introduces you to topics as diverse as Public Switched Telephony Network (PSTN), Voice over IP Connections (SIP / IAX), DAHDI, libpri, through to advanced call distribution, automated attendants, FreePBX, and asterCRM. With an engaging style and excellent way of presenting information, this book makes a complicated subject very easy to understand.
Table of Contents (15 chapters)
Asterisk 1.6
Credits
About the Authors
About the Reviewer
Preface

DAHDI interfaces


For this section, you need the details of the analog lines and terminals that you set out in Chapter 2. For our DAHDI interfaces, we will be modifying two configuration files: /etc/dahdi/system.conf and /etc/asterisk/chan_dahdi.conf.

system.conf

As we know, the system.conf file is in /etc/dhadi. We can modify it in a text editor of our choice.

As we make changes to this file, we will have to force the DAHDI drivers to re-read the configuration files in order to detect the changes. If our system is configured to start the DAHDI hardware at boot time, we can accomplish this by running:

$ /etc/init.d/dahdi stop
$ /etc/init.d/dahdi start

However, if we decide not to start DAHDI interfaces at boot time, we can implement our changes as we go by running:

$ dahdi_cfg

In order to get more information, it is often helpful for us to use verbose flags. The more instances of v we use, the more verbose the output will be. So, we may wish to use:

$ dahdi_cfg —vvv

Note

Changes to the system...