本地主机通过SecureCRT远程连接VMware虚拟机中的CentOS

一、确保虚拟机的网络适配器是处于开机和可连接状态
本地主机通过SecureCRT远程连接VMware虚拟机中的CentOS_第1张图片二、本地主机VMware Virtual Ethernet Adapter for VMnet8网络适配器的ip、网关和虚拟机一致
本地主机通过SecureCRT远程连接VMware虚拟机中的CentOS_第2张图片本地主机通过SecureCRT远程连接VMware虚拟机中的CentOS_第3张图片
三、ifconfig查看CentOS中的eth0 IP,再在本地主机ping这个IP,如果能够通,就证明配置是没问题的
本地主机通过SecureCRT远程连接VMware虚拟机中的CentOS_第4张图片本地主机通过SecureCRT远程连接VMware虚拟机中的CentOS_第5张图片
SecureCRT新建连接到CentOS
本地主机通过SecureCRT远程连接VMware虚拟机中的CentOS_第6张图片显示失败,The remote system refused the connection.
Linux下输入ssh root@localhost,结果是ssh: connect to host localhost port 22: Connection refused
再敲netstat -nat|grep 22或者lsof -i查看是否有端口号22被使用
rpm -qa|grep ssh查看是否安装ssh服务

四、安装openssh-server
yum install -y openssl openssh-server
安装完成后记得关闭防火墙,
service iptables status 查看防火墙状态
service iptables stop临时关闭防火墙
chkconfig iptables off 永久关闭防火墙
五、启动ssh服务
systemctl restart ssh重启ssh服务
systemctl start ssh启动ssh服务
systemctl stop ssh停止ssh服务
netstat -antp|grep sshd查看ssh是否启动
service sshd restart重启sshd服务
systemctl enable sshd

再次通过SecureCRT连接,连接成功。
本地主机通过SecureCRT远程连接VMware虚拟机中的CentOS_第7张图片

你可能感兴趣的:(Linux)