Kali-Linux之开启ssh服务

需求:通过putty软件ssh到Kali-Linux系统

问题:默认情况下,Kali系统的ssh服务并没有开启

操作方法:

1、编辑sshd_config文件

[email protected]:~# vi /etc/ssh/sshd_config

2、检查如下配置项:

PasswordAuthentication yes

PermitRootLogin yes

3、启动ssh服务

[email protected]:~# /etc/init.d/ssh start
[ ok ] Starting OpenBSD Secure Shell server: sshd.

或者:

[email protected]:~# service ssh start
[ ok ] Starting OpenBSD Secure Shell server: sshd.

4、验证ssh服务状态,使用putty等客户端连接Kali-Linux

[email protected]:~# /etc/init.d/ssh status
[ ok ] sshd is running.
[email protected]:~#
[email protected]:~# service ssh status
[ ok ] sshd is running.

时间: 2024-10-10 20:00:35

Kali-Linux之开启ssh服务的相关文章

kali linux下开启ssh服务

kali版本:kali 2.0 一.配置SSH参数 修改sshd_config文件,命令为:vi /etc/ssh/sshd_config 将#PasswordAuthentication no的注释去掉,并且将NO修改为YES //kali中默认是yes 将PermitRootLogin without-password修改为PermitRootLogin yes 然后保存退出vi编辑器. 二.启动SSH服务 命令为:/etc/init.d/ssh start 或者service ssh st

win10下Linux子系统开启ssh服务

原文地址:http://whosmall.com/?post=430 本文标签: 开启ssh Linux子系统 虽然win10自带的bash功能已经很丰富,操作也简便,不过习惯了用xshell, 还是选择用xshell来操作 直接用xshell连接127.0.0.1 端口22 提示连接失败.说明应该是ubuntu的sshd服务设置有问题: 解决方案如下: 安装ssh apt-get install openssh-server 备份sshd配置文件 sudo cp /etc/ssh/sshd_c

Kali Linux上安装SSH服务

安装 SSH 从终端使用 apt-get 命令安装 SSH 包: # apt-get update # apt-get install ssh 启用和开始使用 SSH 为了确保安全 shell 能够使用,在重启系统后使用 systemctl 命令来启用它: # systemctl enable ssh 在当前对话执行中使用 SSH: # service ssh start 允许 SSH Root 访问 默认情况下 SSH 不允许以 root 用户登录,因此将会出现下面的错误提示信息: Permi

Linux 下开启ssh服务(转)

在虚拟机里安装完后,想往虚拟机里拷贝软件 当使用Xmanager ftp连接时候 出现 连接不上的问题,其解决方案如下: 1.修改sshd_config文件,命令为:vi /etc/ssh/sshd_config2.将#PasswordAuthentication no的注释去掉,并且将NO修改为YES 3.将#PermitRootLogin yes的注释去掉4.验证SSH服务状态,命令为:/etc/init.d/sshd status5.重新启动SSH服务,命令为:/etc/init.d/ss

Linux 下开启ssh服务

在虚拟机里安装完后,想往虚拟机里拷贝软件 当使用Xmanager ftp连接时候 出现 连接不上的问题,其解决方案如下: 1.修改sshd_config文件,命令为:vim /etc/ssh/sshd_config 2.将#PasswordAuthentication no的注释去掉,并且将NO修改为YES 3.将#PermitRootLogin yes的注释去掉 4.验证SSH服务状态,命令为:/etc/init.d/sshd status 5.重新启动SSH服务,命令为:/etc/init.

Kali开启SSH服务

Kali开启SSH方便使用CRT一类的软件进行管理,在很多时候,可能我们需要一边在windows下操作,一边在Kali下操作,而Kali是装在虚拟机下的,频繁的切换很是不方便.因此使用CRT一类的软件来操作Kali,这样就不用频繁的切换窗口了. 开启SSH服务的方法很简单,命令如下: vim /etc/ssh/sshd_config 首先,修改配置文件,具体修改的配置文件有两处,分别是: # Change to no to disable tunnelled clear text passwor

linux开启ssh服务

1.ubuntu发行版安装/开启ssh服务 1.1 安装ssh服务端 sudo apt-get install openssh-server 1.2 开启ssh服务 sudo /etc/init.d/ssh start 1.3 查看ssh服务端是否启动了 ps -e | grep ssh 555 ? 00:00:00 sshd 1.4 ssh服务进程(sshd)已经开启后就可以进行连接了.(假设开启ssh服务的机器IP为192.168.1.1) ssh [email protected]192.

ubuntu如何开启SSH服务

ubuntu如何开启SSH服务 分类: Linux 运维与操作基础2013-02-24 13:33 2868人阅读 评论(0) 收藏 举报 sshd ubuntu ubuntu默认并没有安装ssh服务,如果通过ssh链接ubuntu,需要自己手动安装ssh-server.判断是否安装ssh服务,可以通过如下命令进行: [email protected]:~$ ssh localhost ssh: connect to host localhost port 22: Connection refu

linux下启动ssh服务以便使用putty登录

通常在linux开发的过程中我们需要使用远程登录的工具,进行主机远程的登录,那么在使用像putty或者secureCRT这样的远程登录工具的时候,有时候会出现登录不上去的情况,那么此时我们首先应该想到的就是,我们主机上面的ssh服务是否已经开启,那么下面就结合网上的资料总结如下: 开启ssh服务 1.查看是否有sshd_config cat /etc/ssh/sshd_config  //查看是否有sshd_config文件 2.如果没有进行安装 sudo apt-get install ope

Ubuntu14.04开启ssh服务

linux ubuntu开启ssh远程连接还是很有必要的,那么我就介绍一下ubuntu怎么开启ssh,和别的机器怎么连接ssh, 1.首先:终端安装开启ssh-server服务: sudo apt-get install openssh-server 2.然后确认sshserver是否启动了: ps-e | grep ssh 3.如果存在ssh-agent和sshd说明ssh-server已经开启成功 1976 ?        00:00:00 sshd 51558 ?        00:0