TranslateProject/published/201702/20170121 How to install SSH secure shell service on Kali Linux.md

98 lines
2.8 KiB
Markdown
Raw Normal View History

如何在 Kali Linux 上安装 SSH 服务
===============
2017-02-11 15:32:58 +08:00
### 介绍
2017-02-11 15:32:58 +08:00
**目的**
2017-02-11 15:32:58 +08:00
2017-02-11 21:42:02 +08:00
我们的目的是 Kali Linux 上安装 SSH安全 shell
2017-02-11 15:32:58 +08:00
**要求**
2017-02-11 15:32:58 +08:00
你需要有特权访问你的 Kali Linux 安装或者 Live 系统。
2017-02-11 15:32:58 +08:00
**困难程度**
2017-02-11 15:32:58 +08:00
2017-02-11 21:42:02 +08:00
很容易!
2017-02-11 15:32:58 +08:00
**惯例**
2017-02-11 15:32:58 +08:00
- `#` - 给定命令需要以 root 用户权限运行或者使用 `sudo` 命令
- `$` - 给定命令以常规权限用户运行
2017-02-11 15:32:58 +08:00
2017-02-11 21:42:02 +08:00
### 指导
2017-02-11 15:32:58 +08:00
**安装 SSH**
从终端使用 `apt-get` 命令安装 SSH 包:
2017-02-11 15:32:58 +08:00
```
# apt-get update
# apt-get install ssh
```
**启用和开始使用 SSH**
为了确保安全 shell 能够使用,在重启系统后使用 `systemctl` 命令来启用它:
2017-02-11 15:32:58 +08:00
```
# systemctl enable ssh
```
2017-02-11 21:42:02 +08:00
在当前对话执行中使用 SSH:
2017-02-11 15:32:58 +08:00
```
# service ssh start
```
**允许 SSH Root 访问**
2017-02-11 15:32:58 +08:00
2017-02-11 21:42:02 +08:00
默认情况下 SSH 不允许以 root 用户登录,因此将会出现下面的错误提示信息:
2017-02-11 15:32:58 +08:00
```
Permission denied, please try again.
```
为了通过 SSH 进入你的 Kali Linux 系统,你可以有两个不同的选择。第一个选择是创建一个新的非特权用户然后使用它的身份来登录。第二个选择,你可以以 root 用户访问 SSH 。为了实现这件事需要在SSH 配置文件 `/etc/ssh/sshd_config` 中插入下面这些行内容或对其进行编辑:
2017-02-11 15:32:58 +08:00
```
#PermitRootLogin prohibit-password
```
改为:
```
2017-02-11 15:32:58 +08:00
PermitRootLogin yes
```
![kali linux enable ssh root access](https://linuxconfig.org/images/enable-root-ssh-login-kali-linux.jpg)
2017-02-11 15:32:58 +08:00
`/etc/ssh/sshd_config` 进行更改以后,需在以 root 用户登录 SSH 前重启 SSH 服务:
2017-02-11 15:32:58 +08:00
```
# service ssh restart
```
--------------------------------------------------------------------------------
via: https://linuxconfig.org/how-to-install-ssh-secure-shell-service-on-kali-linux
作者:[Lubos Rendek][a]
2017-02-11 21:42:02 +08:00
译者:[ucasFL](https://github.com/ucasFL)
校对:[wxy](https://github.com/wxy)
2017-02-11 15:32:58 +08:00
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
[a]:https://linuxconfig.org/how-to-install-ssh-secure-shell-service-on-kali-linux
[1]:https://linuxconfig.org/how-to-install-ssh-secure-shell-service-on-kali-linux#h5-1-install-ssh
[2]:https://linuxconfig.org/how-to-install-ssh-secure-shell-service-on-kali-linux#h5-2-enable-and-start-ssh
[3]:https://linuxconfig.org/how-to-install-ssh-secure-shell-service-on-kali-linux#h5-3-allow-ssh-root-access
[4]:https://linuxconfig.org/how-to-install-ssh-secure-shell-service-on-kali-linux#h1-objective
[5]:https://linuxconfig.org/how-to-install-ssh-secure-shell-service-on-kali-linux#h2-requirements
[6]:https://linuxconfig.org/how-to-install-ssh-secure-shell-service-on-kali-linux#h3-difficulty
[7]:https://linuxconfig.org/how-to-install-ssh-secure-shell-service-on-kali-linux#h4-conventions
[8]:https://linuxconfig.org/how-to-install-ssh-secure-shell-service-on-kali-linux#h5-instructions