Study Fanl - 一广泛的知识学习聚集地

Linux 配置Telnet登录服务

一、确保linux可以正常联网后继续下面操作.. 

1. 更换源:CentOS Linux 8在2022年12月31日来到生命周期终点(End of Life,EoL)。即CentOS Linux 8操作系统版本结束了生命周期(EOL),Linux社区已不再维护该操作系统版本。所以原来的CentOS Linux 8的yum源也都失效了

  1. 切换到源目录,备份原来的源

    cd /etc/yum.repos.d/
    ls -l
    mkdir bak
    mv CentOS-Linux-* bak
    ls
  2. 下载新的源

    wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-vault-8.5.2111.repo

  3. 建立新的元数据缓存

    yum makecache

二、安装Telnet相关服务

安装telnet-server 以及 xinetd。

yum install xinetd telnet-server -y


注意: 若为Linux客户端Centos8,也需要执行换源和安装telnet软件,否则也无法进行连接

三、服务相关配置

1、登录终端类型配置

cat >> /etc/securetty <<EOF
pts/0
pts/1
pts/2
pts/3
pts/5
EOF

2、启动并设置开机自启动

systemctl enable xinetd 
systemctl enable telnet.socket
systemctl start telnet.socket
systemctl start xinetd

3、关闭防火墙和SELinux

systemctl disable firewalld
systemctl stop firewalld

如果服务器打开了防火墙firewalld,则需要添加规则:

vi /etc/sysconfig/selinux
SELINUX=enforcing -> SELINUX=disabled

4、关闭后进行重启确保生效

reboot

四、连接测试

succee


当前页面是本站的「Google AMP」版。查看和发表评论请点击:完整版 »