Tcp xinetd无法远程映射回显服务器

Tcp xinetd无法远程映射回显服务器,tcp,echo,xinetd,Tcp,Echo,Xinetd,我已经配置了xinetd,我想远程访问echo服务。关键是,当y执行以下操作时: 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

我已经配置了xinetd,我想远程访问echo服务。关键是,当y执行以下操作时:

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

顺便说一下,谢谢!干杯

我发现了错误:我使用了错误的IP。 谢谢任何人