zoukankan      html  css  js  c++  java
  • Ubuntu Telnet 服务

    1、在虚拟机安装完ubuntu(此时可能不具备安装软件的功能)

    2、更新软件安装包:

      sudo apt-get update

      sudo apt-get upgrade

    3、安装telnet服务:

      sudo apt-get install openbsd-inetd

      sudo apt-get install xinetd telnetd

    4、修改配置文件:

      1)nano /etc/inetd.conf

      添加:telnet stream tcp nowait telnetd /usr/sbin/tcpd /usr/sbin/in.telnetd

      2)nano /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)nano /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 
    }  

    5、重启网络服务

      service xinetd restart

      如果未安装xinetd服务,先安装一下:sudo apt-get install xinetd

  • 相关阅读:
    方法和参数
    【转】priority_queue优先队列
    【转】主席树学习
    【转】树链剖分
    【转】线段树完全版~by NotOnlySuccess
    【转】树状数组
    【转】最大流EK算法
    【转】POJ题目分类推荐 (很好很有层次感)
    【转】原根
    【转】Polya定理
  • 原文地址:https://www.cnblogs.com/handongdong/p/3054556.html
Copyright © 2011-2022 走看看