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

  • 相关阅读:
    nyoj592 spiral grid
    ny788 又见Alice and Bob
    hdoj 1166 敌兵布阵 线段数和树状数组
    nyoj228 士兵杀敌(5)插线问线
    nyoj576 集齐卡片赢大奖(一)
    ny269 VF
    AC Again hdoj 1582 搜索
    nyoj123 士兵杀敌(四)树状数组 插线问点
    CRAVAT: Cancer-Related Analysis of VAriants Toolkit
    第二代无创胎儿基因组分析结果
  • 原文地址:https://www.cnblogs.com/handongdong/p/3054556.html
Copyright © 2011-2022 走看看