Difference between revisions of "Structure of Config Files"

From AllStarLink Wiki
Jump to navigation Jump to search
imported>Wd6awp
imported>Wd6awp
Line 1: Line 1:
 
Configuration files have a simple structure consisting of two parts, the stanza and key/value pairs.
 
Configuration files have a simple structure consisting of two parts, the stanza and key/value pairs.
# A stanza is a section of the config file. It starts with a name (or number) surrounded by square brackets on a line by itself. A stanza is also called a context in Asterisk PBX terminology. A config file will have one or more stanza. Each stanza continues until the next stanza or end of file. Stanzas contain one or more ker/value pairs.  
+
# A stanza is a section of the config file. It starts with a name (or number) surrounded by square brackets on a line by itself. A config file will have one or more stanza. Each stanza continues until the next stanza or end of file. Stanzas contain one or more ker/value pairs.  
 
# Key/value pairs set various values such as the ID of the node.
 
# Key/value pairs set various values such as the ID of the node.
  
Line 12: Line 12:
 
idrecording = |iW1XYZ
 
idrecording = |iW1XYZ
 
</pre>
 
</pre>
 +
 +
''Note:'' A stanza is also called a context in Asterisk PBX terminology, particularly related to the dialplan.

Revision as of 18:35, 9 October 2017

Configuration files have a simple structure consisting of two parts, the stanza and key/value pairs.

  1. A stanza is a section of the config file. It starts with a name (or number) surrounded by square brackets on a line by itself. A config file will have one or more stanza. Each stanza continues until the next stanza or end of file. Stanzas contain one or more ker/value pairs.
  2. Key/value pairs set various values such as the ID of the node.

In this example of two nodes the stanza is the node number and the key/value pair sets the CW ID:

[1998]
idrecording = |iW1ABC

[1999]
idrecording = |iW1XYZ

Note: A stanza is also called a context in Asterisk PBX terminology, particularly related to the dialplan.