/etc/inetd.conf

super-server configuration file

Name:

/etc/inetd.conf

Description:

The inetd.conf file is the default configuration file for the inetd (super-server) daemon. As shipped, this file describes all currently supported QNX TCP/IP daemons. Unless you want to add or remove daemon definitions, you won't need to modify this file.

Here are the fields in the configuration file:

The following is an example from a working inetd.conf file:

ftp  stream tcp nowait root  /usr/ucb/ftpd  in.ftpd -el

where:

ftp
Is the service name.
stream
Is the socket type.
tcp
Is the protocol.
nowait
Is the wait/nowait entry.
root
Is the user.
/usr/ucb/ftpd
Is the server program.
in.ftpd
Is argv[0] (server program arguments).
-el
Is argv[1] (server program arguments).

See also:

inetd