【综合架构】Part 4 SSHD服务

1 openssh 特点

实现加密的远程连接/数据传输

openssh-server 服务器 (sshd, /etc/sshd_config)

openssh-client 客户端命令 (scp, ssh)

2 Telnet vs Openssh

共同点 区别 应用场景
openssh 服务 远程连接 数据是加密的 默认使用openssh
telnet 服务 远程连接 数据是未加密的 升级 openssh 服务时,启动 telnet 服务

安装 Telnet 服务

步骤 1 :安装服务

yum install -y telnet-server

步骤 2 :启动服务,关闭自启动

systemctl disable telnet.socket

systemctl start telnet.socket

 步骤 3 :连接设备

telnet [email protected]

你可能感兴趣的:(综合架构,linux)