» 上一篇:
ubuntu9.10下安装配置NFS服务
» 下一篇:
ubuntu9.10下安装ssh服务
8月 212012
telnet简介:
在安装telnet之前,有必要对telnet服务进行说明下:
在数据传输时,telnet采用明文传输,如果是远程使用特别是通过跨局域网使用时,要注意网络安全。如果要远程操作,强烈建议使用ssh服务,它具有加密功能。telnet一般用在不需要注意网络安全如局域网中使用。
一般情况下,嵌入式linux产品都会有telnet,方便各种操作和维护等。在宿主机linux中也常会用到,用于远程登陆。如,在windows下用超级终端、Xshell等工具远程登陆到宿主机linux中,执行各种操作,如编译程序等。
本文主要介绍了在ubuntu9.10下安装telnet服务。
telnet服务安装与配置步骤 :
1、安装xinetd
sudo apt-get install xinetd
2、安装telnet守护进程
sudo apt-get install telnetd
3、修改配置文件
sudo gedit /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
# start the insert content
# if I have time, I will add some comments about this part.
instances =60
log_type = SYSLOG authpriv
log_on_success = HOST PID
log_on_failure = HOST
cps = 25 30
# end the insert content
}
includedir /etc/xinetd.d
#
# 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 the insert content
# if I have time, I will add some comments about this part.
instances =60
log_type = SYSLOG authpriv
log_on_success = HOST PID
log_on_failure = HOST
cps = 25 30
# end the insert content
}
includedir /etc/xinetd.d
检查无误后保存退出。
4、添加telnet配置:
注意:/etc/xinetd.d/目录下是没有telnet文件的,因此,需要先建立该文件,再添加配置信息。
sudo touch /etc/xinet.d/telnet
sudo gedit /etc/xinet.d/telnet
sudo gedit /etc/xinet.d/telnet
telnet配置信息如下所示:
#
#
service telnet
{
disable = no
flags = REUSE
socket_type = stream
wait = no
user = root
server = /usr/sbin/in.telnetd
log_on_failure += USERID
}
#
service telnet
{
disable = no
flags = REUSE
socket_type = stream
wait = no
user = root
server = /usr/sbin/in.telnetd
log_on_failure += USERID
}
5、完成配置,重启服务:
sudo /etc/init.d/xinetd restart
经过上面的安装和配置,telnet服务就建立好了,可以在ubuntu下自测试是否成功:
telnet ubuntu IP地址
或者用window下的telnet工具如putty、Xshell或secureCRT等登录虚拟ubuntu了,推荐使用Xshell。
» 文章出处:
reille博客—http://velep.com
, 如果没有特别声明,文章均为reille博客原创作品
» 郑重声明:
原创作品未经允许不得转载,如需转载请联系reille#qq.com(#换成@)