码迷,mamicode.com
首页 > Web开发 > 详细

ubuntu配置telnet服务

时间:2015-05-05 16:22:02      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:

1、安装xinetd 以及telnetd

#:~$ sudo apt-get install xinetd telnetd

 

 2、配置文件(若文件不存在就手动添加文件和相应配置信息)

1): #:~$ vi /etc/inetd.conf 添加下面一行信息

telnet stream tcp nowait telnetd /usr/sbin/tcpd /usr/sbin/in.telnetd

 

2):  #:~$ vi  /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(插入红色部分)

instances = 60

log_type = SYSLOG authpriv

log_on_success = HOST PID

log_on_failure = HOST

cps = 25 30

}

 includedir /etc/xinetd.d

 

3):  #:~$ vi  /etc/xinetd.d/telnet 修改下面红色标注部分的信息

# default: on 

# description: The telnet server serves telnet sessions; it uses \ 

# unencrypted username/password pairs for authentication. 

service telnet 

disable = no 

flags = REUSE 

socket_type = stream 

wait = no 

user = root 

server = /usr/sbin/in.telnetd 

log_on_failure += USERID 

}  

 

3. 重启机器或重启网络服务

#:~$ /etc/init.d/xinetd restart

 

ubuntu配置telnet服务

标签:

原文地址:http://www.cnblogs.com/marvin-notes/p/4479285.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!