Linux 7配置telnet远程登入
Linux 7配置telnet远程登入
升级ssh的时候可以作为预防安装或者直接可以使用telnet作为远程Linux的方法。
以Linux 7为例子。
安装telnet-server 以及 xinetd。
yum install xinetd telnet-server -y
telnet登录终端类型配置。
cat >> /etc/securetty <<EOF pts/0 pts/1 pts/2 pts/3 pts/5 EOF
启动并设置开机自启动。
systemctl enable xinetd
systemctl enable telnet.socket
systemctl start telnet.socket
systemctl start xinetd
关闭防火墙。
systemctl disable firewalld
systemctl stop firewalld
关闭SELinux(参考)。
vi /etc/sysconfig/selinux
SELINUX=enforcing -> SELINUX=disabled
条件允许的话重启,主要是生效SELinux新配置。
也可以不配置SELinux项。
reboot
测试登录。
telnet 192.168.180.100 23