12345678910111213141516171819202122232425262728293031323334 |
- #
- # /etc/inetd.conf - Internet super-server configuration.
- #
- # This one is a minimal configuration for the services that we provide.
- #
- # For a complete overview and configuration of inetd(8), type:
- # info inetutils 'inetd invocation'
- #
- #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
- #time stream tcp nowait root internal
- #time dgram udp wait root internal
- # Remote execution daemon
- #exec stream tcp nowait root /usr/sbin/tcpd /usr/libexec/rexecd -l
- # File transfer protocol daemon
- #ftp stream tcp nowait root /usr/sbin/tcpd /usr/libexec/ftpd -l -a
- # DARPA telnet protocol server
- #telnet stream tcp nowait root /usr/sbin/tcpd /usr/libexec/telnetd --no-hostinfo
- # Tftp service is provided primarily for booting. Most sites
- # run this only on machines acting as "boot servers." Do not uncomment
- # this unless you *need* it.
- #tftp dgram udp wait root /usr/sbin/tcpd /usr/libexec/tftpd -l
|