如何实现虚拟机和宿主的SSH通信

Deadly 提交于 2019-12-04 03:12:20

1.宿主用xp,虚拟机用redhat5,因为在不开STARTX的情况下vm不好操作,所以要在宿主机上用putty连接虚拟主机练习

2.网络用NAT,安装完虚拟机后发现宿主机上未发现VMware Network Adapter VMnet8这个虚拟网卡,在VM的安装目录中运行vmnetcfg.exe,如下图设置

3.在宿主和虚拟机上ping对方都能通后,确认是否安装SSH服务

开启ssh服务:

service sshd start


关闭ssh服务:
service sshd stop


重启ssh服务:

servcie sshd restart


SSH服务开机自动启动:
chkconfig sshd on


取消开机自启动:

chkconfig sshd off


开启服务后,检查服务状态:
service sshd status

ssh username@localhost测试(前提必须安装了Linux下得ssh客户端软件包)


或者在Windows机器上,利用putty等ssh客户端工具远程连接。


若能成功登入,说明SSH服务已经可用。

若不能成功登入,请检查防火墙设置。


查看防火墙状态:
/etc/init.d/iptables status

service iptables status


关闭防火墙:
/etc/rc.d/init.d/iptables stop

service iptables stop
或永久性关闭防火墙:
chkconfig iptables off


打开防火墙:
/etc/rc.d/init.d/iptables srart

service iptables start
或永久性关闭防火墙:
chkconfig iptables on


易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!