summaryrefslogtreecommitdiff
path: root/sbin/unwind/unwind.8
blob: fe08a9b4c4c20be6048545655005ceeb3eb004cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
.\"	$OpenBSD: unwind.8,v 1.7 2019/11/10 20:51:52 landry Exp $
.\"
.\" Copyright (c) 2018 Florian Obser <florian@openbsd.org>
.\" Copyright (c) 2016 Kenneth R Westerback <kwesterback@gmail.com>
.\"
.\" Permission to use, copy, modify, and distribute this software for any
.\" purpose with or without fee is hereby granted, provided that the above
.\" copyright notice and this permission notice appear in all copies.
.\"
.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
.Dd $Mdocdate: November 10 2019 $
.Dt UNWIND 8
.Os
.Sh NAME
.Nm unwind
.Nd validating DNS resolver
.Sh SYNOPSIS
.Nm
.Op Fl dnv
.Op Fl f Ar file
.Op Fl s Ar socket
.Sh DESCRIPTION
.Nm
is a validating DNS resolver.
It is intended to run on client machines like workstations or laptops and only
listens on localhost.
.Nm
sends DNS queries to nameservers to answer queries and switches to resolvers
learned from
.Xr dhclient 8
if it detects that DNS queries are blocked by the local network.
It periodically probes if DNS is no longer blocked and switches back to
querying nameservers itself.
.Pp
To have
.Nm
enabled at boot time, use
.Dq rcctl enable unwind ,
which sets
.Pp
.Dl unwind_flags=\(dq\(dq
.Pp
in
.Xr rc.conf.local 8 .
.Pp
Adding
.Pp
.Dl prepend domain-name-servers 127.0.0.1;
.Pp
to
.Pa /etc/dhclient.conf
configures a machine using DHCP to use
.Nm .
.Pp
A running
.Nm
can be controlled with the
.Xr unwindctl 8
utility.
.Pp
The options are as follows:
.Bl -tag -width Ds
.It Fl d
Do not daemonize.
If this option is specified,
.Nm
will run in the foreground and log to
.Em stderr .
.It Fl f Ar file
Specify an alternative configuration file.
.It Fl n
Configtest mode.
Only check the configuration file for validity.
.It Fl s Ar socket
Use an alternate location for the default control socket.
.It Fl v
Produce more verbose output.
Multiple
.Fl v
options increase the verbosity.
.El
.Sh FILES
.Bl -tag -width "/var/db/unwind.keyXXX" -compact
.It Pa /etc/unwind.conf
Default
.Nm
configuration file.
.It Pa /var/db/unwind.key
Trust anchor for DNSSEC validation.
.It Pa /dev/unwind.sock
.Ux Ns -domain
socket used for communication with
.Xr unwindctl 8 .
.El
.Sh SEE ALSO
.Xr unwind.conf 5 ,
.Xr dhclient 8 ,
.Xr unbound 8 ,
.Xr unwindctl 8
.Sh STANDARDS
.Rs
.%A P. Mockapetris
.%D November 1987
.%R RFC 1034
.%T DOMAIN NAMES - CONCEPTS AND FACILITIES
.Re
.Pp
.Rs
.%A P. Mockapetris
.%D November 1987
.%R RFC 1035
.%T DOMAIN NAMES - IMPLEMENTATION AND SPECIFICATION
.Re
.Sh HISTORY
The
.Nm
program first appeared in
.Ox 6.5 .
.Sh AUTHORS
.An -nosplit
The
.Nm
program was written by
.An Florian Obser Aq Mt florian@openbsd.org .