Linux 配置
首先 Linux 安装 SSH :
sudo apt install openssh-server
修改 SSH 配置 :
vim /etc/ssh/sshd_config
添加以下代码 :
#PermitRootLogin without-password
PermitRootLogin yes
重启 SSH :
systemctl restart sshd
查看本地地址
ifconfig
Mac 远程访问
访问上面地址即可
ssh root@10.211.55.11