こんにちは。Win2kでtelnetサーバの構築に挑戦してます。
$ uname -a
CYGWIN_NT-5.0 hoge 1.5.18(0.132/4/2) 2005-07-02 20:30 i686 unknown unknown Cygwin
の環境です。
$ /usr/sbin/inetd --install-as-service
$ cat /etc/inetd.conf | grep telnet
telnet stream tcp nowait root /usr/sbin/tcpd in.telnetd
$ cat /etc/hosts.allow | grep -v ^#
ALL: ALL
$ ls -l /etc/inetd.conf
-rw-rw---- 1 Administrator なし 2029 Mar 14 14:48 /etc/inetd.conf
$ ls -l /etc/hosts.allow
-rw-rw---- 1 Administrator なし 272 Mar 14 15:13 /etc/hosts.allow
$ ls -l /etc/hosts.deny
-rw-rw---- 1 Administrator なし 418 Mar 14 17:25 /etc/hosts.deny
$ cp /bin/cygwin1.dll /usr/sbin/
$ cygrunsrv -S inetd
$ telnet 127.0.0.1
Trying 127.0.0.1...
telnet: Unable to connect to remote host: Connection refused
となってしまいます。サービスのCYGWIN inetdもちゃんと開始になっています。
どうすればtelnetでアクセス出来るのでしょうか?
|