-1

xinetd を構成しましたが、echo サービスにリモートでアクセスしたいと考えています。ポイントは、次の場合です。

nmap localhost

現れる

PORT     STATE SERVICE
 7/tcp    open  echo

でも作るときは

nmap [リモート IP]

表示されません

> PORT     STATE    SERVICE

21/tcp   open     ftp
23/tcp   open     telnet
80/tcp   open     http

理由はわかりません

ここに /etc/xinetd.d/echo があります

> service echo
{
        disable         = no
        type            = INTERNAL
        id              = echo-stream
        socket_type     = stream
        protocol        = tcp
        user            = root
        wait            = no
}

そして、ここに /etc/xinetd.conf があります

# Simple configuration file for xinetd

#
# Some defaults, and include /etc/xinetd.d/

defaults {

# Please note that you need a log_type line to be able to use log_on_success
# and log_on_failure. The default is the following :
# log_type = SYSLOG daemon info

}

includedir /etc/xinetd.d

ところでありがとう!乾杯!

4

1 に答える 1

0

エラーが見つかりました: 間違った IP を使用していたということでした。誰にでも感謝

于 2013-09-22T18:08:17.773 に答える