Patrick Welche <prlw1@cam.ac.uk>
[netbsd-mini2440.git] / usr.sbin / tcpdmatch / tcpdmatch.8
blob472be893eb02455e0d74e3d5e799820a212d1e6e
1 .\"     $NetBSD: tcpdmatch.8,v 1.5 2000/10/07 23:31:18 itojun Exp $
2 .\"
3 .TH TCPDMATCH 8
4 .SH NAME
5 tcpdmatch \- tcp wrapper oracle
6 .SH SYNOPSIS
7 tcpdmatch [-d] [-i inet_conf] daemon client
8 .sp
9 tcpdmatch [-d] [-i inet_conf] daemon[@server] [user@]client
10 .SH DESCRIPTION
11 .PP
12 \fItcpdmatch\fR predicts how the tcp wrapper would handle a specific
13 request for service.  Examples are given below.
14 .PP
15 The program examines the \fItcpd\fR access control tables (default
16 \fI/etc/hosts.allow\fR and \fI/etc/hosts.deny\fR) and prints its
17 conclusion.  For maximal accuracy, it extracts additional information
18 from your \fIinetd\fR or \fItlid\fR network configuration file.
19 .PP
20 When \fItcpdmatch\fR finds a match in the access control tables, it
21 identifies the matched rule. In addition, it displays the optional
22 shell commands or options in a pretty-printed format; this makes it
23 easier for you to spot any discrepancies between what you want and what
24 the program understands.
25 .SH ARGUMENTS
26 The following two arguments are always required:
27 .IP daemon
28 A daemon process name. Typically, the last component of a daemon
29 executable pathname.
30 .IP client
31 A host name or network address, or one of the `unknown' or `paranoid'
32 wildcard patterns.
33 .sp
34 When a client host name is specified, \fItcpdmatch\fR gives a
35 prediction for each address listed for that client.
36 .sp
37 When a client address is specified, \fItcpdmatch\fR predicts what
38 \fItcpd\fR would do when client name lookup fails.
39 .PP
40 Optional information specified with the \fIdaemon@server\fR form:
41 .IP server
42 A host name or network address, or one of the `unknown' or `paranoid'
43 wildcard patterns. The default server name is `unknown'.
44 .PP
45 Optional information specified with the \fIuser@client\fR form:
46 .IP user
47 A client user identifier. Typically, a login name or a numeric userid.
48 The default user name is `unknown'.
49 .SH OPTIONS
50 .IP -d
51 Examine \fIhosts.allow\fR and \fIhosts.deny\fR files in the current
52 directory instead of the default ones.
53 .IP "-i inet_conf"
54 Specify this option when \fItcpdmatch\fR is unable to find your
55 \fIinetd.conf\fR or \fItlid.conf\fR network configuration file, or when
56 you suspect that the program uses the wrong one.
57 .SH EXAMPLES
58 To predict how \fItcpd\fR would handle a telnet request from the local
59 system:
60 .sp
61 .ti +5
62 tcpdmatch in.telnetd localhost
63 .PP
64 The same request, pretending that hostname lookup failed:
65 .sp
66 .ti +5
67 tcpdmatch in.telnetd 127.0.0.1
68 .PP
69 To predict what tcpd would do when the client name does not match the
70 client address:
71 .sp
72 .ti +5
73 tcpdmatch in.telnetd paranoid
74 .PP
75 On some systems, daemon names have no `in.' prefix, or \fItcpdmatch\fR
76 may need some help to locate the inetd configuration file.
77 .SH FILES
78 .PP
79 The default locations of the \fItcpd\fR access control tables are:
80 .PP
81 /etc/hosts.allow
82 .br
83 /etc/hosts.deny
84 .SH SEE ALSO
85 .na
86 .nf
87 tcpdchk(8), tcpd configuration checker
88 hosts_access(5), format of the tcpd access control tables.
89 hosts_options(5), format of the language extensions.
90 inetd.conf(5), format of the inetd control file.
91 .\" tlid.conf(5), format of the tlid control file.
92 .SH AUTHORS
93 .na
94 .nf
95 Wietse Venema (wietse@wzv.win.tue.nl),
96 Department of Mathematics and Computing Science,
97 Eindhoven University of Technology
98 Den Dolech 2, P.O. Box 513,
99 5600 MB Eindhoven, The Netherlands
100 \" @(#) tcpdmatch.8 1.5 96/02/11 17:01:35
101 .SH BUGS
102 If you specify FQDN hostname as client,
103 they will be recognized only as IPv4 or IPv6 address,
104 which should be recognized as both.