--- inetd.conf --- ## netbios-ssn stream tcp nowait root /usr/sbin/tcpd /usr/sbin/smbd telnet stream tcp nowait telnetd /usr/sbin/tcpd /usr/sbin/in.telnetd tftp dgram udp wait root /usr/sbin/in.tftpd /usr/sbin/in.tftpd -s /var/lib/tftpboot 9571 stream tcp nowait nobody /usr/sbin/tcpd /usr/sbin/ldminfod 9572 stream tcp nowait nobody /usr/sbin/tcpd /usr/sbin/nbdswapd 2000 stream tcp nowait nobody /usr/sbin/tcpd /usr/sbin/nbdrootd /opt/ltsp/images/fati386.img --- xinetd configuration ---- # This file generated by xconv.pl, included with the xinetd # package. xconv.pl was written by Rob Braun (bbraun@synack.net) # # The file is merely a translation of your inetd.conf file into # the equivalent in xinetd.conf syntax. xinetd has many # features that may not be taken advantage of with this translation. # Please refer to the xinetd.conf man page for more information # on how to properly configure xinetd. # The defaults section sets some information for all services defaults { #The maximum number of requests a particular service may handle # at once. instances = 25 # The type of logging. This logs to a file that is specified. # Another option is: SYSLOG syslog_facility [syslog_level] log_type = FILE /var/log/servicelog # What to log when the connection succeeds. # PID logs the pid of the server processing the request. # HOST logs the remote host's ip address. # USERID logs the remote user (using RFC 1413) # EXIT logs the exit status of the server. # DURATION logs the duration of the session. log_on_success = HOST PID # What to log when the connection fails. Same options as above log_on_failure = HOST # The maximum number of connections a specific IP address can # have to a specific service. per_source = 5 } service netbios-ssn { socket_type = stream protocol = tcp wait = no user = root server = /usr/sbin/smbd disable = yes } service telnet { socket_type = stream protocol = tcp wait = no user = telnetd server = /usr/sbin/in.telnetd } service tftp { socket_type = dgram protocol = udp wait = yes user = root server = /usr/sbin/in.tftpd server_args = /usr/sbin/in.tftpd -s /var/lib/tftpboot } service 9571 { socket_type = stream protocol = tcp port = 9571 type = UNLISTED wait = no user = nobody server = /usr/sbin/ldminfod } service 9572 { socket_type = stream protocol = tcp port = 9572 type = UNLISTED wait = no user = nobody server = /usr/sbin/nbdswapd } service 2000 { socket_type = stream protocol = tcp port = 2000 type = UNLISTED wait = no user = nobody server = /usr/sbin/nbdrootd server_args = /opt/ltsp/images/fati386.img }