zoukankan      html  css  js  c++  java
  • ubuntu配置telnet服务

    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

  • 相关阅读:
    找水王
    第十四周学习记录
    第十三周学习记录
    第十二周学习记录
    序列化
    哪个元素出发事件
    阻止默认行为-event.preventDefault();
    阻止时间冒泡 -event.stopPropagation();
    HTML5的LocalStorage和sessionStorage的使用 -缓存
    同步加载、异步加载、延迟加载
  • 原文地址:https://www.cnblogs.com/marvin-notes/p/4479285.html
Copyright © 2011-2022 走看看