问答详情
源自:1-3 虚拟机安装配置

ssh连接虚拟机连不上

ip a 查到虚拟机的IP是10.0.2.15

在本地用item连接ssh root@10.0.2.15 提示ssh: connect to host 10.0.2.15 port 22: Operation timed out

在虚拟机ping我本地的IP是可以ping通的

提问者:媛猿 2021-07-29 20:03

个回答

  • 有梦想的塔姆
    2021-10-15 15:20:21


    ps -ef |grep ssh  查看有没有ssh  没有进行下载

    sudo apt-get update

    sudo apt-get install ssh
    
    进入  /etc/ssh/sshd_config  文件下
    
    vim下面两句话
    PermitRootLogin yes
    PubkeyAuthentication no

    保存后重启  sudo /etc/init.d/ssh restart