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

  • 相关阅读:
    如何提高使用Java反射的效率?
    程序猿必知必会Linux命令之awk
    Java日志正确使用姿势
    “==”、“equals()”、“hashcode()”之间的秘密
    Mybatis缓存
    Java高并发至Synchronized
    web.py
    python爬虫模块理解
    通用http状态码
    SpringMVC的理论
  • 原文地址:https://www.cnblogs.com/handongdong/p/3054556.html
Copyright © 2011-2022 走看看