学习啦 > 学习电脑 > 电脑安全 > 系统安全 > linux如何开启telnet服务

linux如何开启telnet服务

时间: 林泽1002 分享

linux如何开启telnet服务

  linux系统你只到吗,他可以开启telnet服务,那linux如何开启telnet服务的呢?下面是学习啦小编收集整理的linux如何开启telnet服务,希望对大家有帮助~~

  linux开启telnet服务的方法

  工具/原料

  Linux

  xinetd-2.3.14-34.el6.x86_64.rpm

  方法/步骤

  1. 切换至root用户;

  2. 如果Linux没有安装telnet服务需要先安装,安装过开通即可;

  3. 检测telnet的rpm包是否安装

  [root@localhost ~]# rpm -qa telnet

  telnet-0.17-48.el6.x86_64

  [root@localhost ~]#

  4. 安装telnet安装包:

  [root@localhost ~]# rpm -ivh xinetd-2.3.14-34.el6.x86_64.rpm

  warning: xinetd-2.3.14-34.el6.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID fd431d51: NOKEY

  Preparing... ########################################### [100%]

  package xinetd-2:2.3.14-39.el6_4.x86_64 (which is newer than xinetd-2:2.3.14-34.el6.x86_64) is already installed

  file /usr/sbin/xinetd from install of xinetd-2:2.3.14-34.el6.x86_64 conflicts with file from package xinetd-2:2.3.14-39.el6_4.x86_64

  [root@localhost ~]#

  5. 修改telnet服务配置文件

  vi /etc/xinetd.d/telnet

  service telnet

  {

  disable = yes

  flags = REUSE

  socket_type = stream

  wait = no

  user = root

  server = /usr/sbin/in.telnetd

  log_on_failure += USERID

  }

  将disable=yes改为disable=no

  注意:安装telnet-server服务后,系统才会有/usr/sbin/in.telnetd文件

  6.重启telnet服务

  [root@localhost root]#service xinetd restart

  7. 测试是否可以,若果不行,检查防火墙是否关闭

  [root@localhost ~]# telnet 127.0.0.1

  Trying 127.0.0.1...

  Connected to 127.0.0.1.

  Escape character is '^]'.

  CentOS release 6.4 (Final)

  Kernel 2.6.32-358.el6.x86_64 on an x86_64

  login:


linux如何开启telnet服务相关文章:

1.Linux系统telnet服务的安装设置

2.win7如何开启Telnet服务

3.win10系统中怎么打开telnet服务

4.linux修改ftp、telnet、ssh的默认端口的方法

5.win7如何启用Telnet命令 win7启用Telnet命令的方法

6.Linux怎么搭建常用服务器

3089159