[Asterisk-code-review] pbx dundi: Update sample config documentation. (asterisk[master])
Richard Mudgett
asteriskteam at digium.com
Fri Aug 17 14:39:08 CDT 2018
Richard Mudgett has uploaded this change for review. ( https://gerrit.asterisk.org/9937
Change subject: pbx_dundi: Update sample config documentation.
......................................................................
pbx_dundi: Update sample config documentation.
Change-Id: I33d0ad0611c2124ca3440f0f811fa0f45e4e2849
---
M configs/samples/dundi.conf.sample
1 file changed, 34 insertions(+), 27 deletions(-)
git pull ssh://gerrit.asterisk.org:29418/asterisk refs/changes/37/9937/1
diff --git a/configs/samples/dundi.conf.sample b/configs/samples/dundi.conf.sample
index 70f97d4..b97d3b2 100644
--- a/configs/samples/dundi.conf.sample
+++ b/configs/samples/dundi.conf.sample
@@ -30,27 +30,27 @@
; See https://wiki.asterisk.org/wiki/display/AST/IP+Quality+of+Service for a description of the tos parameter.
;tos=ef
;
-; Our entity identifier (Should generally be the MAC address of the
+; Our entity identifier. (It should generally be the MAC address of the
; machine it's running on. Defaults to the first eth address, but you
; can override it here, as long as you set it to the MAC of *something*
-; you own!) The EID can be overridden by a setting in asterisk.conf,
+; you own!) The EID can be overridden by a setting in asterisk.conf
; or by setting this option.
;
;entityid=00:07:E9:3B:76:60
;
-; Peers shall cache our query responses for the specified time,
-; given in seconds. Default is 3600.
+; Peers shall cache our query responses for the specified time
+; in seconds. Default is 3600.
;
;cachetime=3600
;
-; This defines the max depth in which to search the DUNDi system.
+; This defines the max depth (hops) in which to search the DUNDi system.
; Note that the maximum time that we will wait for a response is
; (2000 + 200 * ttl) ms.
;
ttl=32
;
-; If we don't get ACK to our DPDISCOVER within 2000ms, and autokill is set
-; to yes, then we cancel the whole thing (that's enough time for one
+; If we don't get ACK to our DPDISCOVER within 2000ms and autokill is set
+; to yes then we cancel the whole thing (that's enough time for one
; retransmission only). This is used to keep things from stalling for a long
; time for a host that is not available, but would be ill advised for bad
; connections. In addition to 'yes' or 'no' you can also specify a number
@@ -66,7 +66,7 @@
;secretpath=dundi
;
; The 'storehistory' option (also changeable at runtime with
-; 'dundi store history' and 'dundi no store history') will
+; 'dundi store history on' and 'dundi store history off') will
; cause the DUNDi engine to keep track of the last several
; queries and the amount of time each query took to execute
; for the purpose of tracking slow nodes. This option is
@@ -83,7 +83,7 @@
; Agreement (GPA) if you are a member of the DUNDi E.164
; Peering System.
;
-; dundi_context => local_context,weight,tech,dest[,options]]
+; dundi_context => [local_context,weight,tech,dest{,options}]
;
; 'dundi_context' is the name of the context being requested
; within the DUNDi request
@@ -97,14 +97,14 @@
; with a lower weight are tried first. Note that the weight has a
; special meaning in the e164 context - see the GPA for more details.
;
-; 'tech' is the technology to use (IAX, SIP, H323)
+; 'tech' is the technology to use (IAX2, SIP, H323)
;
-; 'dest' is the destination to supply for reaching that number. The
-; following variables can be used in the destination string and will
-; be automatically substituted:
+; 'dest' is the Dial application's channel technology resource destination
+; to supply for reaching that number. The following variables can be used
+; in the destination string and will be automatically substituted:
; ${NUMBER}: The number being requested
; ${IPADDR}: The IP address to connect to
-; ${SECRET}: The current rotating secret key to be used
+; ${SECRET}: The current IAX2 rotating secret key to be used
;
; Further options may include:
;
@@ -122,12 +122,13 @@
; There *must* exist an entry in mappings for DUNDi to respond
; to any request, although it may be empty.
;
+;empty_context =>
+;
;e164 => dundi-e164-canonical,0,IAX2,dundi:${SECRET}@${IPADDR}/${NUMBER},nounsolicited,nocomunsolicit,nopartial
;e164 => dundi-e164-customers,100,IAX2,dundi:${SECRET}@${IPADDR}/${NUMBER},nounsolicited,nocomunsolicit,nopartial
;e164 => dundi-e164-via-pstn,400,IAX2,dundi:${SECRET}@${IPADDR}/${NUMBER},nounsolicited,nocomunsolicit,nopartial
-
+;
;digexten => default,0,IAX2,guest at lappy/${NUMBER}
-;asdf =>
;
; Weights for mappings can be set a few different ways:
@@ -140,35 +141,35 @@
;
; 3) It can be retrieved using a dialplan function. This can be extremely
; useful if you want to let an external script decide what the weight
-; in a response shouuld be.
+; in a response should be.
;testmap3 => context3,${SHELL(echo 123)},IAX2,guest at peer3/${NUMBER}
;
; The built in variables ${SECRET}, ${IPADDR} and ${NUMBER} can also be
; passed to the weight. For example, you could pass the ${NUMBER} value
; to your SHELL() script and use that to dynamically return a weight.
;
-; Note than when using a global variable or dialplan function to set the
-; weight for a mapping, that response caching should be disabled if you
+; Note when using a global variable or dialplan function to set the
+; weight for a mapping that response caching should be disabled if you
; plan for these values to change frequently at all. If the results are
-; cached, then any change in value will not take effect until the cache
+; cached then any change in value will not take effect until the cache
; has expired.
;
;
-; The remaining sections represent the peers
-; that we fundamentally trust. The section name
-; represents the name and optionally at a specific
-; DUNDi context if you want the trust to be established
-; for only a specific DUNDi context.
+; The remaining sections represent the peers that we fundamentally trust.
+; The section name specifies the peer's entityid. You can specify which
+; DUNDi contexts with which you want the trust to be established.
;
; inkey - What key they will be authenticating to us with
;
; outkey - What key we use to authenticate to them
;
-; host - What their host is
+; host - What their host is (DNS name, IP address, or dynamic)
;
; port - The port where their host is listening (default: 4520)
;
+; ustothem - Explicitly specify the entityid we use with this peer.
+;
; order - What search order to use. May be 'primary', 'secondary',
; 'tertiary' or 'quartiary'. In large systems, it is beneficial
; to only query one up-stream host in order to maximize caching
@@ -199,7 +200,7 @@
; precache - Utilize/Permit precaching with this peer (to pre
; cache means to provide an answer when no request
; was made and is used so that machines with few
-; routes can push those routes up a to a higher level).
+; routes can push those routes up to a higher level).
; outgoing means we send precache routes to this peer,
; incoming means we permit this peer to send us
; precache routes. symmetric means we do both.
@@ -208,6 +209,12 @@
; precache, nor can you mix symmetric/inbound model with symmetric/outbound
; precache.
;
+; qualify - Enable qualifying the peer to determine reachable status.
+; Set to yes, no, or number of milliseconds for qualifying
+; the peer's reachable status.
+;
+; register - Enable registering with the peer. This presupposes that the
+; peer's host option for us is dynamic. (yes/no value)
;
; The '*' peer is special and matches an unspecified entity
;
--
To view, visit https://gerrit.asterisk.org/9937
To unsubscribe, or for help writing mail filters, visit https://gerrit.asterisk.org/settings
Gerrit-Project: asterisk
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I33d0ad0611c2124ca3440f0f811fa0f45e4e2849
Gerrit-Change-Number: 9937
Gerrit-PatchSet: 1
Gerrit-Owner: Richard Mudgett <rmudgett at digium.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-code-review/attachments/20180817/2d49c840/attachment-0001.html>
More information about the asterisk-code-review
mailing list