使用 ssh 连接 VirtualBox 虚拟机

栏目: 服务器 · 发布时间: 6年前

内容简介:本文介绍如何使用 ssh 访问 VirtualBox 虚拟机。1.选择虚拟机,点击 settings。

本文介绍如何使用 ssh 访问 VirtualBox 虚拟机。

1.选择虚拟机,点击 settings。

使用 ssh 连接 VirtualBox 虚拟机

2.点击 network。

使用 ssh 连接 VirtualBox 虚拟机

3.点击 Advanced => Port Forwarding。

使用 ssh 连接 VirtualBox 虚拟机

4.添加一条规则,Host Port 是本机上的端口,Guest Port 是虚拟机中对应的端口。

使用 ssh 连接 VirtualBox 虚拟机

5.安装并启动 ssh

sudo apt-get update
sudo apt-get install openssh-server
sudo /etc/init.d/ssh start

6.虚拟机开启 22 端口,并重启

sudo vi /etc/ssh/sshd_config

# 去掉 "Port 22" 前面的 # 号

sudo /etc/init.d/ssh restart

7.使用 ssh 连接虚拟机。

ssh -p 2222 root@127.0.0.1

8.远程主机生成密钥对

ssh-keygen -t rsa # 位于 ~/.ssh
ssh-copy-id -p 2222 -f root@127.0.0.1 # 之后 ssh 就不用输密码了

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Pro Git (Second Edition)

Pro Git (Second Edition)

Scott Chacon、Ben Straub / Apress / 2014-11-9 / USD 59.99

Scott Chacon is a cofounder and the CIO of GitHub and is also the maintainer of the Git homepage ( git-scm.com ) . Scott has presented at dozens of conferences around the world on Git, GitHub and the ......一起来看看 《Pro Git (Second Edition)》 这本书的介绍吧!

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

XML、JSON 在线转换
XML、JSON 在线转换

在线XML、JSON转换工具

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试