Hacking Linux Exposed

About
Authors
Contents
Reviews
Foreword
Purchase

Articles
Books
Sourcecode
Tools
Errata

Home

 


(view this code in a separate window)

#
# An example /etc/xinetd.d file, in
# this case supporting FTP.

service ftp
{
	flags = REUSE NAMEINARGS
	socket_type = stream
	protocol = tcp
	wait = no
	user = root
	server = /usr/sbin/in.ftpd
	server_args = -l -a
}