inetd.conf revision 91929
1# $FreeBSD: head/etc/inetd.conf 91929 2002-03-09 04:55:35Z dd $
2#
3# Internet server configuration database
4#
5# Define *both* IPv4 and IPv6 entries for dual-stack support.
6# To disable a service, comment it out by prefixing the line with '#'.
7# To enable a service, remove the '#' at the beginning of the line.
8#
9#ftp	stream	tcp	nowait	root	/usr/libexec/ftpd	ftpd -l
10#ftp	stream	tcp6	nowait	root	/usr/libexec/ftpd	ftpd -l
11#telnet	stream	tcp	nowait	root	/usr/libexec/telnetd	telnetd
12#telnet	stream	tcp6	nowait	root	/usr/libexec/telnetd	telnetd
13#shell	stream	tcp	nowait	root	/usr/libexec/rshd	rshd
14#shell	stream	tcp6	nowait	root	/usr/libexec/rshd	rshd
15#login	stream	tcp	nowait	root	/usr/libexec/rlogind	rlogind
16#login	stream	tcp6	nowait	root	/usr/libexec/rlogind	rlogind
17#finger	stream	tcp	nowait/3/10 nobody /usr/libexec/fingerd	fingerd -s
18#finger	stream	tcp6	nowait/3/10 nobody /usr/libexec/fingerd	fingerd -s
19#exec	stream	tcp	nowait	root	/usr/libexec/rexecd	rexecd
20#nntp	stream	tcp	nowait	usenet	/usr/libexec/nntpd	nntpd
21#
22# run comsat as root to be able to print partial mailbox contents w/ biff,
23# or use the safer tty:tty to just print that new mail has been received.
24#comsat	dgram	udp	wait	tty:tty	/usr/libexec/comsat	comsat
25#
26# ntalk is required for the 'talk' utility to work correctly
27#ntalk	dgram	udp	wait	tty:tty	/usr/libexec/ntalkd	ntalkd
28#tftp	dgram	udp	wait	root	/usr/libexec/tftpd	tftpd -s /tftpboot
29#bootps	dgram	udp	wait	root	/usr/libexec/bootpd	bootpd
30#
31# "Small servers" -- used to be standard on, but we're more conservative
32# about things due to Internet security concerns.  Only turn on what you
33# need.
34#
35#daytime stream	tcp	nowait	root	internal
36#daytime stream	tcp6	nowait	root	internal
37#daytime dgram	udp	wait	root	internal
38#daytime dgram	udp6	wait	root	internal
39#time	stream	tcp	nowait	root	internal
40#time	stream	tcp6	nowait	root	internal
41#time	 dgram	udp	wait	root	internal
42#time	 dgram	udp6	wait	root	internal
43#echo	stream	tcp	nowait	root	internal
44#echo	dgram	udp6	wait	root	internal
45#echo	dgram	udp	wait	root	internal
46#echo	stream	tcp6	nowait	root	internal
47#discard stream	tcp	nowait	root	internal
48#discard stream	tcp6	nowait	root	internal
49#discard dgram	udp	wait	root	internal
50#discard dgram	udp6	wait	root	internal
51#chargen stream	tcp	nowait	root	internal
52#chargen stream	tcp6	nowait	root	internal
53#chargen dgram	udp	wait	root	internal
54#chargen dgram	udp6	wait	root	internal
55#
56# Kerberos authenticated services
57#
58#klogin	stream	tcp	nowait	root	/usr/libexec/rlogind	rlogind -k
59#eklogin stream	tcp	nowait	root	/usr/libexec/rlogind	rlogind -k -x
60#kshell	stream	tcp	nowait	root	/usr/libexec/rshd	rshd -k
61#kip	stream	tcp	nowait	root	/usr/libexec/kipd	kipd
62#
63# CVS servers - for master CVS repositories only!  You must set the
64# --allow-root path correctly or you open a trivial to exploit but
65# deadly security hole.
66#
67#cvspserver	stream	tcp	nowait	root	/usr/bin/cvs	cvs --allow-root=/your/cvsroot/here pserver
68#cvspserver	stream	tcp	nowait	root	/usr/bin/cvs	cvs --allow-root=/your/cvsroot/here kserver
69#
70# RPC based services (you MUST have portmapper running to use these)
71#
72#rstatd/1-3	dgram rpc/udp wait root	/usr/libexec/rpc.rstatd	 rpc.rstatd
73#rusersd/1-2	dgram rpc/udp wait root	/usr/libexec/rpc.rusersd rpc.rusersd
74#walld/1	dgram rpc/udp wait root	/usr/libexec/rpc.rwalld	 rpc.rwalld
75#pcnfsd/1-2	dgram rpc/udp wait root	/usr/libexec/rpc.pcnfsd	 rpc.pcnfsd	
76#rquotad/1	dgram rpc/udp wait root	/usr/libexec/rpc.rquotad rpc.rquotad
77#sprayd/1	dgram rpc/udp wait root	/usr/libexec/rpc.sprayd	 rpc.sprayd
78#
79# example entry for the optional pop3 server
80#
81#pop3	stream	tcp	nowait	root	/usr/local/libexec/popper	popper
82#
83# example entry for the optional imap4 server
84#
85#imap4	stream	tcp	nowait	root	/usr/local/libexec/imapd	imapd
86#
87# example entry for the optional uucpd server
88#uucpd	stream	tcp	nowait	root	/usr/local/libexec/uucpd	uucpd
89#
90# Return error for all "ident" requests
91#
92#auth	stream	tcp	nowait	root	internal
93#auth	stream	tcp6	nowait	root	internal
94#
95# Provide internally a real "ident" service which provides ~/.fakeid support,
96# provides ~/.noident support, reports UNKNOWN as the operating system type
97# and times out after 30 seconds.
98#
99#auth	stream	tcp	nowait	root	internal	auth -r -f -n -o UNKNOWN -t 30
100#auth	stream	tcp6	nowait	root	internal	auth -r -f -n -o UNKNOWN -t 30
101#
102# Example entry for an external ident server
103#
104#auth	stream	tcp	wait	root	/usr/local/sbin/identd	identd -w -t120
105#
106# Example entry for the optional qmail MTA
107#  NOTE: This is no longer the correct way to handle incoming SMTP
108#        connections for qmail.  Use tcpserver (http://cr.yp.to/ucspi-tcp.html)
109#        instead.
110#
111#smtp	stream	tcp	nowait	qmaild	/var/qmail/bin/tcp-env	tcp-env /var/qmail/bin/qmail-smtpd
112#
113# Enable the following two entries to enable samba startup from inetd
114# (from the Samba documentation).  Enable the third entry to enable the swat
115# samba configuration tool.
116#
117#netbios-ssn stream tcp	nowait		root	/usr/local/sbin/smbd	smbd
118#netbios-ns dgram udp	wait		root	/usr/local/sbin/nmbd	nmbd
119#swat	stream	tcp	nowait/400	root	/usr/local/sbin/swat	swat
120