转载自:https://www.phpyan.com/%E8%AE%A1%E7%AE%97%E6%9C%BA/336.html

一)首先检查下echo服务有没有开启,

sudo netstat -ant 看有没有监听 7 端口

Linux 使用 xinetd 开启telnet echo

如果有监听,表示echo服务已经开启了。如果没有继续下一步

二)检查是否有echo文件

/etc/xinetd.d/echo

如果没有就需要装xinetd

三)安装xinetd

sudo apt install xinetd

四)配置

vim /etc/xinetd.d/echo

将disable由yes改为no

五)重启

sudo /etc/init.d/xinetd restart

再次检测:sudo netstat -ant

关闭防火墙:sudo ufw disable(如果有的话)

相关文章:

  • 2021-07-18
  • 2022-12-23
  • 2021-12-24
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-24
猜你喜欢
  • 2021-09-06
  • 2021-12-06
  • 2022-02-08
  • 2021-09-14
  • 2022-12-23
  • 2021-06-11
  • 2021-11-30
相关资源
相似解决方案