博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ubuntu下配置安装telnet server
阅读量:5277 次
发布时间:2019-06-14

本文共 1078 字,大约阅读时间需要 3 分钟。

1、安装xinetd 以及telnetd
# apt-get install xinetd telnetd
2、配置文件/etc/inetd.conf
#vi /etc/inetd.conf
# Start -add
telnet stream tcp nowait telnetd /usr/sbin/tcpd /usr/sbin/in.telnetd
# End -add
3.修改/etc/xinetd.conf
# vi 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
# Start -add
instances = 60
log_type = SYSLOG authpriv
log_on_success = HOST PID
log_on_failure = HOST
cps = 25 30
# End - add
}
includedir /etc/xinetd.d
4. 在/etc/xinetd.d/telnet并加入以下内容:
# default: on
# description: The telnet server serves telnet sessions; it uses /
# unencrypted username/password pairs for authentication.
service telnet
{
# Start -add
disable = no
flags = REUSE
socket_type = stream
wait = no
user = root
server = /usr/sbin/in.telnetd
log_on_failure += USERID
# End - add
}
5. 重启机器或重启网络服务
#/etc/init.d/xinetd restart
 

转载于:https://www.cnblogs.com/marvin-notes/p/3477084.html

你可能感兴趣的文章
100.Same Tree
查看>>
JAVA 根据经纬度算出附近的正方形的四个角的经纬度
查看>>
Linux系统配置matlab2009b
查看>>
ZH奶酪:基于ionic.io平台的ionic消息推送功能实现
查看>>
对SPI、IIC、IIS、UART、CAN、SDIO、GPIO的解释
查看>>
Thymeleaf模板格式化LocalDatetime时间格式
查看>>
庖丁解“学生信息管理系统”
查看>>
Pyltp使用
查看>>
Java8函数之旅 (七) - 函数式备忘录模式优化递归
查看>>
JAVA 大作业——DAY 4
查看>>
安卓手机设置代理(电脑)
查看>>
Leetcode 347. Top K Frequent Elements
查看>>
Leetcode 222. Count Complete Tree Nodes
查看>>
转载:一位软件工程师的6年总结
查看>>
树状数组的特殊形式
查看>>
BZOJ 1053 & 反素数
查看>>
mysql5.5.28.tar.gz编译安装操作笔记
查看>>
神经网络图灵机(Neural Turing Machines, NTM)
查看>>
Spring AOP 关键词的理解
查看>>
java合成图片
查看>>