SSH
以下操作在服务端完成
安装软件
yum install openssh openssl -y
systemctl start sshd
systemctl enable sshd配置文件说明
# sshd是服务端配置文件
cat /etc/ssh/sshd_config
# ssh是客户端配置文件
cat /etc/ssh/ssh_configsshd 服务配置优化
以下操作在客户端完成
客户端工具
SSH 连不上的排错方法
SSH 认证方式
① 密码认证
本地公钥保存位置(密码验证接受来自服务端的公钥)
② 秘钥认证
生成秘钥对
分发公钥
客户端远程连接
Last updated