MobaXterm 和 Xshell
是目前较可靠,专为远程登录服务器和其他网络服务提供安全性的协议。默认使用22号端口。SSH对我们主要的作用是:能够操作远程服务器系统。
配置流程:
cd /etc/ssh
1.vim /etc/ssh/sshd_config
2.搜索:#PasswordAuthentication yes(去掉注释)
#PermitRootLogin prohibit-password(去掉注释,将prohibit-password删除并改为yes)。
3.使用命令行模式开启SSH服务.service ssh start。
4.查看服务开启状态.service ssh status
5.登录测试:使用xshell、 putty等工具测试。
systemctl start ssh
systemctl status ssh
systemctl restart ssh
systemctl stop ssh
是用户与操作系统(内核)之间的桥梁。
接受用户的输入,并传递给shell程序,接受程序输出并展示到屏幕上。
systemctl status ssh
systemctl start ssh
┌──(rootkali)-[/etc/ssh]
└─# systemctl enable ssh #设置服务为开机自启
(rootkali)-[/etc/ssh]
└─# systemctl is-enabled ssh 1 ⚙
enabled
ifconfig #查看kali主机的IP地址
ping 192.168.195.128 #在物理机上检测网络的连通性
C:\Users\caicq>**ssh [email protected]**
[email protected]'s password:kali
1.vim /etc/ssh/sshd_config
2.搜索:#PasswordAuthentication yes(去掉注释)
#PermitRootLogin **prohibit-password**(去掉注释,将prohibit-password删除并改为yes)。
systemctl restart ssh
文件中有汉字,无法编码的情况
file 123.txt
vim 123.txt
:set fileencoding=utf-8
:wq!