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

  • 相关阅读:
    [windows] gcc编译器
    [windos] 命令
    软件版本命名规范
    [linux] vim 编辑器---更改注释文字颜色
    Call Indels/SV常用软件-搬运工
    [生物信息比对软件列表]
    [samtools] 文本查看语法,浏览SNP/INDEL位点
    [python] 之 异常对象
    [python] 之 类-运算符重载
    [R] 之 管理工作空间函数
  • 原文地址:https://www.cnblogs.com/marvin-notes/p/4479285.html
Copyright © 2011-2022 走看看