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.
Hans.zeiner (talk | contribs) |
|||
(11 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | + | 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 | ||
== System Configuration == | == System Configuration == | ||
− | The system is | + | 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. | |
− | |||
− | |||
− | |||
{| | {| | ||
Line 50: | Line 44: | ||
|} | |} | ||
+ | == 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:<http://example.com>\;info=alert-autoanswer")</code> | ||
== See also == | == 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")