245 lines
7.6 KiB
Groff
245 lines
7.6 KiB
Groff
.\" generated with Ronn/v0.7.3
|
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
|
.
|
|
.TH "COREDNS\-FORWARD" "7" "October 2018" "CoreDNS" "CoreDNS plugins"
|
|
.
|
|
.SH "NAME"
|
|
\fIforward\fR \- facilitates proxying DNS messages to upstream resolvers\.
|
|
.
|
|
.SH "DESCRIPTION"
|
|
The \fIforward\fR plugin re\-uses already opened sockets to the upstreams\. It supports UDP, TCP and DNS\-over\-TLS and uses in band health checking\.
|
|
.
|
|
.P
|
|
When it detects an error a health check is performed\. This checks runs in a loop, every \fI0\.5s\fR, for as long as the upstream reports unhealthy\. Once healthy we stop health checking (until the next error)\. The health checks use a recursive DNS query (\fB\. IN NS\fR) to get upstream health\. Any response that is not a network error (REFUSED, NOTIMPL, SERVFAIL, etc) is taken as a healthy upstream\. The health check uses the same protocol as specified in \fBTO\fR\. If \fBmax_fails\fR is set to 0, no checking is performed and upstreams will always be considered healthy\.
|
|
.
|
|
.P
|
|
When \fIall\fR upstreams are down it assumes health checking as a mechanism has failed and will try to connect to a random upstream (which may or may not work)\.
|
|
.
|
|
.P
|
|
This plugin can only be used once per Server Block\.
|
|
.
|
|
.P
|
|
How does \fIforward\fR relate to \fIproxy\fR? This plugin is the "new" version of \fIproxy\fR and is faster because it re\-uses connections to the upstreams\. It also does in\-band health checks \- using DNS instead of HTTP\. Since it is newer it has a little less (production) mileage on it\.
|
|
.
|
|
.SH "SYNTAX"
|
|
In its most basic form, a simple forwarder uses this syntax:
|
|
.
|
|
.IP "" 4
|
|
.
|
|
.nf
|
|
|
|
forward FROM TO\.\.\.
|
|
.
|
|
.fi
|
|
.
|
|
.IP "" 0
|
|
.
|
|
.IP "\(bu" 4
|
|
\fBFROM\fR is the base domain to match for the request to be forwarded\.
|
|
.
|
|
.IP "\(bu" 4
|
|
\fBTO\.\.\.\fR are the destination endpoints to forward to\. The \fBTO\fR syntax allows you to specify a protocol, \fBtls://9\.9\.9\.9\fR or \fBdns://\fR (or no protocol) for plain DNS\. The number of upstreams is limited to 15\.
|
|
.
|
|
.IP "" 0
|
|
.
|
|
.P
|
|
Multiple upstreams are randomized (see \fBpolicy\fR) on first use\. When a healthy proxy returns an error during the exchange the next upstream in the list is tried\.
|
|
.
|
|
.P
|
|
Extra knobs are available with an expanded syntax:
|
|
.
|
|
.IP "" 4
|
|
.
|
|
.nf
|
|
|
|
forward FROM TO\.\.\. {
|
|
except IGNORED_NAMES\.\.\.
|
|
force_tcp
|
|
prefer_udp
|
|
expire DURATION
|
|
max_fails INTEGER
|
|
tls CERT KEY CA
|
|
tls_servername NAME
|
|
policy random|round_robin|sequential
|
|
health_check DURATION
|
|
}
|
|
.
|
|
.fi
|
|
.
|
|
.IP "" 0
|
|
.
|
|
.IP "\(bu" 4
|
|
\fBFROM\fR and \fBTO\.\.\.\fR as above\.
|
|
.
|
|
.IP "\(bu" 4
|
|
\fBIGNORED_NAMES\fR in \fBexcept\fR is a space\-separated list of domains to exclude from forwarding\. Requests that match none of these names will be passed through\.
|
|
.
|
|
.IP "\(bu" 4
|
|
\fBforce_tcp\fR, use TCP even when the request comes in over UDP\.
|
|
.
|
|
.IP "\(bu" 4
|
|
\fBprefer_udp\fR, try first using UDP even when the request comes in over TCP\. If response is truncated (TC flag set in response) then do another attempt over TCP\. In case if both \fBforce_tcp\fR and \fBprefer_udp\fR options specified the \fBforce_tcp\fR takes precedence\.
|
|
.
|
|
.IP "\(bu" 4
|
|
\fBmax_fails\fR is the number of subsequent failed health checks that are needed before considering an upstream to be down\. If 0, the upstream will never be marked as down (nor health checked)\. Default is 2\.
|
|
.
|
|
.IP "\(bu" 4
|
|
\fBexpire\fR \fBDURATION\fR, expire (cached) connections after this time, the default is 10s\.
|
|
.
|
|
.IP "\(bu" 4
|
|
\fBtls\fR \fBCERT\fR \fBKEY\fR \fBCA\fR define the TLS properties for TLS connection\. From 0 to 3 arguments can be provided with the meaning as described below
|
|
.
|
|
.IP "\(bu" 4
|
|
\fBtls\fR \- no client authentication is used, and the system CAs are used to verify the server certificate
|
|
.
|
|
.IP "\(bu" 4
|
|
\fBtls\fR \fBCA\fR \- no client authentication is used, and the file CA is used to verify the server certificate
|
|
.
|
|
.IP "\(bu" 4
|
|
\fBtls\fR \fBCERT\fR \fBKEY\fR \- client authentication is used with the specified cert/key pair\. The server certificate is verified with the system CAs
|
|
.
|
|
.IP "\(bu" 4
|
|
\fBtls\fR \fBCERT\fR \fBKEY\fR \fBCA\fR \- client authentication is used with the specified cert/key pair\. The server certificate is verified using the specified CA file
|
|
.
|
|
.IP "" 0
|
|
|
|
.
|
|
.IP "\(bu" 4
|
|
\fBtls_servername\fR \fBNAME\fR allows you to set a server name in the TLS configuration; for instance 9\.9\.9\.9 needs this to be set to \fBdns\.quad9\.net\fR\.
|
|
.
|
|
.IP "\(bu" 4
|
|
\fBpolicy\fR specifies the policy to use for selecting upstream servers\. The default is \fBrandom\fR\.
|
|
.
|
|
.IP "\(bu" 4
|
|
\fBhealth_check\fR, use a different \fBDURATION\fR for health checking, the default duration is 0\.5s\.
|
|
.
|
|
.IP "" 0
|
|
.
|
|
.P
|
|
Also note the TLS config is "global" for the whole forwarding proxy if you need a different \fBtls\-name\fR for different upstreams you\'re out of luck\.
|
|
.
|
|
.P
|
|
On each endpoint, the timeouts of the communication are set by default and automatically tuned depending early results\.
|
|
.
|
|
.IP "\(bu" 4
|
|
dialTimeout by default is 30 sec, and can decrease automatically down to 100ms
|
|
.
|
|
.IP "\(bu" 4
|
|
readTimeout by default is 2 sec, and can decrease automatically down to 200ms
|
|
.
|
|
.IP "" 0
|
|
.
|
|
.SH "METRICS"
|
|
If monitoring is enabled (via the \fIprometheus\fR directive) then the following metric are exported:
|
|
.
|
|
.IP "\(bu" 4
|
|
\fBcoredns_forward_request_duration_seconds{to}\fR \- duration per upstream interaction\.
|
|
.
|
|
.IP "\(bu" 4
|
|
\fBcoredns_forward_request_count_total{to}\fR \- query count per upstream\.
|
|
.
|
|
.IP "\(bu" 4
|
|
\fBcoredns_forward_response_rcode_total{to, rcode}\fR \- count of RCODEs per upstream\.
|
|
.
|
|
.IP "\(bu" 4
|
|
\fBcoredns_forward_healthcheck_failure_count_total{to}\fR \- number of failed health checks per upstream\.
|
|
.
|
|
.IP "\(bu" 4
|
|
\fBcoredns_forward_healthcheck_broken_count_total{}\fR \- counter of when all upstreams are unhealthy, and we are randomly (this always uses the \fBrandom\fR policy) spraying to an upstream\.
|
|
.
|
|
.IP "\(bu" 4
|
|
\fBcoredns_forward_socket_count_total{to}\fR \- number of cached sockets per upstream\.
|
|
.
|
|
.IP "" 0
|
|
.
|
|
.P
|
|
Where \fBto\fR is one of the upstream servers (\fBTO\fR from the config), \fBproto\fR is the protocol used by the incoming query ("tcp" or "udp"), and family the transport family ("1" for IPv4, and "2" for IPv6)\.
|
|
.
|
|
.SH "EXAMPLES"
|
|
Proxy all requests within \fBexample\.org\.\fR to a nameserver running on a different port:
|
|
.
|
|
.IP "" 4
|
|
.
|
|
.nf
|
|
|
|
example\.org {
|
|
forward \. 127\.0\.0\.1:9005
|
|
}
|
|
.
|
|
.fi
|
|
.
|
|
.IP "" 0
|
|
.
|
|
.P
|
|
Load balance all requests between three resolvers, one of which has a IPv6 address\.
|
|
.
|
|
.IP "" 4
|
|
.
|
|
.nf
|
|
|
|
\&\. {
|
|
forward \. 10\.0\.0\.10:53 10\.0\.0\.11:1053 [2003::1]:53
|
|
}
|
|
.
|
|
.fi
|
|
.
|
|
.IP "" 0
|
|
.
|
|
.P
|
|
Forward everything except requests to \fBexample\.org\fR
|
|
.
|
|
.IP "" 4
|
|
.
|
|
.nf
|
|
|
|
\&\. {
|
|
forward \. 10\.0\.0\.10:1234 {
|
|
except example\.org
|
|
}
|
|
}
|
|
.
|
|
.fi
|
|
.
|
|
.IP "" 0
|
|
.
|
|
.P
|
|
Proxy everything except \fBexample\.org\fR using the host\'s \fBresolv\.conf\fR\'s nameservers:
|
|
.
|
|
.IP "" 4
|
|
.
|
|
.nf
|
|
|
|
\&\. {
|
|
forward \. /etc/resolv\.conf {
|
|
except example\.org
|
|
}
|
|
}
|
|
.
|
|
.fi
|
|
.
|
|
.IP "" 0
|
|
.
|
|
.P
|
|
Proxy all requests to 9\.9\.9\.9 using the DNS\-over\-TLS protocol, and cache every answer for up to 30 seconds\. Note the \fBtls_servername\fR is mandatory if you want a working setup, as 9\.9\.9\.9 can\'t be used in the TLS negotiation\. Also set the health check duration to 5s to not completely swamp the service with health checks\.
|
|
.
|
|
.IP "" 4
|
|
.
|
|
.nf
|
|
|
|
\&\. {
|
|
forward \. tls://9\.9\.9\.9 {
|
|
tls_servername dns\.quad9\.net
|
|
health_check 5s
|
|
}
|
|
cache 30
|
|
}
|
|
.
|
|
.fi
|
|
.
|
|
.IP "" 0
|
|
.
|
|
.SH "BUGS"
|
|
The TLS config is global for the whole forwarding proxy if you need a different \fBtls_servername\fR for different upstreams you\'re out of luck\.
|
|
.
|
|
.SH "ALSO SEE"
|
|
RFC 7858 \fIhttps://tools\.ietf\.org/html/rfc7858\fR for DNS over TLS\.
|