]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/inetd/inetd.8
mdoc(7) police: fixed the document date (the current date was used, as
[FreeBSD/FreeBSD.git] / usr.sbin / inetd / inetd.8
1 .\" Copyright (c) 1985, 1991, 1993, 1994
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 3. All advertising materials mentioning features or use of this software
13 .\"    must display the following acknowledgement:
14 .\"     This product includes software developed by the University of
15 .\"     California, Berkeley and its contributors.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\"    may be used to endorse or promote products derived from this software
18 .\"    without specific prior written permission.
19 .\"
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" SUCH DAMAGE.
31 .\"
32 .\"     from: @(#)inetd.8       8.3 (Berkeley) 4/13/94
33 .\" $FreeBSD$
34 .\"
35 .Dd February 7, 1996
36 .Dt INETD 8
37 .Os
38 .Sh NAME
39 .Nm inetd
40 .Nd internet
41 .Dq super-server
42 .Sh SYNOPSIS
43 .Nm
44 .Op Fl d
45 .Op Fl l
46 .Op Fl w
47 .Op Fl W
48 .Op Fl c Ar maximum
49 .Op Fl C Ar rate
50 .Op Fl a Ar address | hostname
51 .Op Fl p Ar filename
52 .Op Fl R Ar rate
53 .Op Fl s Ar maximum
54 .Op Ar configuration file
55 .Sh DESCRIPTION
56 The
57 .Nm
58 utility should be run at boot time by
59 .Pa /etc/rc
60 (see
61 .Xr rc 8 ) .
62 It then listens for connections on certain
63 internet sockets.  When a connection is found on one
64 of its sockets, it decides what service the socket
65 corresponds to, and invokes a program to service the request.
66 The server program is invoked with the service socket
67 as its standard input, output and error descriptors.
68 After the program is
69 finished,
70 .Nm
71 continues to listen on the socket (except in some cases which
72 will be described below).  Essentially,
73 .Nm
74 allows running one daemon to invoke several others,
75 reducing load on the system.
76 .Pp
77 The following options are available:
78 .Bl -tag -width indent
79 .It Fl d
80 Turn on debugging.
81 .It Fl l
82 Turn on logging of successful connections.
83 .It Fl w
84 Turn on TCP Wrapping for external services.
85 See the
86 .Sx "IMPLEMENTATION NOTES"
87 section for more information on TCP Wrappers support.
88 .It Fl W
89 Turn on TCP Wrapping for internal services which are built in to
90 .Nm .
91 .It Fl c Ar maximum
92 Specify the default maximum number of
93 simultaneous invocations of each service;
94 the default is unlimited.
95 May be overridden on a per-service basis with the "max-child"
96 parameter.
97 .It Fl C Ar rate
98 Specify the default maximum number of times a service can be invoked
99 from a single IP address in one minute; the default is unlimited.
100 May be overridden on a per-service basis with the
101 "max-connections-per-ip-per-minute" parameter.
102 .It Fl R Ar rate
103 Specify the maximum number of times a service can be invoked
104 in one minute; the default is 256.
105 A rate of 0 allows an unlimited number of invocations.
106 .It Fl s Ar maximum
107 Specify the default maximum number of
108 simultaneous invocations of each service from a single IP address;
109 the default is unlimited.
110 May be overridden on a per-service basis with the "max-child-per-ip"
111 parameter.
112 .It Fl a
113 Specify one specific IP address to bind to.
114 Alternatively, a hostname can be specified,
115 in which case the IPv4 or IPv6 address
116 which corresponds to that hostname is used.
117 Usually a hostname is specified when
118 .Nm
119 is run inside a
120 .Xr jail 8 ,
121 in which case the hostname corresponds to the
122 .Xr jail 8
123 environment.
124 .Pp
125 When hostname specification is used
126 and both IPv4 and IPv6 bindings are desired,
127 one entry with the appropriate
128 .Em protocol
129 type for each binding
130 is required for each service in
131 .Pa /etc/inetd.conf .
132 For example,
133 a TCP-based service would need two entries,
134 one using
135 .Dq tcp4
136 for the
137 .Em protocol
138 and the other using
139 .Dq tcp6 .
140 See the explanation of the
141 .Pa /etc/inetd.conf
142 .Em protocol
143 field below.
144 .It Fl p
145 Specify an alternate file in which to store the process ID.
146 .El
147 .Pp
148 Upon execution,
149 .Nm
150 reads its configuration information from a configuration
151 file which, by default, is
152 .Pa /etc/inetd.conf .
153 There must be an entry for each field of the configuration
154 file, with entries for each field separated by a tab or
155 a space.  Comments are denoted by a
156 .Dq #
157 at the beginning
158 of a line.  There must be an entry for each field.  The
159 fields of the configuration file are as follows:
160 .Pp
161 .Bd -unfilled -offset indent -compact
162 service name
163 socket type
164 protocol
165 {wait|nowait}[/max-child[/max-connections-per-ip-per-minute[/max-child-per-ip]]]
166 user[:group][/login-class]
167 server program
168 server program arguments
169 .Ed
170 .Pp
171 To specify an
172 .Tn "ONC RPC" Ns -based
173 service, the entry would contain these fields:
174 .Pp
175 .Bd -unfilled -offset indent -compact
176 service name/version
177 socket type
178 rpc/protocol
179 user[:group][/login-class]
180 server program
181 server program arguments
182 .Ed
183 .Pp
184 There are two types of services that
185 .Nm
186 can start: standard and TCPMUX.
187 A standard service has a well-known port assigned to it;
188 it may be a service that implements an official Internet standard or is a
189 .Bx Ns -specific
190 service.
191 As described in
192 .Tn RFC 1078 ,
193 TCPMUX services are nonstandard services that do not have a
194 well-known port assigned to them.
195 They are invoked from
196 .Nm
197 when a program connects to the
198 .Dq tcpmux
199 well-known port and specifies
200 the service name.
201 This feature is useful for adding locally-developed servers.
202 TCPMUX requests are only accepted when the multiplexor service itself
203 is enabled, above and beyond and specific TCPMUX-based servers; see the
204 discussion of internal services below.
205 .Pp
206 The
207 .Em service-name
208 entry is the name of a valid service in
209 the file
210 .Pa /etc/services ,
211 or the specification of a
212 .Ux
213 domain socket (see below).
214 For
215 .Dq internal
216 services (discussed below), the service
217 name
218 should
219 be the official name of the service (that is, the first entry in
220 .Pa /etc/services ) .
221 When used to specify an
222 .Tn "ONC RPC" Ns -based
223 service, this field is a valid RPC service name in
224 the file
225 .Pa /etc/rpc .
226 The part on the right of the
227 .Dq /
228 is the RPC version number.
229 This
230 can simply be a single numeric argument or a range of versions.
231 A range is bounded by the low version to the high version -
232 .Dq rusers/1-3 .
233 For TCPMUX services, the value of the
234 .Em service-name
235 field consists of the string
236 .Dq tcpmux
237 followed by a slash and the
238 locally-chosen service name.
239 The service names listed in
240 .Pa /etc/services
241 and the name
242 .Dq help
243 are reserved.
244 Try to choose unique names for your TCPMUX services by prefixing them with
245 your organization's name and suffixing them with a version number.
246 .Pp
247 The
248 .Em socket-type
249 should be one of
250 .Dq stream ,
251 .Dq dgram ,
252 .Dq raw ,
253 .Dq rdm ,
254 or
255 .Dq seqpacket ,
256 depending on whether the socket is a stream, datagram, raw,
257 reliably delivered message, or sequenced packet socket.
258 TCPMUX services must use
259 .Dq stream .
260 .Pp
261 The
262 .Em protocol
263 must be a valid protocol or
264 .Dq unix .
265 Examples are
266 .Dq tcp
267 or
268 .Dq udp ,
269 both of which imply IPv4 for backward compatibility.
270 The names
271 .Dq tcp4
272 and
273 .Dq udp4
274 specify IPv4 only.
275 The names
276 .Dq tcp6
277 and
278 .Dq udp6
279 specify IPv6 only.
280 The names
281 .Dq tcp46
282 and
283 .Dq udp46
284 specify that the entry accepts both IPv4 and IPv6 connections
285 via a wildcard
286 .Dv AF_INET6
287 socket.
288 If it is desired that the service is reachable via T/TCP, one should
289 specify
290 .Dq tcp/ttcp ,
291 which implies IPv4 for backward compatibility.
292 The name
293 .Dq tcp4/ttcp
294 specifies IPv4 only, while
295 .Dq tcp6/ttcp
296 specifies IPv6 only.
297 The name
298 .Dq tcp46/ttcp
299 specify that the entry accepts both IPv6 and IPv6 connections
300 via a wildcard
301 .Dv AF_INET6
302 socket.
303 Rpc based services
304 are specified with the
305 .Dq rpc/tcp
306 or
307 .Dq rpc/udp
308 service type.
309 One can use specify IPv4 and/or IPv6 with the 4, 6 or 46 suffix, for example
310 .Dq rpc/tcp6
311 or
312 .Dq rpc/udp46 .
313 TCPMUX services must use
314 .Dq tcp ,
315 .Dq tcp4 ,
316 .Dq tcp6
317 or
318 .Dq tcp46 .
319 .Pp
320 The
321 .Em wait/nowait
322 entry specifies whether the server that is invoked by
323 .Nm
324 will take over
325 the socket associated with the service access point, and thus whether
326 .Nm
327 should wait for the server to exit before listening for new service
328 requests.
329 Datagram servers must use
330 .Dq wait ,
331 as they are always invoked with the original datagram socket bound
332 to the specified service address.
333 These servers must read at least one datagram from the socket
334 before exiting.
335 If a datagram server connects
336 to its peer, freeing the socket so
337 .Nm
338 can receive further messages on the socket, it is said to be
339 a
340 .Dq multi-threaded
341 server;
342 it should read one datagram from the socket and create a new socket
343 connected to the peer.
344 It should fork, and the parent should then exit
345 to allow
346 .Nm
347 to check for new service requests to spawn new servers.
348 Datagram servers which process all incoming datagrams
349 on a socket and eventually time out are said to be
350 .Dq single-threaded .
351 .Xr Comsat 8 ,
352 .Pq Xr biff 1
353 and
354 .Xr talkd 8
355 are both examples of the latter type of
356 datagram server.
357 .Xr Tftpd 8
358 is an example of a multi-threaded datagram server.
359 .Pp
360 Servers using stream sockets generally are multi-threaded and
361 use the
362 .Dq nowait
363 entry.
364 Connection requests for these services are accepted by
365 .Nm ,
366 and the server is given only the newly-accepted socket connected
367 to a client of the service.
368 Most stream-based services operate in this manner.
369 Stream-based servers that use
370 .Dq wait
371 are started with the listening service socket, and must accept
372 at least one connection request before exiting.
373 Such a server would normally accept and process incoming connection
374 requests until a timeout.
375 TCPMUX services must use
376 .Dq nowait .
377 .Pp
378 The maximum number of outstanding child processes (or
379 .Dq threads )
380 for a
381 .Dq nowait
382 service may be explicitly specified by appending a
383 .Dq /
384 followed by the number to the
385 .Dq nowait
386 keyword.
387 Normally
388 (or if a value of zero is specified) there is no maximum.
389 Otherwise,
390 once the maximum is reached, further connection attempts will be
391 queued up until an existing child process exits.
392 This also works
393 in the case of
394 .Dq wait
395 mode, although a value other than one (the
396 default) might not make sense in some cases.
397 You can also specify the maximum number of connections per minute
398 for a given IP address by appending
399 a
400 .Dq /
401 followed by the number to the maximum number of
402 outstanding child processes.
403 Once the maximum is reached, further
404 connections from this IP address will be dropped until the end of the
405 minute.
406 In addition, you can specify the maximum number of simultaneous
407 invocations of each service from a single IP address by appending a
408 .Dq /
409 followed by the number to the maximum number of outstanding child
410 processes.  Once the maximum is reached, further connections from this
411 IP address will be dropped.
412 .Pp
413 The
414 .Em user
415 entry should contain the user name of the user as whom the server
416 should run.  This allows for servers to be given less permission
417 than root.
418 Optional
419 .Em group
420 part separated by
421 .Dq \&:
422 allows to specify group name different
423 than default group for this user.
424 Optional
425 .Em login-class
426 part separated by
427 .Dq /
428 allows to specify login class different
429 than default
430 .Dq daemon
431 login class.
432 .Pp
433 The
434 .Em server-program
435 entry should contain the pathname of the program which is to be
436 executed by
437 .Nm
438 when a request is found on its socket.  If
439 .Nm
440 provides this service internally, this entry should
441 be
442 .Dq internal .
443 .Pp
444 The
445 .Em server program arguments
446 should be just as arguments
447 normally are, starting with argv[0], which is the name of
448 the program.  If the service is provided internally, the
449 .Em service-name
450 of the service (and any arguments to it) or the word
451 .Dq internal
452 should take the place of this entry.
453 .Pp
454 Currently, the only internal service to take arguments is
455 .Dq auth .
456 Without options, the service will always return
457 .Dq ERROR\ : HIDDEN-USER .
458 The available arguments to this service that alter its behavior are:
459 .Bl -tag -width indent
460 .It Fl d Ar fallback
461 Provide a
462 .Ar fallback
463 username.
464 If the real
465 .Dq auth
466 service is enabled
467 (with the
468 .Fl r
469 option discussed below),
470 return this username instead of an error
471 when lookups fail
472 for either socket credentials or the username.
473 If the real
474 .Dq auth
475 service is disabled,
476 return this username for every request.
477 This is primarily useful when running this service on a NAT machine.
478 .It Fl g
479 Instead of returning
480 the user's name to the ident requester,
481 report a
482 username made up of random alphanumeric characters,
483 e.g.\&
484 .Dq c0c993 .
485 The
486 .Fl g
487 flag overrides not only the user names,
488 but also any fallback name,
489 .Pa .fakeid
490 or
491 .Pa .noident
492 files.
493 .It Fl t Xo
494 .Ar sec Ns Op . Ns Ar usec
495 .Xc
496 Specify a timeout for the service.
497 The default timeout is 10.0 seconds.
498 .It Fl r
499 Offer a real
500 .Dq auth
501 service, as per RFC 1413.
502 All the remaining flags apply only in this case.
503 .It Fl i
504 Return numeric user IDs instead of usernames.
505 .It Fl f
506 If the file
507 .Pa .fakeid
508 exists in the home directory of the identified user, report the username
509 found in that file instead of the real username.
510 If the username found in
511 .Pa .fakeid
512 is that of an existing user,
513 then the real username is reported.
514 If the
515 .Fl i
516 flag is also given then the username in
517 .Pa .fakeid
518 is checked against existing user IDs instead.
519 .It Fl F
520 same as
521 .Fl f
522 but without the restriction that the username in
523 .Pa .fakeid
524 must not match an existing user.
525 .It Fl n
526 If the file
527 .Pa .noident
528 exists in the home directory of the identified user, return
529 .Dq ERROR\ : HIDDEN-USER .
530 This overrides any
531 .Pa fakeid
532 file which might exist.
533 .It Fl o Ar osname
534 Use
535 .Ar osname
536 instead of the name of the system as reported by
537 .Xr uname 3 .
538 .El
539 .Pp
540 The
541 .Nm
542 utility also provides several other
543 .Dq trivial
544 services internally by use of
545 routines within itself.  These services are
546 .Dq echo ,
547 .Dq discard ,
548 .Dq chargen
549 (character generator),
550 .Dq daytime
551 (human readable time), and
552 .Dq time
553 (machine readable time, in the form of the number of seconds since
554 midnight, January 1, 1900).  All of these services are available in
555 both TCP and UDP versions; the UDP versions will refuse service if the
556 request specifies a reply port corresponding to any internal service.
557 (This is done as a defense against looping attacks; the remote IP address
558 is logged.)
559 For details of these services, consult the
560 appropriate
561 .Tn RFC
562 document.
563 .Pp
564 The TCPMUX-demultiplexing service is also implemented as an internal service.
565 For any TCPMUX-based service to function, the following line must be included
566 in
567 .Pa inetd.conf :
568 .Bd -literal -offset indent
569 tcpmux  stream  tcp     nowait  root    internal
570 .Ed
571 .Pp
572 When given the
573 .Fl l
574 option
575 .Nm
576 will log an entry to syslog each time a connection is accepted, noting the
577 service selected and the IP-number of the remote requester if available.
578 Unless otherwise specified in the configuration file,
579 and in the absence of the
580 .Fl W
581 and
582 .Fl w
583 options,
584 .Nm
585 will log to the
586 .Dq daemon
587 facility.
588 .Pp
589 The
590 .Nm
591 utility rereads its configuration file when it receives a hangup signal,
592 .Dv SIGHUP .
593 Services may be added, deleted or modified when the configuration file
594 is reread.
595 Except when started in debugging mode,
596 .Nm
597 records its process ID in the file
598 .Pa /var/run/inetd.pid
599 to assist in reconfiguration.
600 .Sh IMPLEMENTATION NOTES
601 .Ss TCP Wrappers
602 When given the
603 .Fl w
604 option,
605 .Nm
606 will wrap all services specified as
607 .Dq stream nowait
608 or
609 .Dq dgram
610 except for
611 .Dq internal
612 services.
613 If the
614 .Fl W
615 option is given, such
616 .Dq internal
617 services will be wrapped.
618 If both options are given, wrapping for both
619 internal and external services will be enabled.
620 Either wrapping option
621 will cause failed connections to be logged to the
622 .Dq auth
623 syslog facility.
624 Adding the
625 .Fl l
626 flag to the wrapping options will include successful connections in the
627 logging to the
628 .Dq auth
629 facility.
630 .Pp
631 Note that
632 .Nm
633 only wraps requests for a
634 .Dq wait
635 service while no servers are available to service requests.
636 Once a
637 connection to such a service has been allowed,
638 .Nm
639 has no control
640 over subsequent connections to the service until no more servers
641 are left listening for connection requests.
642 .Pp
643 When wrapping is enabled, the
644 .Pa tcpd
645 daemon is not required, as that functionality is builtin.
646 For more information on TCP Wrappers, see the relevant documentation
647 .Pq Xr hosts_access 5 .
648 When reading that document, keep in mind that
649 .Dq internal
650 services have no associated daemon name.
651 Therefore, the service name
652 as specified in
653 .Pa inetd.conf
654 should be used as the daemon name for
655 .Dq internal
656 services.
657 .Ss TCPMUX
658 .Tn RFC 1078
659 describes the TCPMUX protocol:
660 ``A TCP client connects to a foreign host on TCP port 1.  It sends the
661 service name followed by a carriage-return line-feed <CRLF>.  The
662 service name is never case sensitive.  The server replies with a
663 single character indicating positive (+) or negative (\-)
664 acknowledgment, immediately followed by an optional message of
665 explanation, terminated with a <CRLF>.  If the reply was positive,
666 the selected protocol begins; otherwise the connection is closed.''
667 The program is passed the TCP connection as file descriptors 0 and 1.
668 .Pp
669 If the TCPMUX service name begins with a
670 .Dq + ,
671 .Nm
672 returns the positive reply for the program.
673 This allows you to invoke programs that use stdin/stdout
674 without putting any special server code in them.
675 .Pp
676 The special service name
677 .Dq help
678 causes
679 .Nm
680 to list TCPMUX services in
681 .Pa inetd.conf .
682 .Ss IPsec
683 The implementation includes a tiny hack
684 to support IPsec policy settings for each socket.
685 A special form of comment line, starting with
686 .Dq Li #@ ,
687 is interpreted as a policy specifier.
688 Everything after the
689 .Dq Li #@
690 will be used as an IPsec policy string,
691 as described in
692 .Xr ipsec_set_policy 3 .
693 Each
694 policy specifier is applied to all the following lines in
695 .Pa inetd.conf
696 until the next policy specifier.
697 An empty policy specifier resets the IPsec policy.
698 .Pp
699 If an invalid IPsec policy specifier appears in
700 .Pa inetd.conf ,
701 .Nm
702 will provide an error message via the
703 .Xr syslog 3
704 interface and abort execution.
705 .Ss Ux Domain Sockets
706 In addition to running services on IP sockets,
707 .Nm
708 can also manage
709 .Ux
710 domain sockets.
711 To do this you specify a
712 .Em protocol
713 of
714 .Dq unix
715 and specify the
716 .Ux
717 domain socket as the
718 .Em service-name .
719 The
720 .Em service-type
721 may be
722 .Dq stream
723 or
724 .Dq dgram .
725 The specification of the socket must be
726 an absolute path name,
727 optionally prefixed by an owner and mode
728 of the form
729 .Em :user:group:mode: .
730 The specification:
731 .Pp
732 .Dl ":news:daemon:220:/var/run/sock"
733 .Pp
734 creates a socket owned
735 by user
736 .Dq news
737 in group
738 .Dq daemon
739 with permissions allowing only that user and group to connect.
740 The default owner is the user that
741 .Nm
742 is running as.
743 The default mode only allows the socket's owner to connect.
744 .Pp
745 .Sy WARNING :
746 while creating
747 .Ux
748 domain socket,
749 .Nm
750 must change the ownership and permissions on the socket.
751 This can only be done securely if
752 the directory in which the socket is created
753 is writable only by root.
754 Do
755 .Em NOT
756 use
757 .Nm
758 to create sockets in world writable directories,
759 such as
760 .Pa /tmp ,
761 instead use
762 .Pa /var/run
763 or a similar directory.
764 .Pp
765 Internal services may be run on
766 .Ux
767 domain sockets, in the usual way.
768 In this case
769 the name of the internal service
770 is determined using
771 the last component of the socket's pathname.
772 .Sh "FILES"
773 .Bl -tag -width /var/run/inetd.pid -compact
774 .It Pa /etc/inetd.conf
775 configuration file
776 .It Pa /etc/rpc
777 translation of service names to RPC program numbers
778 .It Pa /etc/services
779 translation of service names to port numbers
780 .It Pa /var/run/inetd.pid
781 the pid of the currently running
782 .Nm
783 .El
784 .Sh "EXAMPLES"
785 Here are several example service entries for the various types of services:
786 .Bd -literal
787 ftp          stream  tcp   nowait root  /usr/libexec/ftpd        ftpd -l
788 ntalk        dgram   udp   wait   root  /usr/libexec/ntalkd      ntalkd
789 telnet       stream  tcp6  nowait root  /usr/libexec/telnetd  telnetd
790 shell        stream  tcp46  nowait root  /usr/libexec/rshd rshd
791 tcpmux/+date stream  tcp   nowait guest /bin/date                date
792 tcpmux/phonebook stream tcp nowait guest /usr/local/bin/phonebook phonebook
793 rstatd/1-3   dgram   rpc/udp wait root  /usr/libexec/rpc.rstatd  rpc.rstatd
794 /var/run/echo stream unix  nowait root  internal
795 #@ ipsec ah/require
796 chargen      stream  tcp   nowait root  internal
797 #@
798 .Ed
799 .Sh "ERROR MESSAGES"
800 The
801 .Nm
802 server
803 logs error messages using
804 .Xr syslog 3 .
805 Important error messages and their explanations are:
806 .Pp
807 .Bl -ohang -compact
808 .It Xo
809 .Ar service Ns / Ns Ar protocol
810 .No "server failing (looping), service terminated."
811 .Xc
812 The number of requests for the specified service in the past minute
813 exceeded the limit.
814 The limit exists to prevent a broken program
815 or a malicious user from swamping the system.
816 This message may occur for several reasons:
817 .Bl -enum -offset indent
818 .It
819 There are many hosts requesting the service within a short time period.
820 .It
821 A broken client program is requesting the service too frequently.
822 .It
823 A malicious user is running a program to invoke the service in
824 a denial-of-service attack.
825 .It
826 The invoked service program has an error that causes clients
827 to retry quickly.
828 .El
829 .Pp
830 Use the
831 .Fl R Ar rate
832 option,
833 as described above, to change the rate limit.
834 Once the limit is reached, the service will be
835 reenabled automatically in 10 minutes.
836 .Pp
837 .It Xo
838 .Ar service Ns / Ns Ar protocol :
839 .No \&No such user
840 .Ar user ,
841 .No service ignored
842 .Xc
843 .It Xo
844 .Ar service Ns / Ns Ar protocol :
845 .No getpwnam :
846 .Ar user :
847 .No \&No such user
848 .Xc
849 No entry for
850 .Ar user
851 exists in the
852 .Xr passwd 5
853 database.
854 The first message
855 occurs when
856 .Nm
857 (re)reads the configuration file.
858 The second message occurs when the
859 service is invoked.
860 .Pp
861 .It Xo
862 .Ar service :
863 .No can't set uid
864 .Ar uid
865 .Xc
866 .It Xo
867 .Ar service :
868 .No can't set gid
869 .Ar gid
870 .Xc
871 The user or group ID for the entry's
872 .Ar user
873 field is invalid.
874 .Pp
875 .It "setsockopt(SO_PRIVSTATE): Operation not supported"
876 The
877 .Nm
878 utility attempted to renounce the privileged state associated with a
879 socket but was unable to.
880 .El
881 .Sh SEE ALSO
882 .Xr ipsec_set_policy 3 ,
883 .Xr hosts_access 5 ,
884 .Xr hosts_options 5 ,
885 .Xr login.conf 5 ,
886 .Xr passwd 5 ,
887 .Xr rpc 5 ,
888 .Xr services 5 ,
889 .Xr comsat 8 ,
890 .Xr fingerd 8 ,
891 .Xr ftpd 8 ,
892 .Xr rexecd 8 ,
893 .Xr rlogind 8 ,
894 .Xr rpcbind 8 ,
895 .Xr rshd 8 ,
896 .Xr telnetd 8 ,
897 .Xr tftpd 8
898 .Rs
899 .%A Michael C. St. Johns
900 .%T Identification Protocol
901 .%O RFC1413
902 .Re
903 .Sh HISTORY
904 The
905 .Nm
906 utility appeared in
907 .Bx 4.3 .
908 TCPMUX is based on code and documentation by Mark Lottor.
909 Support for
910 .Tn "ONC RPC"
911 based services is modeled after that
912 provided by
913 .Tn SunOS
914 4.1.
915 The IPsec hack was contributed by the KAME project in 1999.
916 The
917 .Fx
918 TCP Wrappers support first appeared in
919 .Fx 3.2 .