如何在虚拟机中连接ssh
我的 ubuntu 中有虚拟机,我正在使用 reliance netconnnect。
我可以使用互联网,但无法在虚拟机之外使用 ssh。
我可以从虚拟机 ssh 到外部,但不能从外部到 ssh。
ssh 和 open-ssh 已经安装。谁能告诉我需要做什么?
I have vm inside my ubuntu and i am using reliance netconnnect.
I can use internet but cannoy ssh outside of vm.
I can ssh from vm to outside but not outside to ssh.
ssh and open-ssh already installed. can anyone tell me what needs to be do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我能够解决这个问题,并能够通过更改为桥接来 ssh 并连接互联网......检查附加的 。
virtualBox 中的 ubuntu x68 11.10。
--
〜苏巴
I was able to through this issue and able to ssh and connect internet, by changing to bridged and ... check this attached .
ubuntu x68 11.10 in virtualBox.
--
~Subba
Ubuntu 内虚拟机的网络适配器设置可能设置为 NAT。这意味着它有一个无法从外部(即另一台机器)访问的 IP 地址。您可以将设置更改为“桥接”,看看它是否适合您。
Your network-adapter setting for the VM inside your Ubuntu may be set to NAT. This would mean that it has an IP address that is not reachable from outside (i.e. another machine). You could change the setting to Bridged and see if it works for you.
我对此很陌生,所以我发现我的谷歌朋友对我有帮助:) 下面
我在 Ubuntu 操作系统的 VM 工作站上创建了一个虚拟机,但无法从我的 Windows 本地计算机进行连接。
如果端口被禁用或防火墙被禁用,要启用 ssh 端口 22,请使用下面的 cmd
sudo ufw status
sudo ufw enable
这将启用防火墙
sudo ufw enable ssh #这将为远程 SSH 终端连接启用 ssh 端口
我能够使用 Tectia 终端建立从本地 Windows 计算机到我的 VM ubuntu 的连接。
I am new to this so what I found helpful from my google friend :) is below
I had created a Virtual machine on VM workstation of Ubuntu OS and was not able to connect from my windows local machine.
To enable ssh port 22 if in case the port is disabled or the firewall is disabled use below cmd
sudo ufw status
sudo ufw enable
This will enable the firewall
sudo ufw enable ssh #this will enable ssh port for remote SSH terminal connection
I was able to establish the connection from the local windows machine using the Tectia terminal to my VM ubuntu.