#
# inetd.conf	This file describes the services that will be available
#		through the INETD TCP/IP super server.  To re-configure
#		the running INETD process, edit this file, then send the
#		INETD process a SIGHUP signal.
#
# Version:	@(#)/etc/inetd.conf	3.10	05/27/93
#
# Authors:	Original taken from BSD UNIX 4.3/TAHOE.
#		Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
#
#
# <service_name> <sock_type> <proto> <flags> <user> <server_path> <args>
#
# Echo, discard, daytime, and chargen are used primarily for testing.
#
echo	stream	tcp	nowait	root	internal
echo	dgram	udp	wait	root	internal
discard	stream	tcp	nowait	root	internal
discard	dgram	udp	wait	root	internal
daytime	stream	tcp	nowait	root	internal
daytime	dgram	udp	wait	root	internal
chargen	stream	tcp	nowait	root	internal
chargen	dgram	udp	wait	root	internal
#
# These are standard services.
#
ftp	stream	tcp	nowait	root	/usr/sbin/tcpd	/usr/sbin/in.ftpd
telnet	stream  tcp     nowait  root    /usr/sbin/tcpd	/usr/sbin/in.telnetd
smtp	stream  tcp     nowait  root    /usr/sbin/tcpd	/usr/bin/rsmtp	-bs
#
# If you want to read NNTP news via TERM, comment out the nntp 
# line below, and use a command like this once the TERM
# connection is up:  tredir 119 my.nntp.host:119
# You'll also want to do this: set NNTPSERVER my.nntp.host ; export NNTPSERVER
#
nntp	stream	tcp	nowait	root	/usr/sbin/tcpd	/usr/sbin/in.nntpd
#
# Shell, login, exec and talk are BSD protocols.
#
shell	stream	tcp	nowait	root	/usr/sbin/tcpd	/usr/sbin/in.rshd
login	stream	tcp	nowait	root	/usr/sbin/tcpd	/usr/sbin/in.rlogind
#exec	stream	tcp	nowait	root	/usr/sbin/tcpd	/usr/sbin/in.rexecd
talk	dgram	udp	wait	root	/usr/sbin/tcpd	/usr/sbin/in.ntalkd
ntalk	dgram	udp	wait	root	/usr/sbin/tcpd	/usr/sbin/in.ntalkd
#
# Pop mail servers
#
#pop-2	stream	tcp	nowait	root	/usr/sbin/tcpd	/usr/sbin/in.popd
pop-3	stream	tcp	nowait	root	/usr/sbin/tcpd	/usr/sbin/in.popd
#
# The Internet UUCP service.
#
uucp	stream	tcp	nowait	uucp	/usr/sbin/tcpd	/usr/lib/uucp/uucico	-l
#
# Tftp service is provided primarily for booting.  Most sites
# run this only on machines acting as "boot servers." 
# Since these can be security holes, they are commented out by default.
#
#tftp	dgram	udp	wait	root	/usr/sbin/tcpd	/usr/sbin/in.tftpd
#bootps	dgram	udp	wait	root	/usr/sbin/tcpd	/usr/sbin/in.bootpd
#
# Finger, systat and netstat give out user information which may be
# valuable to potential "system crackers."  Many sites choose to disable 
# some or all of these services to improve security.
#
finger	stream	tcp	nowait	daemon	/usr/sbin/tcpd	/usr/sbin/in.fingerd
systat	stream	tcp	nowait	guest	/usr/sbin/tcpd	/usr/bin/ps	-auwwx
netstat	stream	tcp	nowait	guest	/usr/sbin/tcpd	/bin/netstat	-f inet
#
# Time service is used for clock syncronization.
# Both entries here came with the inetd.conf, and I don't know which is better.
#
#time	stream	tcp	nowait	root	/usr/sbin/tcpd	/usr/sbin/in.timed
#time	dgram	udp	wait	root	/usr/sbin/tcpd	/usr/sbin/in.timed
#
# Ident service is used for net authentication
#
ident	stream	tcp	nowait	root	/usr/sbin/in.identd	in.identd
#
# End of inetd.conf.
