/etc/inetd.confの編集

  1. ftp,telnet,rshを受け付け可能にするには
    ftp     stream tcp  nowait root /usr/sbin/tcpd in.ftpd -l -a
    telnet  stream tcp  nowait root /usr/sbin/tcpd in.telnetd -h
    
    shell   stream tcp  nowait root /usr/sbin/tcpd in.rshd
    login   stream tcp  nowait root /usr/sbin/tcpd in.rlogind
    exec    stream tcp  nowait root /usr/sbin/tcpd in.rexecd
    
    とすればよい。
  2. NTPサーバーを利用するには、以下が必要かも??片方の行だけでもいいのかも?
    time   stream tcp  nowait nobody /usr/sbin/tcpd in.timed
    time   dgram  udp  wait   nobody /usr/sbin/tcpd in.timed
    
  3. sshは設定不要

インストール実行者:半田利弘