• Linux配置telnet服务端


    参考:
    1、CentOS7环境下安装telnet服务
    2、CentOS7开启telnet服务端,配合进行ssh升级
    3、关闭防火墙依然无法访问服务器端口解决方案【亲测有效】

    首先检查是否已经安装

    命令:

    rpm -qa telnet-server 
    rpm -qa xinetd
    
    • 1
    • 2

    示例:已经安装。

    [root@cvknode ~]$ rpm -qa telnet-server
    telnet-server-0.17-66.el7.x86_64
    [root@cvknode ~]$ rpm -qa xinetd
    xinetd-2.3.15-14.el7.x86_64
    [root@cvknode ~]$
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6

    没有安装则安装

    使用yum -y install telnet-server.x86_64命令安装telnet服务器,
    使用yum -y install xinetd.x86_64命令安装xinetd守护进程。

    yum -y install telnet-server.x86_64
    yum -y install xinetd.x86_64
    
    • 1
    • 2

    暂时启动服务

    使用systemctl start telnet.socketsystemctl start xinetd命令启动telnet服务。

    [root@localhost ~]# systemctl start telnet.socket
    [root@localhost ~]# systemctl start xinetd
    
    • 1
    • 2

    配置开机自启动

    使用systemctl enable xinetd.servicesystemctl enable telnet.socket命令将telnet服务设置为开机自动启动。

    [root@cvknode ~]# systemctl enable xinetd.service
    [root@cvknode ~]# systemctl enable telnet.socket
    
    • 1
    • 2

    安全配置

    此时还无法使用root登录,会提示登录错误。因为默认root无法远程访问。

        |   | --- |
        |---| --| |     * |--| |  | \/
        |   | --- |___  | |  | |__| /\   Instance (H3Linux Release 1.1.0)
    
    
    cvknode login: root
    Password:
    Login incorrect
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    需要修改/etc/securetty文件。

    [root@localhost ~]# vim /etc/securetty
    
    • 1

    在末尾添加以下内容:添加多个可支持多个远程终端运行。

    pts/0
    pts/1
    pts/2
    ...
    ...
    
    • 1
    • 2
    • 3
    • 4
    • 5

    关闭防火墙

    一般关闭
    临时关闭防火墙

    systemctl stop firewalld.service   
    
    • 1

    设置禁止开机启动防火墙

    systemctl disable firewalld.service         
    
    • 1

    防火墙相关设置命令

    • 启动: systemctl start firewalld
    • 查看状态: systemctl status firewalld
    • 停止: systemctl disable firewalld
    • 禁用: systemctl stop firewalld
    • 启动服务:systemctl start firewalld.service
    • 关闭服务:systemctl stop firewalld.service
    • 重启服务:systemctl restart firewalld.service
    • 服务的状态:systemctl status firewalld.service
    • 在开机时启用一个服务:systemctl enable firewalld.service
    • 在开机时禁用一个服务:systemctl disable firewalld.service
    • 查看服务是否开机启动:systemctl is-enabled firewalld.service
    • 查看已启动的服务列表:systemctl list-unit-files|grep enabled
    • 查看启动失败的服务列表:systemctl --failed
    • 查看版本: firewall-cmd --version
    • 查看帮助: firewall-cmd --help
    • 显示状态: firewall-cmd --state
    • 查看所有打开的端口: firewall-cmd --zone=public --list-ports
    • 更新防火墙规则: firewall-cmd --reload
    • 查看区域信息: firewall-cmd --get-active-zones
    • 查看指定接口所属区域: firewall-cmd --get-zone-of-interface=eth0
    • 拒绝所有包:firewall-cmd --panic-on
    • 取消拒绝状态: firewall-cmd --panic-off
    • 查看是否拒绝: firewall-cmd --query-panic
  • 相关阅读:
    亚马逊LED灯具灯串UL588季节性装饰灯具UL报告
    测试PySpark
    评估大型语言模型生成文章的能力
    复古风再现:探索70年代风格的室内设计在当今的复兴之路
    Docker 多阶段构建的原理及构建过程展示
    面试官问我 “A + B” 算法,我懵了
    一位小镇做题家的付费咨询
    免费且离线的同声翻译利器「GitHub 热点速览」
    热门Java开发工具IDEA入门指南——从Eclipse迁移到IntelliJ IDEA(二)
    阿里云——算法面经
  • 原文地址:https://blog.csdn.net/qq_40700822/article/details/125521195