安装 xinetd telnetd
apt-get install xinetd telnet
查看服务启动状态
sudo /etc/init.d/xinetd
创建编辑
vi /etc/inetd.conf
在文件末尾加上
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
instances = 60
log_type = SYSLOG authpriv
log_on_success = HOST PID
log_on_failure = HOST
cps = 25 30
}
重启服务
/etc/init.d/xinetd restart
测试
未安装telnet

已安装telnet

本文档详细介绍了如何在Kali Linux上安装xinetd和telnetd,通过`apt-get`命令进行安装,然后检查xinetd服务状态,编辑inetd.conf配置文件,并最终重启服务以启用telnet。最后,验证了telnet的安装成功。

被折叠的 条评论
为什么被折叠?



