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