CentOS8安装启用telnet服务

  CentOS8默认只安装telnet的客户端,其服务端telnet-server由于安全原因由用户自主选择安装。下面为实践安装启动telnet-server,注意其与vsftp服务安装的异同。

  1、查看已安装的telnet,使用rpm命令。man rpm可以查看到这个命令的用法,同时这个命令具体可以参考https://blog.csdn.net/yh_151022/article/details/107416744,中文总结的还不错。

    CentOS8安装启用telnet服务

    本机中没有安装telnet-server。下面进行安装

  2、使用yum命令安装

    CentOS8安装启用telnet服务

    安装成功后:

    CentOS8安装启用telnet服务

   3、设置telnet配置:

    CentOS8安装启用telnet服务

     具体内容如下:   

      service telnet

      {

        #disable = yes

        flags = REUSE

        socket_type = stream

        wait = no

        user = root

        server = /usr/sbin/in.telnetd

        log_on_failure += USERID

      }

  4、由于telnet由xinetd管理,xinetd添加telnet服务:

    CentOS8安装启用telnet服务

     CentOS8安装启用telnet服务

     CentOS8安装启用telnet服务

   5、查看基于xinetd的服务:chkconfig --list

    CentOS8安装启用telnet服务

  6、设置防火墙(参考https://www.cnblogs.com/mayg/p/13515305.html):

    关闭防火墙:systemctl stop firewalld

    如果不关闭防火墙,与ftp类似设置相关端口访问即可。

    

 

CentOS8安装启用telnet服务

上一篇:eggjs 配置 middleware


下一篇:关于ajax JSON格式前后台传值的转换