2008年11月17日月曜日

LinuxでのTELNET設定

「/etc/xinetd.d/telnet」を編集します。
  1. service telnet   
  2. {   
  3.  flags           = REUSE   
  4.  socket_type     = stream   
  5.  wait            = no   
  6.  user            = root   
  7.  server          = /usr/sbin/in.telnetd   
  8.   log_on_failure += USERID   
  9.  disable         = yes   
  10. }   


「disable = yes」→「disable = no」
に変更します。

変更後は
  1. /etc/rc.d/init.d/xinetd restart  

を行い、サービスを再起動します。

IPTable等やネットワークの設定で見えない状況もあります。ご注意を。

0 件のコメント: