Views

Difference between revisions of "Asterisk Feature Example Configuration"

The Wiki of Unify contains information on clients and devices, communications systems and unified communications. - Unify GmbH & Co. KG is a Trademark Licensee of Siemens AG.

Jump to: navigation, search
 
 
(12 intermediate revisions by 3 users not shown)
Line 1: Line 1:
== About this page ==
+
This page contains the [[Asterisk]] system configuration. Every example in the Asterisk feature pages are based on the same test configuration. This page gives all information about the configuration parameters.
 
 
This page contains the Asterisk system configuration. Every example in the Asteisk feature pages are based on the same test configuration. This page gives all information about the configuration paramters.
 
  
 
== System Configuration ==
 
== System Configuration ==
  
The system is buit up with an Asterisk Gemeinschaft configuration:
+
The system is built up with an Asterisk community configuration:
 
 
  
 
{|
 
{|
Line 23: Line 20:
 
|}
 
|}
  
 
+
The following persons are present in the dial plan. These are imaginary persons. Any similarities to living persons are accidental and not known by the author.
Following persons are used in the dial plan. These are imaginary persons. Any similarities to living persons are accidental and not known by the author.
 
 
 
  
 
{|
 
{|
Line 48: Line 43:
 
| 192.168.0.248
 
| 192.168.0.248
 
|}
 
|}
 +
 +
== Auto Answer ==
 +
 +
When automatic call answering is allowed on the phone, automatic call answering can be requested from within the incoming call via the SIP Alert-Info header. In the Asterisk extensions.conf file, the SIPAddHeader function must be programmed like this:
 +
<code>SIPAddHeader("Alert-Info:&lt;http://example.com&gt;\;info=alert-autoanswer")</code>
 +
 +
== See also ==
 +
 +
* [[OpenStage and Asterisk]]

Latest revision as of 14:07, 28 September 2010

This page contains the Asterisk system configuration. Every example in the Asterisk feature pages are based on the same test configuration. This page gives all information about the configuration parameters.

System Configuration

The system is built up with an Asterisk community configuration:

Parameter Value Comment
Asterisk IP Address 192.168.0.10 There is only one Asterisk server used
MWI Number 80

The following persons are present in the dial plan. These are imaginary persons. Any similarities to living persons are accidental and not known by the author.

Person Phone Number Phone IP Address
Bob Demo 222 192.168.0.246
Joe Demo 333 192.168.0.249
Leo Demo 444 192.168.0.247
Alice Demo 555 192.168.0.248

Auto Answer

When automatic call answering is allowed on the phone, automatic call answering can be requested from within the incoming call via the SIP Alert-Info header. In the Asterisk extensions.conf file, the SIPAddHeader function must be programmed like this: SIPAddHeader("Alert-Info:<http://example.com>\;info=alert-autoanswer")

See also