Router Configuration Reference
OpenZiti uses configuration files for controllers that are in the YAML format. All configuration files are also subject to a set of conventions such as environment variable substitution, identity sections, and addressing formats.
Sections
The router configuration file has several top level configuration sections that group together related configuration settings.
ctrl
- configuration for controller addressing/connectionsdialers
- configures dialers used when router termination is used to contact target services for overlay egressedge
- edge specific configuration, required to enable edge functionality (e.g. edge SDK connectivity)forwarder
- configures various forwarder settings (e.g. link latency probing, idle sessions, dial queues, etc.)healthChecks
- enables router health checks for controller connectivityidentity
- configures the certificates used for outbound client connections, server listening, and CA bundleslink
- the type of link listeners available for incoming router link and outgoing router link connectionslisteners
- the interfaces, ports, and addresses exposed for connection by outside clients (e.g. edge SDK clients, non-edge connections)metrics
- configures metrics reportingtrace
- adds a peek handler to all router messaging for debug purposestransport
- enables transport level configuration that affects all instances of specific transportsprofile
- enables profiling of router memory and CPU statisticsweb
- configures API presentation exposurev
- A special section to note the version of the configuration file, onlyv: 3
is currently supported
The standard OpenZiti experience minimally requires the following sections:
ctrl
dialers
edge
identity
link
listeners
v
Of those values, to start the controller only the ctrl
, v
and identity
sections are required.
Not including
the dialer
section will not allow the router to connect to terminate services. Not including
the edge
section will start the controller in
"fabric only" mode and will not support any edge functionality or concepts (edge SDK connectivity).
Not including the
link
section will not allow the router to connect/dial or accept/host other routers for mesh
establishment. Not including the listeners
configuration will not allow external connections to
on-ramp connections over the mesh.
Example Minimum Router Configuration:
v: 3
identity:
cert: router.cert.pem
server_cert: router.server.cert.pem
key: router.key.pem
ca: ca-chain.cert.pem
ctrl:
endpoint: tls:127.0.0.1:6262
dialers:
- binding: udp
- binding: transport
edge:
csr:
country: US
province: NC
locality: Charlotte
organization: OpenZiti
organizationalUnit: Ziti
sans:
dns:
- "localhost"
ip:
- "127.0.0.1"
link:
listeners:
- binding: transport
bind: tls:127.0.0.1:6002
advertise: tls:127.0.0.1:6002
dialers:
- binding: transport
listeners:
- binding: edge
address: tls:0.0.0.0:3022
- binding: transport
address: tls:0.0.0.0:7099
ctrl
The ctrl
section configures how the router will connect to the controller.
bind
- (optional) the address of a local interface used to dial the controller address specified inendpoint
orendpoints
defaultRequestTimeout
- (optional, 5s) the amount of time use for controller connection timeouts ( see time units)endpoint
- (optional) the address of the controller. Eitherendpoint
orendpoints
is required. If both are provided,endpoints
will be ignored. Once the router is connected to a controller the set of endpoints will be kept up to date with current set of cluster members.endpoints
- (optional) a list of controller addresses. Eitherendpoint
orendpoints
is required. If both are provided,endpoints
will be ignoredheartbeats
- (optional) set of options for configuring heartbeats to the controller(s). See heartbeats.options
- a set of option which includes the below options and those defined in channel options
Example:
ctrl:
endpoint: tls:127.0.0.1:6262
dialers
The dialers
sections defines the configuration for dialers that are used to dial (connect) to
services from routers. Various dialers are supported and referenced by binding
name. This section
is an array of objects that configures individual dialers specified by the property binding
.
Example:
dialers:
- binding: binding1
options:
mtu: 1000
#...options
- binding: binding2
options:
#...options
#...
The following dialer bindings that are supported in the binding
field are:
proxy
- tbdproxy_udp
- tbdtransport
- tbdtransport_udp
- tbd
Each dialer currently supports a number of shared options
edge
The edge
section contains configuration that pertain to edge functionality. This section must be
present to enable edge functionality (e.g. listening for edge SDK connections, tunnel binding modes).
Example:
edge:
csr:
country: US
province: NC
locality: Charlotte
organization: OpenZiti
organizationalUnit: Ziti
sans:
dns:
- "localhost"
- "test-network"
- "test-network.localhost"
- "ziti-dev-ingress01"
email:
- "admin@example.com"
ip:
- "127.0.0.1"
uri:
- "ziti://ziti-dev-router01/made/up/example"
Not specifying the
edge.csr
section will not allow the router to enroll or renew existing enrollments.
edge.csr
The edge.csr
section is used during router enrollment and enrollment extension. It specifies values
that will be used in the certificates that are the result of enrollment.
Many of the values in this section are optional, however to accept connections from SDKs or other routers at least one valid SAN must be provided.
country
- (optional) the subject information country fieldprovince
- (optional) the subject information province fieldlocality
- (optional) the subject information locality fieldorganization
- (optional) the subject information organization fieldorganizationalUnit
- (optional) the subject information organization unit fieldsans
- (optional) - a subsection used to define Subject Alternate Namesdns
- (optional) - an array of DNS SAN entriesip
- (optional) - an array of IP SAN entriesuri
- (optional) - an array of URI SAN entriesemail
- (optional) - an array of email SAN entries
forwarder
The forwarder
section controls options that affect how a router forwards payloads across links to
other routers within the mesh or egresses data to targeted services if the service is terminated by
a router.
faultTxInterval
- (optional, 15,000) an integer representing the milliseconds to wait between checking for circuits that have faulted, 0=disabledidleCircuitTimeout
- (optional, 60,000) an integer representing the milliseconds to wait before marking a circuit as idle and requesting a circuit confirmationidleTxInterval
- (optional, 60,000) an integer representing the milliseconds to wait between checks for confirming idle circuits are in use, 0=disabledlinkDialQueueLength
- (optional, 1000) an integer between 1 and 10,000 that represents the maximum number of queued outgoing router link dialslinkDialWorkerCount
- (optional, 32) an integer between 1 and 10,000 that represents the maximum number of workers emptying the link dial queuerateLimitedQueueLength
- (optional, 5000) an integer between 1 and 50,000 that represents the maximum number of rate limited operations to the controller. This currently includes terminator createsrateLimitedWorkerCount
- (optional, 5) an integer between 1 and 10,000 that represents the maximum number of workers emptying the rate limited operations queuexgressCloseCheckInterval
- (optional, 5,000) an integer representing the milliseconds to wait before un-routing a circuit for due to idlenessxgressDialDwellTime
- (optional, 0) an integer representing the milliseconds to wait before dialing a service for egressxgressDialQueueLength
- (optional, 1000) an integer between 1 and 10,000 that represents the maximum number of queued outgoing service dialsxgressDialWorkerCount
- (optional, 128) an integer between 1 and 10,000 that represents the maximum number of workers emptying the xgress dial queue
Example:
forwarder:
latencyProbeInterval: 1000
healthChecks
The healthChecks
sections allows configuration of router health checks performed. Health check
status is available by exposing the health-checks
API in the web
section.
ctrlPingCheck
- (optional) - configures controller health check pingsinterval
- (optional, 30s) - the frequency to ping the controller with connection checkstimeout
- (optional, 15s) - the length of time to wait before giving up on a controller health pinginitialDelay
- (optional, 15s) - the length of time to wait before starting controller health check pings
linkCheck
- (optional) - configures link checks. A router maybe expected to have a certain number of links. It may be desirable to alert if the number of links falls below the expected numberinterval
- (optional, 5s) - how often to run the checkinitialDelay
- (optional, 1s) - how long to wait before running the check for the first timeminLinks
- (optional, 0) - minimum number of links before failing the check. By default, no links are required and the check will just return information about the links that do exist
Example:
healthChecks:
ctrlPingCheck:
interval: 30s
timeout: 15s
initialDelay: 15s
identity
The identity section includes the default server certificate and private key used for services
hosted by the router, alternate server certificates and keys to support SNI on hosted services,
client certificate and private key when making connections, and the ca
bundle that the controller
will use when making connections to controllers and routers. See the conventions that apply to
all identity sections for field level detail.
link
The link
section configures which protocols and ports are used to listen for incoming router mesh
links via the listeners
subsection and which protocols are used to dial other routers via the
dialers
subsection. Dialers and listeners use binding
names which can be further configured in
the transport
section. For both
listeners
(optional) - configures if and how this router should listen for connections from other routers to form the data plane meshbinding
- (required) - specifies which subsystem should instantiate this listener. Currently onlytransport
is supportedbind
- (required) the address that the listener should listen onadvertise
- (required) the<host>:<port>
combination that external resources should use to reach this listener Thelisteners
subsection supports the same settings and option as in thelisteners
section.groups
- (optional, [default
]) - Both dialers and listeners can now specify a set of groups. If no groups are specified, the dialer or listener will be placed in thedefault
group. Dialers will only attempt to dial listeners who have at least one group in common with them.options
- (optional) options specified by the component specifically in addition to the shared options
dialers
(optional) - configures if and how this router should try to make connections to other routers to form the data plane meshsplit
- (optional, true) - indicates if a single connection should be made for all data, or if separate connections should be made, one for payloads and the other for acknowledgmentsbinding
- (required) - specifies which subsystem should instantiate this listener. Currently onlytransport
is supportedbind
- (optional) the network interface, or local IP address to use for routing outbound datagroups
- (optional, [default
]) - Both dialers and listeners can now specify a set of groups. If no groups are specified, the dialer or listener will be placed in thedefault
group. Dialers will only attempt to dial listeners who have at least one group in common with them.options
- (optional) options specified by the component specifically in addition to the shared optionshealthyDialBackoff
- (optional) - configures how the dialer will retry dialing link connections when a dial fails. This backoff policy is used when the router being dialed is connected to the controller, and is thus expected to be availableminRetryInterval
- (optional, default 5s, min 10ms, max 24h) - duration specifying the minimum time between dial attemptsmaxRetryInterval
- (optional, default 5m, min 10ms, max 24h) - duration specifying the maximum time between dial attemptsretryBackoffFactor
- (optional, default 1.5, min 1, max 100) - factor by which to increase the retry interval between failed dial attempts
unhealthyDialBackoff
- (optional) - configures how the dialer will retry dialing link connections when a dial fails. This backoff policy is used when the router being dialed is not connected to the controller, and is thus expected to be available. Note that when a router connects to a controller, other routers are notified and will both immediately try to connect to the router, if they are not already, and will switch to thehealthyDialBackoff
policyminRetryInterval
- (optional, default 1m, min 10ms, max 24h) - duration specifying the minimum time between dial attemptsmaxRetryInterval
- (optional, default 1h, min 10ms, max 24h) - duration specifying the maximum time between dial attemptsretryBackoffFactor
- (optional, default 10, min 1, max 100) - factor by which to increase the retry interval between failed dial attempts
Example:
link:
dialers:
- binding: transport
listeners:
- binding: transport
bind: tls:127.0.0.1:6004
advertise: tls:127.0.0.1:6004
listeners
Listeners configure different types of server logic and protocols to be "listened" for on the
router. This includes opening ports on one or more interfaces specified in the address
option.
The address
field is formatted according to
the address conventions. The advertise field specifies the address a
client will use to connect to the listener.
binding
- (required) the name of a xgress component that will provide the server side logic for the listenerbind
- (required) the address that the listener should listen onadvertise
(required) the<host>:<port>
combination that external resources should use to reach this listeneroptions
- (optional) options specified by the component specifically in addition to the shared options
listeners:
- binding: edge
address: tls:0.0.0.0:3022
options:
advertise: 127.0.0.1:3022
tunnel listeners
A tunnel is a special kind of listener binding.
When generating a router configuration with ziti create config router edge
the tunnel binding is
enabled with default mode host
. This mode continually configures the router's tunnel to reverse
proxy the list of services that are authorized by Bind Service Policy.
listeners:
- binding: tunnel
options:
mode: host
If tunnel is enabled at the time the router is created then its configuration may be changed and
will take effect when the router is restarted. For example, this configures the router's tunnel to
transparently proxy all services authorized by Dial Service Policy and provide a nameserver. This
mode also enables the reverse proxy features of host
mode.
listeners:
- binding: tunnel
options:
mode: tproxy
resolver: udp://127.0.0.1:53
dnsSvcIpRange: 100.80.0.0/12 # optionally customize the dynamic IP range used by Ziti DNS
In this example the router's tunnel is configured to provide a forward proxy listener for a list of
service, TCP port pairs. This mode also enables the reverse proxy features of host
mode.
listeners:
- binding: tunnel
options:
mode: proxy
services:
- zedsDemoHttpHttpbin:8080
metrics
The metrics
section controls how metrics are communicated to the connection controller.
reportInterval
- (optional, 1m) the interval of time to wait between crafting a new metrics message to be sent to the controllermessageQueueSize
- (optional, 10) the maximum number of buffered metrics messages allowed to be queued to send to the controllerintervalAgeThreshold
- (optional, 80s) how old a batch of metrics must be before it's eligible to be sent to the controller
metrics:
reportInterval: 1m
messageQueueSize: 10
trace
The trace
section instructs the router to output incoming and outgoing messaging it receives. This
setting is useful for debugging purposes only and should not be enabled in production environments
without careful consideration.
path
- (required) the file to output decoded messages to
trace:
path: /var/opt/open.ziti.router.trace
transport
The transport
section is for advanced configuration of underlay protocols. It currently only
applies to an internally tuned TCP protocol named Transwarp and is tuned using westworld3
configuration options. This section should largely be unnecessary outside of development.
transport:
westworld3:
profile_version: 1
tx_portal_min_sz: 16384
tx_portal_max_sz: 1073741824
instrument:
name: metrics
path: /tmp/westworld3
snapshot_ms: 250
enabled: true
profile
The profile section allows for CPU (pprof) and memory (memprof) dumps to be created. CPU profiling is buffered by the application's runtime and output to the designated file. Memory profiling allows the interval memory profiling occurs at and is output. These settings are useful for debugging purposes only and should not be enabled in production environments without careful consideration.
cpu
- (optional)path
- (required) the path to output the pprof data
memory
- (optional)path
- (required) the path to output the memprof dataintervalMs
(optional) the frequency to output memprof data (default 15s)
profile:
cpu:
path: /home/user1/tmp/ctrl.cpu.pprof
memory:
path: ctrl.memprof
intervalMs: 150000
web
The web
section follows the conventions of XWeb. The controller has the
following APIs defined:
health-checks
- provides a health check API that allows remote parties to verify the health of the controller
Each API may have their own options, but currently do not.
v
The v
section is used to detect if the version file is supported by the OpenZiti binary read it.
The current and only supported value is "3".
v: 3