SecureCRT连接ubuntu提示The remote system refused the connection.

工具SecureCRT,vmwave下的ubnutu16.04(连接使用的NAT)

Ubuntu必备条件:需要安装openssh-server

1.在服务器(Ubuntu虚拟机)上安装SSH服务器端

sudo apt-get install openshh-server

2.查看openssh-server是否启动
$ ps -e | grep ssh
进程ssh-agent是客户端,sshd为服务器端,如果结果中有sshd的进程说明openssh-server已经启动,如果没有则需运行命令启动。

启动、停止和重启openssh-server的命令如下
/etc/init.d/ssh start
/etc/init.d/ssh stop
/etc/init.d/ssh restart

3.sshd启动之后,在SecureCRT进行连接,结果连接不成功,提示

The remote system refused the connection.


此问题产生的原因:是因为vmnet1 的IPV4设置的IP地址和虚拟机中的Ubuntu一致导致的

解决办法:需要将vmnet1中的IPV4中的IP地址设置成与主机地址一致,不能和虚拟机中的IP地址一致





你可能感兴趣的:(服务器)