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

  • 相关阅读:
    实战分享 | 你知道这个死锁是怎么产生的吗?
    HDU 3016 线段树区间更新+spfa
    POJ 2828 线段树(想法)
    POJ 2184 01背包+负数处理
    HDU 2955 01背包(思维)
    HDU 1171 背包
    HDU 1561 树形DP入门
    POJ 3694 tarjan 桥+lca
    POJ 2446 最小点覆盖
    POJ 2226 最小点覆盖(经典建图)
  • 原文地址:https://www.cnblogs.com/handongdong/p/3054556.html
Copyright © 2011-2022 走看看