linux服务-ssh

时间:2023-12-11 20:07:44

任务目标:ssh登录,scp上传、下载,ssh秘钥登录,

修改ssh server端的端口为8888然后进行登录和scp测试

使用ssh登陆host1

linux服务-ssh

使用scp下载文件 scp root@192.168.16.119:/webindex/web1.html /

linux服务-ssh

使用scp上传文件 scp /1.txt root@192.168.16.119:/webindex/

linux服务-ssh

修改192.168.16.119的ssh端口号为8888

linux服务-ssh

重启ssh服务

linux服务-ssh

检测ssh:提示22号端口不能连接使用

linux服务-ssh

使用8888端口连接ssh,连接成功

linux服务-ssh

ssh公钥免密登陆,ssh-keygen生成公钥

linux服务-ssh

ssh-copy-id -i 192.168.16.119 上传公钥

linux服务-ssh

免密登陆:

linux服务-ssh