Added: qpid/site/input/releases/qpid-dispatch-master/book/schema.html.in
URL: 
http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-dispatch-master/book/schema.html.in?rev=1705904&view=auto
==============================================================================
--- qpid/site/input/releases/qpid-dispatch-master/book/schema.html.in (added)
+++ qpid/site/input/releases/qpid-dispatch-master/book/schema.html.in Tue Sep 
29 18:03:12 2015
@@ -0,0 +1,664 @@
+
+  
+  <div class="section" id="management-schema">
+<h1>3.4. Management Schema<a class="headerlink" href="#management-schema" 
title="Permalink to this headline">.</a></h1>
+<p>This chapter documents the set of <em>management entity types</em> that 
define
+configuration and management of a Dispatch Router. A management entity type has
+a set of <em>attributes</em> that can be read, some attributes can also be
+updated. Some entity types also support <em>operations</em> that can be 
called.</p>
+<p>All management entity types have the following standard attributes:</p>
+<dl class="docutils">
+<dt><em>type</em></dt>
+<dd>The fully qualified type of the entity,
+e.g. <cite>org.apache.qpid.dispatch.router</cite>. This document uses the 
short name
+without the <cite>org.apache.qpid.dispatch</cite> prefix e.g. 
<cite>router</cite>. The dispatch
+tools will accept the short or long name.</dd>
+<dt><em>name</em></dt>
+<dd>A user-generated identity for the entity.  This can be used in other 
entities
+that need to refer to the named entity.</dd>
+<dt><em>identity</em></dt>
+<dd>A system-generated identity of the entity. It includes
+the short type name and some identifying information. E.g. 
<cite>log/AGENT</cite> or
+<cite>listener/localhost:amqp</cite></dd>
+</dl>
+<p>There are two main categories of management entity type.</p>
+<dl class="docutils">
+<dt><em>Configuration</em> Entities</dt>
+<dd>Parameters that can be set in the configuration file
+(see <cite>qdrouterd.conf(5)</cite> man page) or set at run-time with the 
<cite>qdmanage(8)</cite>
+tool.</dd>
+<dt><em>Operational</em> Entities</dt>
+<dd>Run-time status values that can be queried using <cite>qdstat(8)</cite> or 
<cite>qdmanage(8)</cite> tools.</dd>
+</dl>
+<div class="section" id="configuration-entities">
+<h2>3.4.1. Configuration Entities<a class="headerlink" 
href="#configuration-entities" title="Permalink to this headline">.</a></h2>
+<p>Configuration entities define the attributes allowed in the configuration 
file
+(see <cite>qdrouterd.conf(5)</cite>) but you can also create entities once the 
router is
+running using the <cite>qdrouterd(8)</cite> tool&#8217;s <cite>create</cite> 
operation. Some entities can also
+be modified using the <cite>update</cite> operation, see the entity 
descriptions below.</p>
+<div class="section" id="container">
+<h3>3.4.1.1. container<a class="headerlink" href="#container" title="Permalink 
to this headline">.</a></h3>
+<p>Attributes related to the AMQP container.</p>
+<p>Operations allowed: <cite>READ</cite></p>
+<dl class="docutils">
+<dt><em>containerName</em> (string, <cite>CREATE</cite>)</dt>
+<dd>The  name of the AMQP container.  If not specified, the container name 
will be set to a value of the container&#8217;s choosing.  The automatically 
assigned container name is not guaranteed to be persistent across restarts of 
the container.</dd>
+<dt><em>workerThreads</em> (integer, default=1, <cite>CREATE</cite>)</dt>
+<dd>The number of threads that will be created to process message traffic and 
other application work (timers, non-amqp file descriptors, etc.) .</dd>
+<dt><em>debugDump</em> (path, <cite>CREATE</cite>)</dt>
+<dd>A file to dump debugging information that can&#8217;t be logged 
normally.</dd>
+<dt><em>saslConfigPath</em> (path, <cite>CREATE</cite>)</dt>
+<dd>Absolute path to the SASL configuration file.</dd>
+<dt><em>saslConfigName</em> (string, default=&#8217;qdrouterd&#8217;, 
<cite>CREATE</cite>)</dt>
+<dd>Name of the SASL configuration.  This string + &#8216;.conf&#8217; is the 
name of the configuration file.</dd>
+</dl>
+</div>
+<div class="section" id="router">
+<h3>3.4.1.2. router<a class="headerlink" href="#router" title="Permalink to 
this headline">.</a></h3>
+<p>Tracks peer routers and computes routes to destinations.</p>
+<p>Operations allowed: <cite>READ</cite></p>
+<dl class="docutils">
+<dt><em>routerId</em> (string, <cite>CREATE</cite>)</dt>
+<dd>Router&#8217;s unique identity.</dd>
+<dt><em>mode</em> (One of [&#8216;standalone&#8217;, &#8216;interior&#8217;, 
&#8216;edge&#8217;, &#8216;endpoint&#8217;], default=&#8217;standalone&#8217;, 
<cite>CREATE</cite>)</dt>
+<dd>In standalone mode, the router operates as a single component.  It does 
not participate in the routing protocol and therefore will not cooperate with 
other routers. In interior mode, the router operates in cooperation with other 
interior routers in an interconnected network.  In edge mode, the router 
operates with an up link into an interior router network. Edge routers are 
typically used as connection concentrators or as security firewalls for access 
into the interior network.</dd>
+<dt><em>area</em> (string)</dt>
+<dd>Unused placeholder.</dd>
+<dt><em>helloInterval</em> (integer, default=1, <cite>CREATE</cite>)</dt>
+<dd>Interval in seconds between HELLO messages sent to neighbor routers.</dd>
+<dt><em>helloMaxAge</em> (integer, default=3, <cite>CREATE</cite>)</dt>
+<dd>Time in seconds after which a neighbor is declared lost if no HELLO is 
received.</dd>
+<dt><em>raInterval</em> (integer, default=30, <cite>CREATE</cite>)</dt>
+<dd>Interval in seconds between Router-Advertisements sent to all routers in a 
stable network.</dd>
+<dt><em>raIntervalFlux</em> (integer, default=4, <cite>CREATE</cite>)</dt>
+<dd>Interval in seconds between Router-Advertisements sent to all routers 
during topology fluctuations.</dd>
+<dt><em>remoteLsMaxAge</em> (integer, default=60, <cite>CREATE</cite>)</dt>
+<dd>Time in seconds after which link state is declared stale if no RA is 
received.</dd>
+<dt><em>mobileAddrMaxAge</em> (integer, default=60, <cite>CREATE</cite>)</dt>
+<dd>Deprecated - This value is no longer used in the router.</dd>
+<dt><em>addrCount</em> (integer)</dt>
+<dd>Number of addresses known to the router.</dd>
+<dt><em>linkCount</em> (integer)</dt>
+<dd>Number of links attached to the router node.</dd>
+<dt><em>nodeCount</em> (integer)</dt>
+<dd>Number of known peer router nodes.</dd>
+</dl>
+</div>
+<div class="section" id="listener">
+<h3>3.4.1.3. listener<a class="headerlink" href="#listener" title="Permalink 
to this headline">.</a></h3>
+<p>Listens for incoming connections to the router.</p>
+<p>Operations allowed: <cite>CREATE</cite>, <cite>READ</cite></p>
+<dl class="docutils">
+<dt><em>addr</em> (string, default=&#8216;127.0.0.1&#8217;, 
<cite>CREATE</cite>)</dt>
+<dd>IP address: ipv4 or ipv6 literal or a host name.</dd>
+<dt><em>port</em> (string, default=&#8217;amqp&#8217;, 
<cite>CREATE</cite>)</dt>
+<dd>Port number or symbolic service name.</dd>
+<dt><em>role</em> (One of [&#8216;normal&#8217;, &#8216;inter-router&#8217;, 
&#8216;on-demand&#8217;], default=&#8217;normal&#8217;, 
<cite>CREATE</cite>)</dt>
+<dd>The role of an established connection. In the normal role, the connection 
is assumed to be used for AMQP clients that are doing normal message delivery 
over the connection.  In the inter-router role, the connection is assumed to be 
to another router in the network.  Inter-router discovery and routing protocols 
can only be used over inter-router connections.</dd>
+<dt><em>certDb</em> (path, <cite>CREATE</cite>)</dt>
+<dd>The path to the database that contains the public certificates of trusted 
certificate authorities (CA).</dd>
+<dt><em>certFile</em> (path, <cite>CREATE</cite>)</dt>
+<dd>The path to the file containing the PEM-formatted public certificate to be 
used on the local end of any connections using this profile.</dd>
+<dt><em>keyFile</em> (path, <cite>CREATE</cite>)</dt>
+<dd>The path to the file containing the PEM-formatted private key for the 
above certificate.</dd>
+<dt><em>passwordFile</em> (path, <cite>CREATE</cite>)</dt>
+<dd>If the above private key is password protected, this is the path to a file 
containing the password that unlocks the certificate key.</dd>
+<dt><em>password</em> (string, <cite>CREATE</cite>)</dt>
+<dd>An alternative to storing the password in a file referenced by 
passwordFile is to supply the password right here in the configuration file.  
This option can be used by supplying the password in the &#8216;password&#8217; 
option.  Don&#8217;t use both password and passwordFile in the same 
profile.</dd>
+<dt><em>saslMechanisms</em> (string, <cite>CREATE</cite>)</dt>
+<dd>Comma separated list of accepted SASL authentication mechanisms.</dd>
+<dt><em>authenticatePeer</em> (boolean, <cite>CREATE</cite>)</dt>
+<dd>yes: Require the peer&#8217;s identity to be authenticated; no: Do not 
require any authentication.</dd>
+<dt><em>requireEncryption</em> (boolean, <cite>CREATE</cite>)</dt>
+<dd>yes: Require the connection to the peer to be encrypted; no: Permit 
non-encrypted communication with the peer</dd>
+<dt><em>requireSsl</em> (boolean, <cite>CREATE</cite>)</dt>
+<dd>yes: Require the use of SSL or TLS on the connection; no: Allow clients to 
connect without SSL or TLS.</dd>
+<dt><em>trustedCerts</em> (path, <cite>CREATE</cite>)</dt>
+<dd>This optional setting can be used to reduce the set of available CAs for 
client authentication.  If used, this setting must provide a path to a PEM file 
that contains the trusted certificates.</dd>
+<dt><em>maxFrameSize</em> (integer, default=65536, <cite>CREATE</cite>)</dt>
+<dd>Defaults to 65536.  If specified, it is the maximum frame size in octets 
that will be used in the connection-open negotiation with a connected peer.  
The frame size is the largest contiguous set of uninterrupted data that can be 
sent for a message delivery over the connection. Interleaving of messages on 
different links is done at frame granularity.</dd>
+<dt><em>idleTimeoutSeconds</em> (integer, default=16, <cite>CREATE</cite>)</dt>
+<dd>The idle timeout, in seconds, for connections through this listener.  If 
no frames are received on the connection for this time interval, the connection 
shall be closed.</dd>
+<dt><em>requirePeerAuth</em> (boolean, <cite>CREATE</cite>)</dt>
+<dd>Deprecated - This attribute is now controlled by the authenticatePeer 
attribute.</dd>
+<dt><em>allowUnsecured</em> (boolean, <cite>CREATE</cite>)</dt>
+<dd>Deprecated - This attribute is now controlled by the requireEncryption 
attribute.</dd>
+<dt><em>allowNoSasl</em> (boolean, <cite>CREATE</cite>)</dt>
+<dd>Deprecated - This attribute is now controlled by the authenticatePeer 
attribute.</dd>
+<dt><em>stripAnnotations</em> (One of [&#8216;in&#8217;, &#8216;out&#8217;, 
&#8216;both&#8217;, &#8216;no&#8217;], default=&#8217;both&#8217;, 
<cite>CREATE</cite>)</dt>
+<dd>[&#8216;in&#8217;, &#8216;out&#8217;, &#8216;both&#8217;, 
&#8216;no&#8217;] in: Strip the dispatch router specific annotations only on 
ingress; out: Strip the dispatch router specific annotations only on egress; 
both: Strip the dispatch router specific annotations on both ingress and 
egress; no - do not strip dispatch router specific annotations</dd>
+</dl>
+</div>
+<div class="section" id="connector">
+<h3>3.4.1.4. connector<a class="headerlink" href="#connector" title="Permalink 
to this headline">.</a></h3>
+<p>Establishes an outgoing connections from the router.</p>
+<p>Operations allowed: <cite>CREATE</cite>, <cite>READ</cite></p>
+<dl class="docutils">
+<dt><em>addr</em> (string, default=&#8216;127.0.0.1&#8217;, 
<cite>CREATE</cite>)</dt>
+<dd>IP address: ipv4 or ipv6 literal or a host name.</dd>
+<dt><em>port</em> (string, default=&#8217;amqp&#8217;, 
<cite>CREATE</cite>)</dt>
+<dd>Port number or symbolic service name.</dd>
+<dt><em>role</em> (One of [&#8216;normal&#8217;, &#8216;inter-router&#8217;, 
&#8216;on-demand&#8217;], default=&#8217;normal&#8217;, 
<cite>CREATE</cite>)</dt>
+<dd>The role of an established connection. In the normal role, the connection 
is assumed to be used for AMQP clients that are doing normal message delivery 
over the connection.  In the inter-router role, the connection is assumed to be 
to another router in the network.  Inter-router discovery and routing protocols 
can only be used over inter-router connections.</dd>
+<dt><em>certDb</em> (path, <cite>CREATE</cite>)</dt>
+<dd>The path to the database that contains the public certificates of trusted 
certificate authorities (CA).</dd>
+<dt><em>certFile</em> (path, <cite>CREATE</cite>)</dt>
+<dd>The path to the file containing the PEM-formatted public certificate to be 
used on the local end of any connections using this profile.</dd>
+<dt><em>keyFile</em> (path, <cite>CREATE</cite>)</dt>
+<dd>The path to the file containing the PEM-formatted private key for the 
above certificate.</dd>
+<dt><em>passwordFile</em> (path, <cite>CREATE</cite>)</dt>
+<dd>If the above private key is password protected, this is the path to a file 
containing the password that unlocks the certificate key.</dd>
+<dt><em>password</em> (string, <cite>CREATE</cite>)</dt>
+<dd>An alternative to storing the password in a file referenced by 
passwordFile is to supply the password right here in the configuration file.  
This option can be used by supplying the password in the &#8216;password&#8217; 
option.  Don&#8217;t use both password and passwordFile in the same 
profile.</dd>
+<dt><em>saslMechanisms</em> (string, <cite>CREATE</cite>)</dt>
+<dd>Comma separated list of accepted SASL authentication mechanisms.</dd>
+<dt><em>allowRedirect</em> (boolean, default=True, <cite>CREATE</cite>)</dt>
+<dd>Allow the peer to redirect this connection to another address.</dd>
+<dt><em>maxFrameSize</em> (integer, default=65536, <cite>CREATE</cite>)</dt>
+<dd>Maximum frame size in octets that will be used in the connection-open 
negotiation with a connected peer.  The frame size is the largest contiguous 
set of uninterrupted data that can be sent for a message delivery over the 
connection. Interleaving of messages on different links is done at frame 
granularity.</dd>
+<dt><em>idleTimeoutSeconds</em> (integer, default=16, <cite>CREATE</cite>)</dt>
+<dd>The idle timeout, in seconds, for connections through this connector.  If 
no frames are received on the connection for this time interval, the connection 
shall be closed.</dd>
+<dt><em>stripAnnotations</em> (One of [&#8216;in&#8217;, &#8216;out&#8217;, 
&#8216;both&#8217;, &#8216;no&#8217;], default=&#8217;both&#8217;, 
<cite>CREATE</cite>)</dt>
+<dd>[&#8216;in&#8217;, &#8216;out&#8217;, &#8216;both&#8217;, 
&#8216;no&#8217;] in: Strip the dispatch router specific annotations only on 
ingress; out: Strip the dispatch router specific annotations only on egress; 
both: Strip the dispatch router specific annotations on both ingress and 
egress; no - do not strip dispatch router specific annotations</dd>
+</dl>
+</div>
+<div class="section" id="log">
+<h3>3.4.1.5. log<a class="headerlink" href="#log" title="Permalink to this 
headline">.</a></h3>
+<p>Configure logging for a particular module. You can use the 
<cite>UPDATE</cite> operation to change log settings while the router is 
running.</p>
+<p>Operations allowed: <cite>UPDATE</cite>, <cite>READ</cite></p>
+<dl class="docutils">
+<dt><em>module</em> (One of [&#8216;ROUTER&#8217;, &#8216;ROUTER_HELLO&#8217;, 
&#8216;ROUTER_LS&#8217;, &#8216;ROUTER_MA&#8217;, &#8216;MESSAGE&#8217;, 
&#8216;SERVER&#8217;, &#8216;AGENT&#8217;, &#8216;CONTAINER&#8217;, 
&#8216;CONFIG&#8217;, &#8216;ERROR&#8217;, &#8216;DISPATCH&#8217;, 
&#8216;DEFAULT&#8217;], required)</dt>
+<dd>Module to configure. The special module &#8216;DEFAULT&#8217; specifies 
defaults for all modules.</dd>
+<dt><em>enable</em> (string, default=&#8217;default&#8217;, required, 
<cite>UPDATE</cite>)</dt>
+<dd>Levels are: trace, debug, info, notice, warning, error, critical. The 
enable string is a comma-separated list of levels. A level may have a trailing 
&#8216;+&#8217; to enable that level and above. For example 
&#8216;trace,debug,warning+&#8217; means enable trace, debug, warning, error 
and critical. The value &#8216;none&#8217; means disable logging for the 
module. The value &#8216;default&#8217; means use the value from the DEFAULT 
module.</dd>
+<dt><em>timestamp</em> (boolean, <cite>UPDATE</cite>)</dt>
+<dd>Include timestamp in log messages.</dd>
+<dt><em>source</em> (boolean, <cite>UPDATE</cite>)</dt>
+<dd>Include source file and line number in log messages.</dd>
+<dt><em>output</em> (string, <cite>UPDATE</cite>)</dt>
+<dd>Where to send log messages. Can be &#8216;stderr&#8217;, 
&#8216;syslog&#8217; or a file name.</dd>
+</dl>
+</div>
+<div class="section" id="fixedaddress">
+<h3>3.4.1.6. fixedAddress<a class="headerlink" href="#fixedaddress" 
title="Permalink to this headline">.</a></h3>
+<p>Establishes semantics for addresses starting with a prefix.</p>
+<p>Operations allowed: <cite>CREATE</cite>, <cite>READ</cite></p>
+<dl class="docutils">
+<dt><em>prefix</em> (string, required, <cite>CREATE</cite>)</dt>
+<dd>The address prefix (always starting with &#8216;/&#8217;).</dd>
+<dt><em>phase</em> (integer, <cite>CREATE</cite>)</dt>
+<dd>The phase of a multi-hop address passing through one or more 
waypoints.</dd>
+<dt><em>fanout</em> (One of [&#8216;multiple&#8217;, &#8216;single&#8217;], 
default=&#8217;multiple&#8217;, <cite>CREATE</cite>)</dt>
+<dd>One of &#8216;multiple&#8217; or &#8216;single&#8217;.  Multiple fanout is 
a non-competing pattern.  If there are multiple consumers using the same 
address, each consumer will receive its own copy of every message sent to the 
address.  Single fanout is a competing pattern where each message is sent to 
only one consumer.</dd>
+<dt><em>bias</em> (One of [&#8216;closest&#8217;, &#8216;spread&#8217;], 
default=&#8217;closest&#8217;, <cite>CREATE</cite>)</dt>
+<dd>Only if fanout is single.  One of &#8216;closest&#8217; or 
&#8216;spread&#8217;.  Closest bias means that messages to an address will 
always be delivered to the closest (lowest cost) subscribed consumer. Spread 
bias will distribute the messages across subscribers in an approximately even 
manner.</dd>
+</dl>
+</div>
+<div class="section" id="waypoint">
+<h3>3.4.1.7. waypoint<a class="headerlink" href="#waypoint" title="Permalink 
to this headline">.</a></h3>
+<p>A remote node that messages for an address pass through.</p>
+<p>Operations allowed: <cite>CREATE</cite>, <cite>READ</cite></p>
+<dl class="docutils">
+<dt><em>address</em> (string, required, <cite>CREATE</cite>)</dt>
+<dd>The AMQP address of the waypoint.</dd>
+<dt><em>connector</em> (string, required, <cite>CREATE</cite>)</dt>
+<dd>The name of the on-demand connector used to reach the waypoint&#8217;s 
container.</dd>
+<dt><em>inPhase</em> (integer, default=-1, <cite>CREATE</cite>)</dt>
+<dd>The phase of the address as it is routed _to_ the waypoint.</dd>
+<dt><em>outPhase</em> (integer, default=-1, <cite>CREATE</cite>)</dt>
+<dd>The phase of the address as it is routed _from_ the waypoint.</dd>
+</dl>
+</div>
+<div class="section" id="linkroutepattern">
+<h3>3.4.1.8. linkRoutePattern<a class="headerlink" href="#linkroutepattern" 
title="Permalink to this headline">.</a></h3>
+<p>An address pattern to match against link sources and targets to cause the 
router to link-route the attach across the network to a remote node.</p>
+<p>Operations allowed: <cite>CREATE</cite>, <cite>READ</cite></p>
+<dl class="docutils">
+<dt><em>prefix</em> (string, required, <cite>CREATE</cite>)</dt>
+<dd>An address prefix to match against target and source addresses.  From 
Dispatch 0.6 onwards, this pattern must be of the form 
&#8216;&lt;text&gt;/&lt;text1&gt;/...&#8217; or just &#8216;&lt;text&gt;&#8217; 
and matches any address that contains that prefix.  For example, if the prefix 
is set to org/apache any address that has the prefix &#8216;org/apache&#8217; 
like org/apache/dev will match. Note that a prefix must not start or end with a 
slash (/) and can contain zero or more slashes (/).  Any characters between the 
slashes are simply treated as part of the address</dd>
+<dt><em>dir</em> (One of [&#8216;in&#8217;, &#8216;out&#8217;, 
&#8216;both&#8217;], default=&#8217;both&#8217;, <cite>CREATE</cite>)</dt>
+<dd>Link direction for match: &#8216;in&#8217; matches only links inbound to 
the client; &#8216;out&#8217; matches only links outbound from the client; 
&#8216;both&#8217; matches any link.</dd>
+<dt><em>connector</em> (string, <cite>CREATE</cite>)</dt>
+<dd>The name of the on-demand connector used to reach the target node&#8217;s 
container.  If this value is not provided, it means that the target container 
is expected to be connected to a different router in the network.  This 
prevents links to a link-routable address from being misinterpreted as 
message-routing links when there is no route to a valid destination 
available.</dd>
+</dl>
+</div>
+<div class="section" id="console">
+<h3>3.4.1.9. console<a class="headerlink" href="#console" title="Permalink to 
this headline">.</a></h3>
+<p>Start a websocket/tcp proxy and http file server to serve the web 
console</p>
+<p>Operations allowed: <cite>READ</cite></p>
+<dl class="docutils">
+<dt><em>listener</em> (string)</dt>
+<dd>The name of the listener to send the proxied tcp traffic to.</dd>
+<dt><em>wsport</em> (integer, default=5673)</dt>
+<dd>port on which to listen for websocket traffic</dd>
+<dt><em>proxy</em> (string)</dt>
+<dd>The full path to the proxy program to run.</dd>
+<dt><em>home</em> (string)</dt>
+<dd>The full path to the html/css/js files for the console.</dd>
+<dt><em>args</em> (string)</dt>
+<dd>Optional args to pass the proxy program for logging, authentication, 
etc.</dd>
+</dl>
+</div>
+</div>
+<div class="section" id="operational-entities">
+<h2>3.4.2. Operational Entities<a class="headerlink" 
href="#operational-entities" title="Permalink to this headline">.</a></h2>
+<p>Operational entities provide statistics and other run-time attributes of 
the router.
+The <cite>qdstat(8)</cite> tool provides a convenient way to query run-time 
statistics.
+You can also use the general-purpose management tool <cite>qdmanage(8)</cite> 
to query
+operational attributes.</p>
+<div class="section" id="org-amqp-management">
+<h3>3.4.2.1. org.amqp.management<a class="headerlink" 
href="#org-amqp-management" title="Permalink to this headline">.</a></h3>
+<p>The standard AMQP management node interface.</p>
+<p>Operations allowed: <cite>QUERY</cite>, <cite>GET-TYPES</cite>, 
<cite>GET-ANNOTATIONS</cite>, <cite>GET-OPERATIONS</cite>, 
<cite>GET-ATTRIBUTES</cite>, <cite>GET-MGMT-NODES</cite>, <cite>READ</cite></p>
+<div class="section" id="operation-get-types">
+<h4>3.4.2.1.1. Operation GET-TYPES<a class="headerlink" 
href="#operation-get-types" title="Permalink to this headline">.</a></h4>
+<p>Get the set of entity types and their inheritance relationships</p>
+<p><strong>Request properties:</strong></p>
+<dl class="docutils">
+<dt><em>entityType</em> (string)</dt>
+<dd>If set, restrict query results to entities that extend (directly or 
indirectly) this type</dd>
+<dt><em>identity</em> (string)</dt>
+<dd>Set to the value <cite>self</cite></dd>
+</dl>
+<p><strong>Response body</strong>  (map)A map where each key is an entity type 
name (string) and the corresponding value is the list of the entity types 
(strings) that it extends.</p>
+</div>
+<div class="section" id="operation-get-attributes">
+<h4>3.4.2.1.2. Operation GET-ATTRIBUTES<a class="headerlink" 
href="#operation-get-attributes" title="Permalink to this headline">.</a></h4>
+<p>Get the set of entity types and the annotations they implement</p>
+<p><strong>Request properties:</strong></p>
+<dl class="docutils">
+<dt><em>entityType</em> (string)</dt>
+<dd>If set, restrict query results to entities that extend (directly or 
indirectly) this type</dd>
+<dt><em>identity</em> (string)</dt>
+<dd>Set to the value <cite>self</cite></dd>
+</dl>
+<p><strong>Response body</strong>  (map)A map where each key is an entity type 
name (string) and the corresponding value is a list (of strings) of attributes 
on that entity type.</p>
+</div>
+<div class="section" id="operation-get-operations">
+<h4>3.4.2.1.3. Operation GET-OPERATIONS<a class="headerlink" 
href="#operation-get-operations" title="Permalink to this headline">.</a></h4>
+<p>Get the set of entity types and the operations they support</p>
+<p><strong>Request properties:</strong></p>
+<dl class="docutils">
+<dt><em>entityType</em> (string)</dt>
+<dd>If set, restrict query results to entities that extend (directly or 
indirectly) this type</dd>
+<dt><em>identity</em> (string)</dt>
+<dd>Set to the value <cite>self</cite></dd>
+</dl>
+<p><strong>Response body</strong>  (map)A map where each key is an entity type 
name (string) and the corresponding value is the list of operation names 
(strings) that it supports.</p>
+</div>
+<div class="section" id="operation-get-annotations">
+<h4>3.4.2.1.4. Operation GET-ANNOTATIONS<a class="headerlink" 
href="#operation-get-annotations" title="Permalink to this headline">.</a></h4>
+<p><strong>Request properties:</strong></p>
+<dl class="docutils">
+<dt><em>entityType</em> (string)</dt>
+<dd>If set, restrict query results to entities that extend (directly or 
indirectly) this type</dd>
+<dt><em>identity</em> (string)</dt>
+<dd>Set to the value <cite>self</cite></dd>
+</dl>
+<p><strong>Response body</strong>  (map)A map where each key is an entity type 
name (string) and the corresponding value is the list of annotations (strings) 
that it  implements.</p>
+</div>
+<div class="section" id="operation-query">
+<h4>3.4.2.1.5. Operation QUERY<a class="headerlink" href="#operation-query" 
title="Permalink to this headline">.</a></h4>
+<p>Query for attribute values of multiple entities.</p>
+<p><strong>Request body</strong>  (map)A map containing the key 
<cite>attributeNames</cite> with value a list of (string) attribute names to 
return. If the list or the map is empty or the body is missing all attributes 
are returned.</p>
+<p><strong>Request properties:</strong></p>
+<dl class="docutils">
+<dt><em>count</em> (integer)</dt>
+<dd>If set, specifies the number of entries from the result set to return. If 
not set return all from <cite>offset</cite></dd>
+<dt><em>entityType</em> (string)</dt>
+<dd>If set, restrict query results to entities that extend (directly or 
indirectly) this type</dd>
+<dt><em>identity</em> (string)</dt>
+<dd>Set to the value <cite>self</cite></dd>
+<dt><em>offset</em> (integer)</dt>
+<dd>If set, specifies the number of the first element of the result set to be 
returned.</dd>
+</dl>
+<p><strong>Response body</strong>  (map)A map with two entries. 
<cite>attributeNames</cite> is a list of the attribute names returned. 
<cite>results</cite> is a list of lists each containing the attribute values 
for a single entity in the same order as the names in the 
<cite>attributeNames</cite> entry. If an attribute name is not applicable for 
an entity then the corresponding value is <cite>null</cite></p>
+<p><strong>Response properties:</strong></p>
+<dl class="docutils">
+<dt><em>count</em> (integer)</dt>
+<dd>Number of results returned</dd>
+<dt><em>identity</em> (string)</dt>
+<dd>Set to the value <cite>self</cite></dd>
+</dl>
+</div>
+<div class="section" id="operation-get-mgmt-nodes">
+<h4>3.4.2.1.6. Operation GET-MGMT-NODES<a class="headerlink" 
href="#operation-get-mgmt-nodes" title="Permalink to this headline">.</a></h4>
+<p>Get the addresses of all management nodes known to this router</p>
+<p><strong>Request properties:</strong></p>
+<dl class="docutils">
+<dt><em>identity</em> (string)</dt>
+<dd>Set to the value <cite>self</cite></dd>
+</dl>
+<p><strong>Response body</strong>  (list)A list of addresses (strings) of 
management nodes known to this management node.</p>
+</div>
+</div>
+<div class="section" id="management">
+<h3>3.4.2.2. management<a class="headerlink" href="#management" 
title="Permalink to this headline">.</a></h3>
+<p>Qpid dispatch router extensions to the standard org.amqp.management 
interface.</p>
+<p>Operations allowed: <cite>GET-SCHEMA</cite>, <cite>GET-JSON-SCHEMA</cite>, 
<cite>GET-LOG</cite>, <cite>PROFILE</cite>, <cite>QUERY</cite>, 
<cite>GET-TYPES</cite>, <cite>GET-ANNOTATIONS</cite>, 
<cite>GET-OPERATIONS</cite>, <cite>GET-ATTRIBUTES</cite>, 
<cite>GET-MGMT-NODES</cite>, <cite>READ</cite></p>
+<div class="section" id="operation-get-schema-json">
+<h4>3.4.2.2.1. Operation GET-SCHEMA-JSON<a class="headerlink" 
href="#operation-get-schema-json" title="Permalink to this headline">.</a></h4>
+<p>Get the qdrouterd schema for this router in JSON format</p>
+<p><strong>Request properties:</strong></p>
+<dl class="docutils">
+<dt><em>indent</em> (integer)</dt>
+<dd>Number of spaces to indent the formatted result. If not specified, the 
result is in minimal format, no unnecessary spaces or newlines.</dd>
+<dt><em>identity</em> (string)</dt>
+<dd>Set to the value <cite>self</cite></dd>
+</dl>
+<p><strong>Response body</strong>  (string)The qdrouter schema as a JSON 
string.</p>
+</div>
+<div class="section" id="operation-get-log">
+<h4>3.4.2.2.2. Operation GET-LOG<a class="headerlink" 
href="#operation-get-log" title="Permalink to this headline">.</a></h4>
+<p>Get recent log entries from the router.</p>
+<p><strong>Request properties:</strong></p>
+<dl class="docutils">
+<dt><em>limit</em> (integer)</dt>
+<dd>Maximum number of log entries to get.</dd>
+<dt><em>identity</em> (string)</dt>
+<dd>Set to the value <cite>self</cite></dd>
+</dl>
+<p><strong>Response body</strong>  (string)A list of log entries where each 
entry is a list of: module name(string), level name(string), message 
text(string), file name(string or None), line number(integer or None) , 
timestamp(integer)</p>
+</div>
+<div class="section" id="operation-get-schema">
+<h4>3.4.2.2.3. Operation GET-SCHEMA<a class="headerlink" 
href="#operation-get-schema" title="Permalink to this headline">.</a></h4>
+<p>Get the qdrouterd schema for this router in AMQP map format</p>
+<p><strong>Request properties:</strong></p>
+<dl class="docutils">
+<dt><em>identity</em> (string)</dt>
+<dd>Set to the value <cite>self</cite></dd>
+</dl>
+<p><strong>Response body</strong>  (map)The qdrouter schema as a map.</p>
+</div>
+</div>
+<div class="section" id="router-link">
+<h3>3.4.2.3. router.link<a class="headerlink" href="#router-link" 
title="Permalink to this headline">.</a></h3>
+<p>Link to another AMQP endpoint: router node, client or other AMQP 
process.</p>
+<p>Operations allowed: <cite>READ</cite></p>
+<p><em>linkName</em> (string)</p>
+<p><em>linkType</em> (One of [&#8216;endpoint&#8217;, &#8216;waypoint&#8217;, 
&#8216;inter-router&#8217;, &#8216;inter-area&#8217;])</p>
+<p><em>linkDir</em> (One of [&#8216;in&#8217;, &#8216;out&#8217;])</p>
+<p><em>owningAddr</em> (string)</p>
+<p><em>eventFifoDepth</em> (integer)</p>
+<p><em>msgFifoDepth</em> (integer)</p>
+<p><em>remoteContainer</em> (string)</p>
+</div>
+<div class="section" id="router-address">
+<h3>3.4.2.4. router.address<a class="headerlink" href="#router-address" 
title="Permalink to this headline">.</a></h3>
+<p>AMQP address managed by the router.</p>
+<p>Operations allowed: <cite>READ</cite></p>
+<p><em>inProcess</em> (boolean)</p>
+<p><em>subscriberCount</em> (integer)</p>
+<p><em>remoteCount</em> (integer)</p>
+<p><em>deliveriesIngress</em> (integer)</p>
+<p><em>deliveriesEgress</em> (integer)</p>
+<p><em>deliveriesTransit</em> (integer)</p>
+<p><em>deliveriesToContainer</em> (integer)</p>
+<p><em>deliveriesFromContainer</em> (integer)</p>
+<dl class="docutils">
+<dt><em>key</em> (string)</dt>
+<dd>Internal unique (to this router) key to identify the address</dd>
+</dl>
+</div>
+<div class="section" id="router-node">
+<h3>3.4.2.5. router.node<a class="headerlink" href="#router-node" 
title="Permalink to this headline">.</a></h3>
+<p>Remote router node connected to this router.</p>
+<p>Operations allowed: <cite>READ</cite></p>
+<dl class="docutils">
+<dt><em>routerId</em> (string)</dt>
+<dd>Remote node identifier.</dd>
+<dt><em>instance</em> (integer)</dt>
+<dd>Remote node boot number.</dd>
+<dt><em>linkState</em> (list)</dt>
+<dd>List of remote node&#8217;s neighbours.</dd>
+<dt><em>nextHop</em> (string)</dt>
+<dd>Neighbour ID of next hop to remote node from here.</dd>
+<dt><em>validOrigins</em> (list)</dt>
+<dd>List of valid origin nodes for messages arriving via the re mote node, 
used for duplicate elimination in redundant networks.</dd>
+<dt><em>address</em> (string)</dt>
+<dd>Address of the remote node</dd>
+<dt><em>routerLink</em> (entityId)</dt>
+<dd>Local link to remote node</dd>
+</dl>
+</div>
+<div class="section" id="connection">
+<h3>3.4.2.6. connection<a class="headerlink" href="#connection" 
title="Permalink to this headline">.</a></h3>
+<p>Connections to the router&#8217;s container.</p>
+<p>Operations allowed: <cite>READ</cite></p>
+<dl class="docutils">
+<dt><em>container</em> (string)</dt>
+<dd>The container for this connection</dd>
+<dt><em>opened</em> (boolean)</dt>
+<dd>The connection has been opened (i.e. AMQP OPEN)</dd>
+<dt><em>host</em> (string)</dt>
+<dd>IP address and port number in the form addr:port.</dd>
+<dt><em>dir</em> (One of [&#8216;in&#8217;, &#8216;out&#8217;])</dt>
+<dd>Direction of connection establishment in or out of the router.</dd>
+</dl>
+<p><em>role</em> (string)</p>
+<dl class="docutils">
+<dt><em>isAuthenticated</em> (boolean)</dt>
+<dd>Indicates whether the identity of the connection&#8217;s user is 
authentic.</dd>
+<dt><em>isEncrypted</em> (boolean)</dt>
+<dd>Indicates whether the connection content is encrypted.</dd>
+<dt><em>sasl</em> (string)</dt>
+<dd>SASL mechanism in effect for authentication.</dd>
+<dt><em>user</em> (string)</dt>
+<dd>Identity of the authenticated user.</dd>
+<dt><em>ssl</em> (boolean)</dt>
+<dd>True iff SSL/TLS is in effect for this connection.</dd>
+<dt><em>sslProto</em> (string)</dt>
+<dd>SSL protocol name</dd>
+<dt><em>sslCipher</em> (string)</dt>
+<dd>SSL cipher name</dd>
+<dt><em>sslSsf</em> (integer)</dt>
+<dd>SSL strength factor in effect</dd>
+<dt><em>properties</em> (map)</dt>
+<dd>Connection properties supplied by the peer.</dd>
+</dl>
+</div>
+<div class="section" id="allocator">
+<h3>3.4.2.7. allocator<a class="headerlink" href="#allocator" title="Permalink 
to this headline">.</a></h3>
+<p>Memory allocation pool.</p>
+<p>Operations allowed: <cite>READ</cite></p>
+<p><em>typeName</em> (string)</p>
+<p><em>typeSize</em> (integer)</p>
+<p><em>transferBatchSize</em> (integer)</p>
+<p><em>localFreeListMax</em> (integer)</p>
+<p><em>globalFreeListMax</em> (integer)</p>
+<p><em>totalAllocFromHeap</em> (integer)</p>
+<p><em>totalFreeToHeap</em> (integer)</p>
+<p><em>heldByThreads</em> (integer)</p>
+<p><em>batchesRebalancedToThreads</em> (integer)</p>
+<p><em>batchesRebalancedToGlobal</em> (integer)</p>
+</div>
+</div>
+<div class="section" id="management-operations">
+<h2>3.4.3. Management Operations<a class="headerlink" 
href="#management-operations" title="Permalink to this headline">.</a></h2>
+<p>The <cite>qdstat(8)</cite> and <cite>qdmanage(8)</cite> tools allow you to 
view or modify management entity
+attributes. They work by invoking <em>management operations</em>. You can 
invoke these operations
+from any AMQP client by sending a message with the appropriate properties and 
body to the
+<cite>$management</cite> address. The message should have a 
<cite>reply-to</cite> address indicating where the
+response should be sent.</p>
+<div class="section" id="operations-for-all-entity-types">
+<h3>3.4.3.1. Operations for all entity types<a class="headerlink" 
href="#operations-for-all-entity-types" title="Permalink to this 
headline">.</a></h3>
+<div class="section" id="operation-read">
+<h4>3.4.3.1.1. Operation READ<a class="headerlink" href="#operation-read" 
title="Permalink to this headline">.</a></h4>
+<p>Read attributes of an entity</p>
+<p><strong>Request properties:</strong></p>
+<dl class="docutils">
+<dt><em>type</em> (string)</dt>
+<dd>Type of desired entity.</dd>
+<dt><em>name</em> (string)</dt>
+<dd>Name of desired entity. Must supply name or identity.</dd>
+<dt><em>identity</em> (string)</dt>
+<dd>Identity of desired entity. Must supply name or identity.</dd>
+</dl>
+<p><strong>Response body</strong>  (map)Attributes of the entity</p>
+</div>
+<div class="section" id="operation-create">
+<h4>3.4.3.1.2. Operation CREATE<a class="headerlink" href="#operation-create" 
title="Permalink to this headline">.</a></h4>
+<p>Create a new entity.</p>
+<p><strong>Request body</strong>  (map, required)Attributes for the new 
entity. Can include name and/or type.</p>
+<p><strong>Request properties:</strong></p>
+<dl class="docutils">
+<dt><em>type</em> (string, required)</dt>
+<dd>Type of new entity.</dd>
+<dt><em>name</em> (string)</dt>
+<dd>Name of new entity. Optional, defaults to identity.</dd>
+</dl>
+<p><strong>Response body</strong>  (map)Attributes of the entity</p>
+</div>
+<div class="section" id="operation-update">
+<h4>3.4.3.1.3. Operation UPDATE<a class="headerlink" href="#operation-update" 
title="Permalink to this headline">.</a></h4>
+<p>Update attributes of an entity</p>
+<p><strong>Request body</strong>  (map)Attributes to update for the entity. 
Can include name or identity.</p>
+<p><strong>Request properties:</strong></p>
+<dl class="docutils">
+<dt><em>type</em> (string)</dt>
+<dd>Type of desired entity.</dd>
+<dt><em>name</em> (string)</dt>
+<dd>Name of desired entity. Must supply name or identity.</dd>
+<dt><em>identity</em> (string)</dt>
+<dd>Identity of desired entity. Must supply name or identity.</dd>
+</dl>
+<p><strong>Response body</strong>  (map)Updated attributes of the entity</p>
+</div>
+<div class="section" id="operation-delete">
+<h4>3.4.3.1.4. Operation DELETE<a class="headerlink" href="#operation-delete" 
title="Permalink to this headline">.</a></h4>
+<p>Delete an entity</p>
+<p><strong>Request properties:</strong></p>
+<dl class="docutils">
+<dt><em>type</em> (string)</dt>
+<dd>Type of desired entity.</dd>
+<dt><em>name</em> (string)</dt>
+<dd>Name of desired entity. Must supply name or identity.</dd>
+<dt><em>identity</em> (string)</dt>
+<dd>Identity of desired entity. Must supply name or identity.</dd>
+</dl>
+</div>
+</div>
+<div class="section" id="operations-for-org-amqp-management-entity-type">
+<h3>3.4.3.2. Operations for <cite>org.amqp.management</cite> entity type<a 
class="headerlink" href="#operations-for-org-amqp-management-entity-type" 
title="Permalink to this headline">.</a></h3>
+<div class="section" id="id1">
+<h4>3.4.3.2.1. Operation GET-TYPES<a class="headerlink" href="#id1" 
title="Permalink to this headline">.</a></h4>
+<p>Get the set of entity types and their inheritance relationships</p>
+<p><strong>Request properties:</strong></p>
+<dl class="docutils">
+<dt><em>entityType</em> (string)</dt>
+<dd>If set, restrict query results to entities that extend (directly or 
indirectly) this type</dd>
+<dt><em>identity</em> (string)</dt>
+<dd>Set to the value <cite>self</cite></dd>
+</dl>
+<p><strong>Response body</strong>  (map)A map where each key is an entity type 
name (string) and the corresponding value is the list of the entity types 
(strings) that it extends.</p>
+</div>
+<div class="section" id="id2">
+<h4>3.4.3.2.2. Operation GET-ATTRIBUTES<a class="headerlink" href="#id2" 
title="Permalink to this headline">.</a></h4>
+<p>Get the set of entity types and the annotations they implement</p>
+<p><strong>Request properties:</strong></p>
+<dl class="docutils">
+<dt><em>entityType</em> (string)</dt>
+<dd>If set, restrict query results to entities that extend (directly or 
indirectly) this type</dd>
+<dt><em>identity</em> (string)</dt>
+<dd>Set to the value <cite>self</cite></dd>
+</dl>
+<p><strong>Response body</strong>  (map)A map where each key is an entity type 
name (string) and the corresponding value is a list (of strings) of attributes 
on that entity type.</p>
+</div>
+<div class="section" id="id3">
+<h4>3.4.3.2.3. Operation GET-OPERATIONS<a class="headerlink" href="#id3" 
title="Permalink to this headline">.</a></h4>
+<p>Get the set of entity types and the operations they support</p>
+<p><strong>Request properties:</strong></p>
+<dl class="docutils">
+<dt><em>entityType</em> (string)</dt>
+<dd>If set, restrict query results to entities that extend (directly or 
indirectly) this type</dd>
+<dt><em>identity</em> (string)</dt>
+<dd>Set to the value <cite>self</cite></dd>
+</dl>
+<p><strong>Response body</strong>  (map)A map where each key is an entity type 
name (string) and the corresponding value is the list of operation names 
(strings) that it supports.</p>
+</div>
+<div class="section" id="id4">
+<h4>3.4.3.2.4. Operation GET-ANNOTATIONS<a class="headerlink" href="#id4" 
title="Permalink to this headline">.</a></h4>
+<p><strong>Request properties:</strong></p>
+<dl class="docutils">
+<dt><em>entityType</em> (string)</dt>
+<dd>If set, restrict query results to entities that extend (directly or 
indirectly) this type</dd>
+<dt><em>identity</em> (string)</dt>
+<dd>Set to the value <cite>self</cite></dd>
+</dl>
+<p><strong>Response body</strong>  (map)A map where each key is an entity type 
name (string) and the corresponding value is the list of annotations (strings) 
that it  implements.</p>
+</div>
+<div class="section" id="id5">
+<h4>3.4.3.2.5. Operation QUERY<a class="headerlink" href="#id5" 
title="Permalink to this headline">.</a></h4>
+<p>Query for attribute values of multiple entities.</p>
+<p><strong>Request body</strong>  (map)A map containing the key 
<cite>attributeNames</cite> with value a list of (string) attribute names to 
return. If the list or the map is empty or the body is missing all attributes 
are returned.</p>
+<p><strong>Request properties:</strong></p>
+<dl class="docutils">
+<dt><em>count</em> (integer)</dt>
+<dd>If set, specifies the number of entries from the result set to return. If 
not set return all from <cite>offset</cite></dd>
+<dt><em>entityType</em> (string)</dt>
+<dd>If set, restrict query results to entities that extend (directly or 
indirectly) this type</dd>
+<dt><em>identity</em> (string)</dt>
+<dd>Set to the value <cite>self</cite></dd>
+<dt><em>offset</em> (integer)</dt>
+<dd>If set, specifies the number of the first element of the result set to be 
returned.</dd>
+</dl>
+<p><strong>Response body</strong>  (map)A map with two entries. 
<cite>attributeNames</cite> is a list of the attribute names returned. 
<cite>results</cite> is a list of lists each containing the attribute values 
for a single entity in the same order as the names in the 
<cite>attributeNames</cite> entry. If an attribute name is not applicable for 
an entity then the corresponding value is <cite>null</cite></p>
+<p><strong>Response properties:</strong></p>
+<dl class="docutils">
+<dt><em>count</em> (integer)</dt>
+<dd>Number of results returned</dd>
+<dt><em>identity</em> (string)</dt>
+<dd>Set to the value <cite>self</cite></dd>
+</dl>
+</div>
+<div class="section" id="id6">
+<h4>3.4.3.2.6. Operation GET-MGMT-NODES<a class="headerlink" href="#id6" 
title="Permalink to this headline">.</a></h4>
+<p>Get the addresses of all management nodes known to this router</p>
+<p><strong>Request properties:</strong></p>
+<dl class="docutils">
+<dt><em>identity</em> (string)</dt>
+<dd>Set to the value <cite>self</cite></dd>
+</dl>
+<p><strong>Response body</strong>  (list)A list of addresses (strings) of 
management nodes known to this management node.</p>
+</div>
+</div>
+<div class="section" id="operations-for-management-entity-type">
+<h3>3.4.3.3. Operations for <cite>management</cite> entity type<a 
class="headerlink" href="#operations-for-management-entity-type" 
title="Permalink to this headline">.</a></h3>
+<div class="section" id="id7">
+<h4>3.4.3.3.1. Operation GET-SCHEMA-JSON<a class="headerlink" href="#id7" 
title="Permalink to this headline">.</a></h4>
+<p>Get the qdrouterd schema for this router in JSON format</p>
+<p><strong>Request properties:</strong></p>
+<dl class="docutils">
+<dt><em>indent</em> (integer)</dt>
+<dd>Number of spaces to indent the formatted result. If not specified, the 
result is in minimal format, no unnecessary spaces or newlines.</dd>
+<dt><em>identity</em> (string)</dt>
+<dd>Set to the value <cite>self</cite></dd>
+</dl>
+<p><strong>Response body</strong>  (string)The qdrouter schema as a JSON 
string.</p>
+</div>
+<div class="section" id="id8">
+<h4>3.4.3.3.2. Operation GET-LOG<a class="headerlink" href="#id8" 
title="Permalink to this headline">.</a></h4>
+<p>Get recent log entries from the router.</p>
+<p><strong>Request properties:</strong></p>
+<dl class="docutils">
+<dt><em>limit</em> (integer)</dt>
+<dd>Maximum number of log entries to get.</dd>
+<dt><em>identity</em> (string)</dt>
+<dd>Set to the value <cite>self</cite></dd>
+</dl>
+<p><strong>Response body</strong>  (string)A list of log entries where each 
entry is a list of: module name(string), level name(string), message 
text(string), file name(string or None), line number(integer or None) , 
timestamp(integer)</p>
+</div>
+<div class="section" id="id9">
+<h4>3.4.3.3.3. Operation GET-SCHEMA<a class="headerlink" href="#id9" 
title="Permalink to this headline">.</a></h4>
+<p>Get the qdrouterd schema for this router in AMQP map format</p>
+<p><strong>Request properties:</strong></p>
+<dl class="docutils">
+<dt><em>identity</em> (string)</dt>
+<dd>Set to the value <cite>self</cite></dd>
+</dl>
+<p><strong>Response body</strong>  (map)The qdrouter schema as a map.</p>
+</div>
+</div>
+</div>
+</div>
+

Added: 
qpid/site/input/releases/qpid-dispatch-master/book/technical_details.html.in
URL: 
http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-dispatch-master/book/technical_details.html.in?rev=1705904&view=auto
==============================================================================
--- 
qpid/site/input/releases/qpid-dispatch-master/book/technical_details.html.in 
(added)
+++ 
qpid/site/input/releases/qpid-dispatch-master/book/technical_details.html.in 
Tue Sep 29 18:03:12 2015
@@ -0,0 +1,62 @@
+
+  
+  <div class="section" id="technical-details-and-specifications">
+<h1>3. Technical Details and Specifications<a class="headerlink" 
href="#technical-details-and-specifications" title="Permalink to this 
headline">.</a></h1>
+<div class="toctree-wrapper compound">
+<ul>
+<li class="toctree-l1"><a class="reference internal" 
href="client_compatibility.html">3.1. Client Compatibility</a></li>
+<li class="toctree-l1"><a class="reference internal" 
href="addressing.html">3.2. Addressing</a><ul>
+<li class="toctree-l2"><a class="reference internal" 
href="addressing.html#routing-patterns">3.2.1. Routing patterns</a></li>
+<li class="toctree-l2"><a class="reference internal" 
href="addressing.html#routing-mechanisms">3.2.2. Routing mechanisms</a><ul>
+<li class="toctree-l3"><a class="reference internal" 
href="addressing.html#message-routing">3.2.2.1. Message routing</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li class="toctree-l1"><a class="reference internal" 
href="amqp-mapping.html">3.3. AMQP Mapping</a><ul>
+<li class="toctree-l2"><a class="reference internal" 
href="amqp-mapping.html#message-annotations">3.3.1. Message Annotations</a></li>
+<li class="toctree-l2"><a class="reference internal" 
href="amqp-mapping.html#source-target-capabilities">3.3.2. Source/Target 
Capabilities</a></li>
+<li class="toctree-l2"><a class="reference internal" 
href="amqp-mapping.html#dynamic-node-properties">3.3.3. 
Dynamic-Node-Properties</a></li>
+<li class="toctree-l2"><a class="reference internal" 
href="amqp-mapping.html#addresses-and-address-formats">3.3.4. Addresses and 
Address Formats</a><ul>
+<li class="toctree-l3"><a class="reference internal" 
href="amqp-mapping.html#address-patterns">3.3.4.1. Address Patterns</a></li>
+<li class="toctree-l3"><a class="reference internal" 
href="amqp-mapping.html#supported-addresses">3.3.4.2. Supported 
Addresses</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" 
href="amqp-mapping.html#implementation-of-the-amqp-management-specification">3.3.5.
 Implementation of the AMQP Management Specification</a></li>
+</ul>
+</li>
+<li class="toctree-l1"><a class="reference internal" href="schema.html">3.4. 
Management Schema</a><ul>
+<li class="toctree-l2"><a class="reference internal" 
href="schema.html#configuration-entities">3.4.1. Configuration Entities</a><ul>
+<li class="toctree-l3"><a class="reference internal" 
href="schema.html#container">3.4.1.1. container</a></li>
+<li class="toctree-l3"><a class="reference internal" 
href="schema.html#router">3.4.1.2. router</a></li>
+<li class="toctree-l3"><a class="reference internal" 
href="schema.html#listener">3.4.1.3. listener</a></li>
+<li class="toctree-l3"><a class="reference internal" 
href="schema.html#connector">3.4.1.4. connector</a></li>
+<li class="toctree-l3"><a class="reference internal" 
href="schema.html#log">3.4.1.5. log</a></li>
+<li class="toctree-l3"><a class="reference internal" 
href="schema.html#fixedaddress">3.4.1.6. fixedAddress</a></li>
+<li class="toctree-l3"><a class="reference internal" 
href="schema.html#waypoint">3.4.1.7. waypoint</a></li>
+<li class="toctree-l3"><a class="reference internal" 
href="schema.html#linkroutepattern">3.4.1.8. linkRoutePattern</a></li>
+<li class="toctree-l3"><a class="reference internal" 
href="schema.html#console">3.4.1.9. console</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" 
href="schema.html#operational-entities">3.4.2. Operational Entities</a><ul>
+<li class="toctree-l3"><a class="reference internal" 
href="schema.html#org-amqp-management">3.4.2.1. org.amqp.management</a></li>
+<li class="toctree-l3"><a class="reference internal" 
href="schema.html#management">3.4.2.2. management</a></li>
+<li class="toctree-l3"><a class="reference internal" 
href="schema.html#router-link">3.4.2.3. router.link</a></li>
+<li class="toctree-l3"><a class="reference internal" 
href="schema.html#router-address">3.4.2.4. router.address</a></li>
+<li class="toctree-l3"><a class="reference internal" 
href="schema.html#router-node">3.4.2.5. router.node</a></li>
+<li class="toctree-l3"><a class="reference internal" 
href="schema.html#connection">3.4.2.6. connection</a></li>
+<li class="toctree-l3"><a class="reference internal" 
href="schema.html#allocator">3.4.2.7. allocator</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" 
href="schema.html#management-operations">3.4.3. Management Operations</a><ul>
+<li class="toctree-l3"><a class="reference internal" 
href="schema.html#operations-for-all-entity-types">3.4.3.1. Operations for all 
entity types</a></li>
+<li class="toctree-l3"><a class="reference internal" 
href="schema.html#operations-for-org-amqp-management-entity-type">3.4.3.2. 
Operations for <cite>org.amqp.management</cite> entity type</a></li>
+<li class="toctree-l3"><a class="reference internal" 
href="schema.html#operations-for-management-entity-type">3.4.3.3. Operations 
for <cite>management</cite> entity type</a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+</div>
+</div>
+

Added: qpid/site/input/releases/qpid-dispatch-master/book/tools.html.in
URL: 
http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-dispatch-master/book/tools.html.in?rev=1705904&view=auto
==============================================================================
--- qpid/site/input/releases/qpid-dispatch-master/book/tools.html.in (added)
+++ qpid/site/input/releases/qpid-dispatch-master/book/tools.html.in Tue Sep 29 
18:03:12 2015
@@ -0,0 +1,70 @@
+
+  
+  <div class="section" id="tools">
+<h1>2.2. Tools<a class="headerlink" href="#tools" title="Permalink to this 
headline">.</a></h1>
+<div class="section" id="qdstat">
+<h2>2.2.1. qdstat<a class="headerlink" href="#qdstat" title="Permalink to this 
headline">.</a></h2>
+<p><em>qdstat</em> is a command line tool that lets you view the status of a
+Dispatch Router. The following options are useful for seeing that the
+router is doing:</p>
+<table border="1" class="docutils">
+<colgroup>
+<col width="11%" />
+<col width="89%" />
+</colgroup>
+<thead valign="bottom">
+<tr class="row-odd"><th class="head"><em>Option</em></th>
+<th class="head"><em>Description</em></th>
+</tr>
+</thead>
+<tbody valign="top">
+<tr class="row-even"><td>-l</td>
+<td>Print a list of AMQP links attached to the router. Links are
+unidirectional. Outgoing links are usually associated with a subscription
+address. The tool distinguishes between <em>endpoint</em> links and 
<em>router</em>
+links. Endpoint links are attached to clients using the router. Router links
+are attached to other routers in a network of routbers.</td>
+</tr>
+<tr class="row-odd"><td>-a</td>
+<td>Print a list of addresses known to the router.</td>
+</tr>
+<tr class="row-even"><td>-n</td>
+<td>Print a list of known routers in the network.</td>
+</tr>
+<tr class="row-odd"><td>-c</td>
+<td>Print a list of connections to the router.</td>
+</tr>
+</tbody>
+</table>
+<p>For complete details see the <cite>qdstat(8)</cite> man page and the output 
of
+<cite>qdstat &#8211;help</cite>.</p>
+</div>
+<div class="section" id="qdmanage">
+<h2>2.2.2. qdmanage<a class="headerlink" href="#qdmanage" title="Permalink to 
this headline">.</a></h2>
+<p><em>qdmanage</em> is a general-purpose AMQP management client that allows 
you
+to not only view but modify the configuration of a running dispatch
+router.</p>
+<p>For example you can query all the connection entities in the router:</p>
+<div class="highlight-python"><div class="highlight"><pre>$ qdmanage query 
--type connection
+</pre></div>
+</div>
+<p>To enable logging debug and higher level messages by default:</p>
+<div class="highlight-python"><div class="highlight"><pre>$ qdmanage update 
log/DEFAULT enable=debug+
+</pre></div>
+</div>
+<p>In fact, everything that can be configured in the configuration file can
+also be created in a running router via management. For example to
+create a new listener in a running router:</p>
+<div class="highlight-python"><div class="highlight"><pre>$ qdmanage create 
type=listener port=5555
+</pre></div>
+</div>
+<p>Now you can connect to port 5555, for exampple:</p>
+<div class="highlight-python"><div class="highlight"><pre>$ qdmanage query -b 
localhost:5555 --type listener
+</pre></div>
+</div>
+<p>For complete details see the <cite>qdmanage(8)</cite> man page and the 
output of
+<cite>qdmanage &#8211;help</cite>. Also for details of what can be configured 
see the
+<cite>qdrouterd.conf(5)</cite> man page.</p>
+</div>
+</div>
+

Added: qpid/site/input/releases/qpid-dispatch-master/book/using.html.in
URL: 
http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-dispatch-master/book/using.html.in?rev=1705904&view=auto
==============================================================================
--- qpid/site/input/releases/qpid-dispatch-master/book/using.html.in (added)
+++ qpid/site/input/releases/qpid-dispatch-master/book/using.html.in Tue Sep 29 
18:03:12 2015
@@ -0,0 +1,26 @@
+
+  
+  <div class="section" id="using-qpid-dispatch">
+<h1>2. Using Qpid Dispatch<a class="headerlink" href="#using-qpid-dispatch" 
title="Permalink to this headline">.</a></h1>
+<div class="toctree-wrapper compound">
+<ul>
+<li class="toctree-l1"><a class="reference internal" 
href="default_config.html">2.1. Configuration</a></li>
+<li class="toctree-l1"><a class="reference internal" href="tools.html">2.2. 
Tools</a><ul>
+<li class="toctree-l2"><a class="reference internal" 
href="tools.html#qdstat">2.2.1. qdstat</a></li>
+<li class="toctree-l2"><a class="reference internal" 
href="tools.html#qdmanage">2.2.2. qdmanage</a></li>
+</ul>
+</li>
+<li class="toctree-l1"><a class="reference internal" 
href="basic_usage.html">2.3. Basic Usage and Examples</a><ul>
+<li class="toctree-l2"><a class="reference internal" 
href="basic_usage.html#standalone-and-interior-modes">2.3.1. Standalone and 
Interior Modes</a></li>
+<li class="toctree-l2"><a class="reference internal" 
href="basic_usage.html#mobile-subscribers">2.3.2. Mobile Subscribers</a></li>
+<li class="toctree-l2"><a class="reference internal" 
href="basic_usage.html#dynamic-reply-to">2.3.3. Dynamic Reply-To</a></li>
+</ul>
+</li>
+<li class="toctree-l1"><a class="reference internal" 
href="link_routing.html">2.4. Link Routing</a><ul>
+<li class="toctree-l2"><a class="reference internal" 
href="link_routing.html#configuration">2.4.1. Configuration</a></li>
+</ul>
+</li>
+</ul>
+</div>
+</div>
+

Added: qpid/site/input/releases/qpid-dispatch-master/index.md
URL: 
http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-dispatch-master/index.md?rev=1705904&view=auto
==============================================================================
--- qpid/site/input/releases/qpid-dispatch-master/index.md (added)
+++ qpid/site/input/releases/qpid-dispatch-master/index.md Tue Sep 29 18:03:12 
2015
@@ -0,0 +1,51 @@
+;;
+;; Licensed to the Apache Software Foundation (ASF) under one
+;; or more contributor license agreements.  See the NOTICE file
+;; distributed with this work for additional information
+;; regarding copyright ownership.  The ASF licenses this file
+;; to you under the Apache License, Version 2.0 (the
+;; "License"); you may not use this file except in compliance
+;; with the License.  You may obtain a copy of the License at
+;; 
+;;   http://www.apache.org/licenses/LICENSE-2.0
+;; 
+;; Unless required by applicable law or agreed to in writing,
+;; software distributed under the License is distributed on an
+;; "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+;; KIND, either express or implied.  See the License for the
+;; specific language governing permissions and limitations
+;; under the License.
+;;
+
+# Qpid Dispatch Development
+
+<div class="feature" markdown="1">
+
+## Warning! This is a snapshot of work in progress
+
+Code and documentation found here may be unstable, incorrect, or
+incomplete.  For a smoother experience, see the [current stable
+release]({{current_dispatch_release_url}}/index.html).
+
+This content was generated at 12:16  on Tuesday, 29 September 2015.
+
+</div>
+
+## Documentation
+
+
+<div class="two-column" markdown="1">
+
+ - [Installing Qpid 
Dispatch](https://git-wip-us.apache.org/repos/asf?p=qpid-dispatch.git;a=blob_plain;f=README;hb={release})
+ - [Dispatch router book](book/book.html)
+ - [qdrouterd](man/qdrouterd.html) - Router daemon
+ - [qdrouterd.conf](man/qdrouterd.conf.html) - Daemon configuration
+ - [qdstat](man/qdstat.html) - Get router statistics
+ - [qdmanage](man/qdmanage.html) - Manage the router
+
+</div>
+
+
+## More information
+
+- [Source 
repository](https://git-wip-us.apache.org/repos/asf/qpid-dispatch.git)
\ No newline at end of file

Added: qpid/site/input/releases/qpid-dispatch-master/man/qdmanage.html.in
URL: 
http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-dispatch-master/man/qdmanage.html.in?rev=1705904&view=auto
==============================================================================
--- qpid/site/input/releases/qpid-dispatch-master/man/qdmanage.html.in (added)
+++ qpid/site/input/releases/qpid-dispatch-master/man/qdmanage.html.in Tue Sep 
29 18:03:12 2015
@@ -0,0 +1,139 @@
+
+  
+  <div class="section" id="qdmanage-manual-page">
+<h1>qdmanage manual page<a class="headerlink" href="#qdmanage-manual-page" 
title="Permalink to this headline">.</a></h1>
+<div class="section" id="synopsis">
+<h2>Synopsis<a class="headerlink" href="#synopsis" title="Permalink to this 
headline">.</a></h2>
+<p>qdmanage <em>operation</em> [<em>options...</em>] 
[<em>arguments...</em>]</p>
+</div>
+<div class="section" id="description">
+<h2>Description<a class="headerlink" href="#description" title="Permalink to 
this headline">.</a></h2>
+<p>An AMQP management client for use with qdrouterd. Sends AMQP management
+operations requests and prints the response in JSON format. This is a
+generic AMQP management tool and can be used with any standard AMQP
+managed endpoint, not just with qdrouter.</p>
+</div>
+<div class="section" id="operations">
+<h2>Operations<a class="headerlink" href="#operations" title="Permalink to 
this headline">.</a></h2>
+<dl class="docutils">
+<dt><cite>query</cite> [<em>ATTR</em>...]</dt>
+<dd>Print the attributes named in the ATTR list or all attributes if
+none are listed. Print attributes for all entities by default, use
+&#8211;type, &#8211;name and &#8211;identity options to restrict what is 
printed.</dd>
+<dt><cite>create</cite> [<em>ATTR=VALUE</em>...]</dt>
+<dd>Create a new entity with the specified attributes. With the &#8211;stdin
+option, read attributes from stdin. This can be a JSON map of
+attributes to create a single entity, or a JSON list of maps to
+create multiple entitiees.</dd>
+<dt><cite>read</cite></dt>
+<dd>Print the attributes of an entity specified by the &#8211;name or
+&#8211;identity options. With the &#8211;stdin option, create entities based
+on data from stdin. This can be a JSON map of attributes to create a
+single entity, or a JSON list of maps to create multiple entitiees.</dd>
+<dt><cite>update</cite> [<em>ATTR=VALUE</em>...]</dt>
+<dd>Update the attributes of an existing entity. With the &#8211;stdin
+option, read attributes from stdin. This can be a JSON map of
+attributes to update a single entity, or a JSON list of maps to
+update multiple entitiees. If an ATTR name is listed with no =VALUE,
+that attribute will be deleted from the entity.</dd>
+<dt><cite>delete</cite></dt>
+<dd>Delete an entity specified by the &#8211;name or &#8211;identity 
options.</dd>
+<dt><cite>get-types</cite> [<em>TYPE</em>]</dt>
+<dd>List entity types with their base types. With no arguments list all
+types.</dd>
+<dt><cite>get-operations</cite> [<em>TYPE</em>]</dt>
+<dd>List entity types with their operations. With no arguments list all
+types.</dd>
+<dt><cite>get-attributes</cite> [<em>TYPE</em>]</dt>
+<dd>List entity types with their attributes. With no arguments list all
+types.</dd>
+<dt><cite>get-annotations</cite> [<em>TYPE</em>]</dt>
+<dd>List entity types with their annotations. With no arguments list all
+types.</dd>
+<dt><cite>get-mgmt-nodes</cite></dt>
+<dd>List all other known management nodes connected to this one.</dd>
+<dt><cite>get-json-schema</cite> [<em>INDENT</em>]</dt>
+<dd>Get the router schema in JSON format. Optional integer indent for
+formatted output.</dd>
+<dt><cite>get-log</cite> [<em>INDENT</em>]</dt>
+<dd>Get recent log entries from the router.</dd>
+</dl>
+</div>
+<div class="section" id="options">
+<h2>Options<a class="headerlink" href="#options" title="Permalink to this 
headline">.</a></h2>
+<p>-h, &#8211;help
+:   show this help message and exit</p>
+<p>&#8211;version
+:   Print version and exit.</p>
+<p>&#8211;type=TYPE
+:   Type of entity to operate on.</p>
+<p>&#8211;name=NAME
+:   Name of entity to operate on.</p>
+<p>&#8211;identity=ID
+:   Identity of entity to operate on.</p>
+<p>&#8211;indent=INDENT
+:   Pretty-printing indent. -1 means don&#8217;t pretty-print (default 2)</p>
+<p>&#8211;stdin
+:   Read attributes as JSON map or list of maps from stdin.</p>
+<p>&#8211;body=BODY
+:   JSON value to use as body of a non-standard operation call.</p>
+<p>&#8211;properties=PROPERTIES
+:   JSON map to use as properties for a non-standard operation call.</p>
+<div class="section" id="connection-options">
+<h3>Connection Options<a class="headerlink" href="#connection-options" 
title="Permalink to this headline">.</a></h3>
+<p>-b URL, &#8211;bus=URL
+:   URL of the messaging bus to connect to (default 0.0.0.0)</p>
+<p>-r ROUTER-ID, &#8211;router=ROUTER-ID
+:   Router to be queried</p>
+<p>-t SECS, &#8211;timeout=SECS
+:   Maximum time to wait for connection in seconds (default 5)</p>
+<p>&#8211;ssl-certificate=CERT
+:   Client SSL certificate (PEM Format)</p>
+<p>&#8211;ssl-key=KEY
+:   Client SSL private key (PEM Format)</p>
+<p>&#8211;ssl-trustfile=TRUSTED-CA-DB
+:   Trusted Certificate Authority Database file (PEM Format)</p>
+<p>&#8211;ssl-password=PASSWORD
+:   Certificate password, will be prompted if not specifed.</p>
+</div>
+</div>
+<div class="section" id="files">
+<h2>Files<a class="headerlink" href="#files" title="Permalink to this 
headline">.</a></h2>
+<dl class="docutils">
+<dt>/usr/local/share/doc/qpid-dispatch/qdrouter.json</dt>
+<dd>Management schema for qdrouterd.</dd>
+<dt>/usr/local/share/doc/qpid-dispatch/qdrouter.json.readme.txt</dt>
+<dd>Explanation of the management schema.</dd>
+</dl>
+</div>
+<div class="section" id="examples">
+<h2>Examples<a class="headerlink" href="#examples" title="Permalink to this 
headline">.</a></h2>
+<p>Show the logging configuration</p>
+<div class="highlight-python"><div class="highlight"><pre>qdmanage query 
--type=log
+</pre></div>
+</div>
+<p>Enable debug and higher log messages by default:</p>
+<div class="highlight-python"><div class="highlight"><pre>qdmanage udpdate 
name=log/DEFAULT enable=debug+
+</pre></div>
+</div>
+<p>Enable trace log messages only for the MESSAGE moudle and direct MESSAGE
+logs to the file &#8220;test.log&#8221;</p>
+<div class="highlight-python"><div class="highlight"><pre>qdmanage udpdate 
name=log/MESSAGE enable=trace output=test.log
+</pre></div>
+</div>
+<p>Set MESSAGE logging back to the default:</p>
+<div class="highlight-python"><div class="highlight"><pre>qdmanage udpdate 
name=log/MESSAGE enable=default
+</pre></div>
+</div>
+<p>Disable MESSAGE logging:</p>
+<div class="highlight-python"><div class="highlight"><pre>qdmanage udpdate 
name=log/MESSAGE enable=none
+</pre></div>
+</div>
+</div>
+<div class="section" id="see-also">
+<h2>See also<a class="headerlink" href="#see-also" title="Permalink to this 
headline">.</a></h2>
+<p><em>qdrouterd(8)</em>, <em>qdstat(8)</em>, <em>qdrouterd.conf(5)</em></p>
+<p><a class="reference external" 
href="http://qpid.apache.org/components/dispatch-router";>http://qpid.apache.org/components/dispatch-router</a></p>
+</div>
+</div>
+

Added: qpid/site/input/releases/qpid-dispatch-master/man/qdrouterd.conf.html.in
URL: 
http://svn.apache.org/viewvc/qpid/site/input/releases/qpid-dispatch-master/man/qdrouterd.conf.html.in?rev=1705904&view=auto
==============================================================================
--- qpid/site/input/releases/qpid-dispatch-master/man/qdrouterd.conf.html.in 
(added)
+++ qpid/site/input/releases/qpid-dispatch-master/man/qdrouterd.conf.html.in 
Tue Sep 29 18:03:12 2015
@@ -0,0 +1,267 @@
+
+  
+  <div class="section" id="qdrouterd-conf-manual-page">
+<h1>qdrouterd.conf manual page<a class="headerlink" 
href="#qdrouterd-conf-manual-page" title="Permalink to this headline">.</a></h1>
+<div class="section" id="synopsis">
+<h2>Synopsis<a class="headerlink" href="#synopsis" title="Permalink to this 
headline">.</a></h2>
+<p>qdroutered.conf is the configuration file for the dispatch router.</p>
+</div>
+<div class="section" id="description">
+<h2>Description<a class="headerlink" href="#description" title="Permalink to 
this headline">.</a></h2>
+<p>The configuration file is made up of sections with this syntax:</p>
+<div class="highlight-python"><div class="highlight"><pre>SECTION-NAME {
+    ATTRIBUTE-NAME: ATTRIBUTE-VALUE
+    ATTRIBUTE-NAME: ATTRIBUTE-VALUE
+    ...
+}
+</pre></div>
+</div>
+<p>There are two types of sections:</p>
+<p><em>Configuration sections</em> correspond to configuration entities. They 
can be queried and
+configured via management tools as well as via the configuration file.</p>
+<p><em>Annotation sections</em> define a group of attribute values that can be 
included in
+one or more entity sections.</p>
+<p>For example you can define an &#8220;ssl-profile&#8221; annotation section 
with SSL credentials
+that can be included in multiple &#8220;listener&#8221; entities. Here&#8217;s 
an example, note
+how the &#8216;ssl-profile&#8217; attribute of &#8216;listener&#8217; sections 
references the &#8216;name&#8217;
+attribute of &#8216;ssl-profile&#8217; sections.</p>
+<div class="highlight-python"><div class="highlight"><pre>ssl-profile {
+    name: ssl-profile-one
+    cert-db: ca-certificate-1.pem
+    cert-file: server-certificate-1.pem
+    key-file: server-private-key.pem
+}
+
+listener {
+    ssl-profile: ssl-profile-one
+    addr: 0.0.0.0
+    port: 20102
+    sasl-mechanisms: ANONYMOUS
+}
+</pre></div>
+</div>
+</div>
+<div class="section" id="annotation-sections">
+<h2>Annotation Sections<a class="headerlink" href="#annotation-sections" 
title="Permalink to this headline">.</a></h2>
+<div class="section" id="addrport">
+<h3>addrPort<a class="headerlink" href="#addrport" title="Permalink to this 
headline">.</a></h3>
+<p>Attributes for internet address and port.</p>
+<p>Used by: <strong>listener</strong>, <strong>connector</strong>.</p>
+<dl class="docutils">
+<dt><em>addr</em> (string, default=&#8216;127.0.0.1&#8217;)</dt>
+<dd>IP address: ipv4 or ipv6 literal or a host name.</dd>
+<dt><em>port</em> (string, default=&#8217;amqp&#8217;)</dt>
+<dd>Port number or symbolic service name.</dd>
+</dl>
+</div>
+<div class="section" id="connectionrole">
+<h3>connectionRole<a class="headerlink" href="#connectionrole" 
title="Permalink to this headline">.</a></h3>
+<p>Attribute for the role of a connection.</p>
+<p>Used by: <strong>listener</strong>, <strong>connector</strong>.</p>
+<dl class="docutils">
+<dt><em>role</em> (One of [&#8216;normal&#8217;, &#8216;inter-router&#8217;, 
&#8216;on-demand&#8217;], default=&#8217;normal&#8217;)</dt>
+<dd>The role of an established connection. In the normal role, the connection 
is assumed to be used for AMQP clients that are doing normal message delivery 
over the connection.  In the inter-router role, the connection is assumed to be 
to another router in the network.  Inter-router discovery and routing protocols 
can only be used over inter-router connections.</dd>
+</dl>
+</div>
+<div class="section" id="sslprofile">
+<h3>sslProfile<a class="headerlink" href="#sslprofile" title="Permalink to 
this headline">.</a></h3>
+<p>Attributes for setting TLS/SSL configuration for connections.</p>
+<p>Used by: <strong>listener</strong>, <strong>connector</strong>.</p>
+<dl class="docutils">
+<dt><em>certDb</em> (path)</dt>
+<dd>The path to the database that contains the public certificates of trusted 
certificate authorities (CA).</dd>
+<dt><em>certFile</em> (path)</dt>
+<dd>The path to the file containing the PEM-formatted public certificate to be 
used on the local end of any connections using this profile.</dd>
+<dt><em>keyFile</em> (path)</dt>
+<dd>The path to the file containing the PEM-formatted private key for the 
above certificate.</dd>
+<dt><em>passwordFile</em> (path)</dt>
+<dd>If the above private key is password protected, this is the path to a file 
containing the password that unlocks the certificate key.</dd>
+<dt><em>password</em> (string)</dt>
+<dd>An alternative to storing the password in a file referenced by 
passwordFile is to supply the password right here in the configuration file.  
This option can be used by supplying the password in the &#8216;password&#8217; 
option.  Don&#8217;t use both password and passwordFile in the same 
profile.</dd>
+</dl>
+</div>
+</div>
+<div class="section" id="configuration-sections">
+<h2>Configuration Sections<a class="headerlink" href="#configuration-sections" 
title="Permalink to this headline">.</a></h2>
+<div class="section" id="container">
+<h3>container<a class="headerlink" href="#container" title="Permalink to this 
headline">.</a></h3>
+<p>Attributes related to the AMQP container.</p>
+<dl class="docutils">
+<dt><em>containerName</em> (string)</dt>
+<dd>The  name of the AMQP container.  If not specified, the container name 
will be set to a value of the container&#8217;s choosing.  The automatically 
assigned container name is not guaranteed to be persistent across restarts of 
the container.</dd>
+<dt><em>workerThreads</em> (integer, default=1)</dt>
+<dd>The number of threads that will be created to process message traffic and 
other application work (timers, non-amqp file descriptors, etc.) .</dd>
+<dt><em>debugDump</em> (path)</dt>
+<dd>A file to dump debugging information that can&#8217;t be logged 
normally.</dd>
+<dt><em>saslConfigPath</em> (path)</dt>
+<dd>Absolute path to the SASL configuration file.</dd>
+<dt><em>saslConfigName</em> (string, default=&#8217;qdrouterd&#8217;)</dt>
+<dd>Name of the SASL configuration.  This string + &#8216;.conf&#8217; is the 
name of the configuration file.</dd>
+</dl>
+</div>
+<div class="section" id="router">
+<h3>router<a class="headerlink" href="#router" title="Permalink to this 
headline">.</a></h3>
+<p>Tracks peer routers and computes routes to destinations.</p>
+<dl class="docutils">
+<dt><em>routerId</em> (string)</dt>
+<dd>Router&#8217;s unique identity.</dd>
+<dt><em>mode</em> (One of [&#8216;standalone&#8217;, &#8216;interior&#8217;, 
&#8216;edge&#8217;, &#8216;endpoint&#8217;], 
default=&#8217;standalone&#8217;)</dt>
+<dd>In standalone mode, the router operates as a single component.  It does 
not participate in the routing protocol and therefore will not cooperate with 
other routers. In interior mode, the router operates in cooperation with other 
interior routers in an interconnected network.  In edge mode, the router 
operates with an up link into an interior router network. Edge routers are 
typically used as connection concentrators or as security firewalls for access 
into the interior network.</dd>
+<dt><em>helloInterval</em> (integer, default=1)</dt>
+<dd>Interval in seconds between HELLO messages sent to neighbor routers.</dd>
+<dt><em>helloMaxAge</em> (integer, default=3)</dt>
+<dd>Time in seconds after which a neighbor is declared lost if no HELLO is 
received.</dd>
+<dt><em>raInterval</em> (integer, default=30)</dt>
+<dd>Interval in seconds between Router-Advertisements sent to all routers in a 
stable network.</dd>
+<dt><em>raIntervalFlux</em> (integer, default=4)</dt>
+<dd>Interval in seconds between Router-Advertisements sent to all routers 
during topology fluctuations.</dd>
+<dt><em>remoteLsMaxAge</em> (integer, default=60)</dt>
+<dd>Time in seconds after which link state is declared stale if no RA is 
received.</dd>
+<dt><em>mobileAddrMaxAge</em> (integer, default=60)</dt>
+<dd>Deprecated - This value is no longer used in the router.</dd>
+</dl>
+</div>
+<div class="section" id="listener">
+<h3>listener<a class="headerlink" href="#listener" title="Permalink to this 
headline">.</a></h3>
+<p>Listens for incoming connections to the router.</p>
+<p>Annotations: <strong>addrPort</strong>, <strong>connectionRole</strong>, 
<strong>sslProfile</strong>.</p>
+<dl class="docutils">
+<dt><em>addr</em> (string, default=&#8216;127.0.0.1&#8217;)</dt>
+<dd>IP address: ipv4 or ipv6 literal or a host name.</dd>
+<dt><em>port</em> (string, default=&#8217;amqp&#8217;)</dt>
+<dd>Port number or symbolic service name.</dd>
+<dt><em>role</em> (One of [&#8216;normal&#8217;, &#8216;inter-router&#8217;, 
&#8216;on-demand&#8217;], default=&#8217;normal&#8217;)</dt>
+<dd>The role of an established connection. In the normal role, the connection 
is assumed to be used for AMQP clients that are doing normal message delivery 
over the connection.  In the inter-router role, the connection is assumed to be 
to another router in the network.  Inter-router discovery and routing protocols 
can only be used over inter-router connections.</dd>
+<dt><em>certDb</em> (path)</dt>
+<dd>The path to the database that contains the public certificates of trusted 
certificate authorities (CA).</dd>
+<dt><em>certFile</em> (path)</dt>
+<dd>The path to the file containing the PEM-formatted public certificate to be 
used on the local end of any connections using this profile.</dd>
+<dt><em>keyFile</em> (path)</dt>
+<dd>The path to the file containing the PEM-formatted private key for the 
above certificate.</dd>
+<dt><em>passwordFile</em> (path)</dt>
+<dd>If the above private key is password protected, this is the path to a file 
containing the password that unlocks the certificate key.</dd>
+<dt><em>password</em> (string)</dt>
+<dd>An alternative to storing the password in a file referenced by 
passwordFile is to supply the password right here in the configuration file.  
This option can be used by supplying the password in the &#8216;password&#8217; 
option.  Don&#8217;t use both password and passwordFile in the same 
profile.</dd>
+<dt><em>saslMechanisms</em> (string)</dt>
+<dd>Comma separated list of accepted SASL authentication mechanisms.</dd>
+<dt><em>authenticatePeer</em> (boolean)</dt>
+<dd>yes: Require the peer&#8217;s identity to be authenticated; no: Do not 
require any authentication.</dd>
+<dt><em>requireEncryption</em> (boolean)</dt>
+<dd>yes: Require the connection to the peer to be encrypted; no: Permit 
non-encrypted communication with the peer</dd>
+<dt><em>requireSsl</em> (boolean)</dt>
+<dd>yes: Require the use of SSL or TLS on the connection; no: Allow clients to 
connect without SSL or TLS.</dd>
+<dt><em>trustedCerts</em> (path)</dt>
+<dd>This optional setting can be used to reduce the set of available CAs for 
client authentication.  If used, this setting must provide a path to a PEM file 
that contains the trusted certificates.</dd>
+<dt><em>maxFrameSize</em> (integer, default=65536)</dt>
+<dd>Defaults to 65536.  If specified, it is the maximum frame size in octets 
that will be used in the connection-open negotiation with a connected peer.  
The frame size is the largest contiguous set of uninterrupted data that can be 
sent for a message delivery over the connection. Interleaving of messages on 
different links is done at frame granularity.</dd>
+<dt><em>idleTimeoutSeconds</em> (integer, default=16)</dt>
+<dd>The idle timeout, in seconds, for connections through this listener.  If 
no frames are received on the connection for this time interval, the connection 
shall be closed.</dd>
+<dt><em>requirePeerAuth</em> (boolean)</dt>
+<dd>Deprecated - This attribute is now controlled by the authenticatePeer 
attribute.</dd>
+<dt><em>allowUnsecured</em> (boolean)</dt>
+<dd>Deprecated - This attribute is now controlled by the requireEncryption 
attribute.</dd>
+<dt><em>allowNoSasl</em> (boolean)</dt>
+<dd>Deprecated - This attribute is now controlled by the authenticatePeer 
attribute.</dd>
+<dt><em>stripAnnotations</em> (One of [&#8216;in&#8217;, &#8216;out&#8217;, 
&#8216;both&#8217;, &#8216;no&#8217;], default=&#8217;both&#8217;)</dt>
+<dd>[&#8216;in&#8217;, &#8216;out&#8217;, &#8216;both&#8217;, 
&#8216;no&#8217;] in: Strip the dispatch router specific annotations only on 
ingress; out: Strip the dispatch router specific annotations only on egress; 
both: Strip the dispatch router specific annotations on both ingress and 
egress; no - do not strip dispatch router specific annotations</dd>
+</dl>
+</div>
+<div class="section" id="connector">
+<h3>connector<a class="headerlink" href="#connector" title="Permalink to this 
headline">.</a></h3>
+<p>Establishes an outgoing connections from the router.</p>
+<p>Annotations: <strong>addrPort</strong>, <strong>connectionRole</strong>, 
<strong>sslProfile</strong>.</p>
+<dl class="docutils">
+<dt><em>addr</em> (string, default=&#8216;127.0.0.1&#8217;)</dt>
+<dd>IP address: ipv4 or ipv6 literal or a host name.</dd>
+<dt><em>port</em> (string, default=&#8217;amqp&#8217;)</dt>
+<dd>Port number or symbolic service name.</dd>
+<dt><em>role</em> (One of [&#8216;normal&#8217;, &#8216;inter-router&#8217;, 
&#8216;on-demand&#8217;], default=&#8217;normal&#8217;)</dt>
+<dd>The role of an established connection. In the normal role, the connection 
is assumed to be used for AMQP clients that are doing normal message delivery 
over the connection.  In the inter-router role, the connection is assumed to be 
to another router in the network.  Inter-router discovery and routing protocols 
can only be used over inter-router connections.</dd>
+<dt><em>certDb</em> (path)</dt>
+<dd>The path to the database that contains the public certificates of trusted 
certificate authorities (CA).</dd>
+<dt><em>certFile</em> (path)</dt>
+<dd>The path to the file containing the PEM-formatted public certificate to be 
used on the local end of any connections using this profile.</dd>
+<dt><em>keyFile</em> (path)</dt>
+<dd>The path to the file containing the PEM-formatted private key for the 
above certificate.</dd>
+<dt><em>passwordFile</em> (path)</dt>
+<dd>If the above private key is password protected, this is the path to a file 
containing the password that unlocks the certificate key.</dd>
+<dt><em>password</em> (string)</dt>
+<dd>An alternative to storing the password in a file referenced by 
passwordFile is to supply the password right here in the configuration file.  
This option can be used by supplying the password in the &#8216;password&#8217; 
option.  Don&#8217;t use both password and passwordFile in the same 
profile.</dd>
+<dt><em>saslMechanisms</em> (string)</dt>
+<dd>Comma separated list of accepted SASL authentication mechanisms.</dd>
+<dt><em>allowRedirect</em> (boolean, default=True)</dt>
+<dd>Allow the peer to redirect this connection to another address.</dd>
+<dt><em>maxFrameSize</em> (integer, default=65536)</dt>
+<dd>Maximum frame size in octets that will be used in the connection-open 
negotiation with a connected peer.  The frame size is the largest contiguous 
set of uninterrupted data that can be sent for a message delivery over the 
connection. Interleaving of messages on different links is done at frame 
granularity.</dd>
+<dt><em>idleTimeoutSeconds</em> (integer, default=16)</dt>
+<dd>The idle timeout, in seconds, for connections through this connector.  If 
no frames are received on the connection for this time interval, the connection 
shall be closed.</dd>
+<dt><em>stripAnnotations</em> (One of [&#8216;in&#8217;, &#8216;out&#8217;, 
&#8216;both&#8217;, &#8216;no&#8217;], default=&#8217;both&#8217;)</dt>
+<dd>[&#8216;in&#8217;, &#8216;out&#8217;, &#8216;both&#8217;, 
&#8216;no&#8217;] in: Strip the dispatch router specific annotations only on 
ingress; out: Strip the dispatch router specific annotations only on egress; 
both: Strip the dispatch router specific annotations on both ingress and 
egress; no - do not strip dispatch router specific annotations</dd>
+</dl>
+</div>
+<div class="section" id="log">
+<h3>log<a class="headerlink" href="#log" title="Permalink to this 
headline">.</a></h3>
+<p>Configure logging for a particular module. You can use the 
<cite>UPDATE</cite> operation to change log settings while the router is 
running.</p>
+<dl class="docutils">
+<dt><em>enable</em> (string, default=&#8217;default&#8217;, required)</dt>
+<dd>Levels are: trace, debug, info, notice, warning, error, critical. The 
enable string is a comma-separated list of levels. A level may have a trailing 
&#8216;+&#8217; to enable that level and above. For example 
&#8216;trace,debug,warning+&#8217; means enable trace, debug, warning, error 
and critical. The value &#8216;none&#8217; means disable logging for the 
module. The value &#8216;default&#8217; means use the value from the DEFAULT 
module.</dd>
+<dt><em>timestamp</em> (boolean)</dt>
+<dd>Include timestamp in log messages.</dd>
+<dt><em>source</em> (boolean)</dt>
+<dd>Include source file and line number in log messages.</dd>
+<dt><em>output</em> (string)</dt>
+<dd>Where to send log messages. Can be &#8216;stderr&#8217;, 
&#8216;syslog&#8217; or a file name.</dd>
+</dl>
+</div>
+<div class="section" id="fixedaddress">
+<h3>fixedAddress<a class="headerlink" href="#fixedaddress" title="Permalink to 
this headline">.</a></h3>
+<p>Establishes semantics for addresses starting with a prefix.</p>
+<dl class="docutils">
+<dt><em>prefix</em> (string, required)</dt>
+<dd>The address prefix (always starting with &#8216;/&#8217;).</dd>
+<dt><em>phase</em> (integer)</dt>
+<dd>The phase of a multi-hop address passing through one or more 
waypoints.</dd>
+<dt><em>fanout</em> (One of [&#8216;multiple&#8217;, &#8216;single&#8217;], 
default=&#8217;multiple&#8217;)</dt>
+<dd>One of &#8216;multiple&#8217; or &#8216;single&#8217;.  Multiple fanout is 
a non-competing pattern.  If there are multiple consumers using the same 
address, each consumer will receive its own copy of every message sent to the 
address.  Single fanout is a competing pattern where each message is sent to 
only one consumer.</dd>
+<dt><em>bias</em> (One of [&#8216;closest&#8217;, &#8216;spread&#8217;], 
default=&#8217;closest&#8217;)</dt>
+<dd>Only if fanout is single.  One of &#8216;closest&#8217; or 
&#8216;spread&#8217;.  Closest bias means that messages to an address will 
always be delivered to the closest (lowest cost) subscribed consumer. Spread 
bias will distribute the messages across subscribers in an approximately even 
manner.</dd>
+</dl>
+</div>
+<div class="section" id="waypoint">
+<h3>waypoint<a class="headerlink" href="#waypoint" title="Permalink to this 
headline">.</a></h3>
+<p>A remote node that messages for an address pass through.</p>
+<dl class="docutils">
+<dt><em>address</em> (string, required)</dt>
+<dd>The AMQP address of the waypoint.</dd>
+<dt><em>connector</em> (string, required)</dt>
+<dd>The name of the on-demand connector used to reach the waypoint&#8217;s 
container.</dd>
+<dt><em>inPhase</em> (integer, default=-1)</dt>
+<dd>The phase of the address as it is routed _to_ the waypoint.</dd>
+<dt><em>outPhase</em> (integer, default=-1)</dt>
+<dd>The phase of the address as it is routed _from_ the waypoint.</dd>
+</dl>
+</div>
+<div class="section" id="linkroutepattern">
+<h3>linkRoutePattern<a class="headerlink" href="#linkroutepattern" 
title="Permalink to this headline">.</a></h3>
+<p>An address pattern to match against link sources and targets to cause the 
router to link-route the attach across the network to a remote node.</p>
+<dl class="docutils">
+<dt><em>prefix</em> (string, required)</dt>
+<dd>An address prefix to match against target and source addresses.  From 
Dispatch 0.6 onwards, this pattern must be of the form 
&#8216;&lt;text&gt;/&lt;text1&gt;/...&#8217; or just &#8216;&lt;text&gt;&#8217; 
and matches any address that contains that prefix.  For example, if the prefix 
is set to org/apache any address that has the prefix &#8216;org/apache&#8217; 
like org/apache/dev will match. Note that a prefix must not start or end with a 
slash (/) and can contain zero or more slashes (/).  Any characters between the 
slashes are simply treated as part of the address</dd>
+<dt><em>dir</em> (One of [&#8216;in&#8217;, &#8216;out&#8217;, 
&#8216;both&#8217;], default=&#8217;both&#8217;)</dt>
+<dd>Link direction for match: &#8216;in&#8217; matches only links inbound to 
the client; &#8216;out&#8217; matches only links outbound from the client; 
&#8216;both&#8217; matches any link.</dd>
+<dt><em>connector</em> (string)</dt>
+<dd>The name of the on-demand connector used to reach the target node&#8217;s 
container.  If this value is not provided, it means that the target container 
is expected to be connected to a different router in the network.  This 
prevents links to a link-routable address from being misinterpreted as 
message-routing links when there is no route to a valid destination 
available.</dd>
+</dl>
+</div>
+<div class="section" id="console">
+<h3>console<a class="headerlink" href="#console" title="Permalink to this 
headline">.</a></h3>
+<p>Start a websocket/tcp proxy and http file server to serve the web 
console</p>
+</div>
+</div>
+<div class="section" id="see-also">
+<h2>See also<a class="headerlink" href="#see-also" title="Permalink to this 
headline">.</a></h2>
+<p><em>qdrouterd(8)</em>, <em>qdmanage(8)</em></p>
+<p><a class="reference external" 
href="http://qpid.apache.org/components/dispatch-router";>http://qpid.apache.org/components/dispatch-router</a></p>
+</div>
+</div>
+



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org

Reply via email to