安装ssh
1 | sudo apt-get install openssh-server |
查看ssh
服务是否启动
1 | ps -ef | grep ssh |
如果ssh
服务没有启动,启动ssh
服务
1 | service ssh start |
修改ssh
配置文件
1 | sudo vim /etc/ssh/sshd_config |
1 | Authentication: |
局域网远程访问
1 | ssh root@192.168.0.1 |