2020-05-20 13:28:58 +08:00
|
|
|
|
---
|
|
|
|
|
layout: post
|
|
|
|
|
title: "Linux SSH 服务的安装和使用"
|
|
|
|
|
subtitle: ""
|
|
|
|
|
description: "本文简要的对 Linux 下 SSH 服务的安装、配置和使用进行说明。"
|
|
|
|
|
excerpt: "用于指导 Linux 下 SSH 服务的配置。"
|
|
|
|
|
date: 2020-05-20 12:00:00
|
|
|
|
|
author: "Rick Chan"
|
|
|
|
|
tags: ["Applications", "SSH"]
|
|
|
|
|
categories: ["Software"]
|
|
|
|
|
published: true
|
|
|
|
|
---
|
2018-12-07 16:21:12 +08:00
|
|
|
|
|
2019-12-20 10:50:37 +08:00
|
|
|
|
## 安装 SSH Server
|
|
|
|
|
|
2020-05-20 16:18:39 +08:00
|
|
|
|
```bash
|
2019-12-20 10:50:37 +08:00
|
|
|
|
# Ubuntu
|
|
|
|
|
apt-get install openssh-server
|
|
|
|
|
```
|
|
|
|
|
|
2019-12-20 10:54:52 +08:00
|
|
|
|
## 开启 SSH 服务
|
2018-12-07 16:21:12 +08:00
|
|
|
|
|
|
|
|
|
当目标机上有 SSHD 的情况下,可以开启 SSHD 服务。编写 sshd_config 文件,放置到 /etc/ssh 下,内容如下:
|
|
|
|
|
|
2020-05-20 16:18:39 +08:00
|
|
|
|
```ini
|
2018-12-07 16:21:12 +08:00
|
|
|
|
# Package generated configuration file
|
|
|
|
|
# See the sshd_config(5) manpage for details
|
|
|
|
|
|
|
|
|
|
# What ports, IPs and protocols we listen for
|
|
|
|
|
Port 22
|
|
|
|
|
# Use these options to restrict which interfaces/protocols sshd will bind to
|
|
|
|
|
#ListenAddress ::
|
|
|
|
|
#ListenAddress 0.0.0.0
|
|
|
|
|
Protocol 2
|
|
|
|
|
# HostKeys for protocol version 2
|
|
|
|
|
HostKey /etc/ssh/ssh_host_rsa_key
|
|
|
|
|
HostKey /etc/ssh/ssh_host_dsa_key
|
|
|
|
|
HostKey /etc/ssh/ssh_host_ecdsa_key
|
|
|
|
|
HostKey /etc/ssh/ssh_host_ed25519_key
|
|
|
|
|
#Privilege Separation is turned on for security
|
|
|
|
|
UsePrivilegeSeparation yes
|
|
|
|
|
|
|
|
|
|
# Lifetime and size of ephemeral version 1 server key
|
|
|
|
|
KeyRegenerationInterval 3600
|
|
|
|
|
ServerKeyBits 1024
|
|
|
|
|
|
|
|
|
|
# Logging
|
|
|
|
|
SyslogFacility AUTH
|
|
|
|
|
LogLevel INFO
|
|
|
|
|
|
|
|
|
|
# Authentication:
|
|
|
|
|
LoginGraceTime 120
|
|
|
|
|
#PermitRootLogin prohibit-password
|
|
|
|
|
PermitRootLogin yes
|
|
|
|
|
StrictModes yes
|
|
|
|
|
|
|
|
|
|
RSAAuthentication yes
|
|
|
|
|
PubkeyAuthentication yes
|
2019-07-19 10:01:50 +08:00
|
|
|
|
#AuthorizedKeysFile %h/.ssh/authorized_keys
|
2018-12-07 16:21:12 +08:00
|
|
|
|
|
|
|
|
|
# Don't read the user's ~/.rhosts and ~/.shosts files
|
|
|
|
|
IgnoreRhosts yes
|
|
|
|
|
# For this to work you will also need host keys in /etc/ssh_known_hosts
|
|
|
|
|
RhostsRSAAuthentication no
|
|
|
|
|
# similar for protocol version 2
|
|
|
|
|
HostbasedAuthentication no
|
|
|
|
|
# Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication
|
|
|
|
|
#IgnoreUserKnownHosts yes
|
|
|
|
|
|
|
|
|
|
# To enable empty passwords, change to yes (NOT RECOMMENDED)
|
|
|
|
|
PermitEmptyPasswords no
|
|
|
|
|
|
|
|
|
|
# Change to yes to enable challenge-response passwords (beware issues with
|
|
|
|
|
# some PAM modules and threads)
|
|
|
|
|
ChallengeResponseAuthentication no
|
|
|
|
|
|
|
|
|
|
# Change to no to disable tunnelled clear text passwords
|
|
|
|
|
#PasswordAuthentication yes
|
|
|
|
|
|
|
|
|
|
# Kerberos options
|
|
|
|
|
#KerberosAuthentication no
|
|
|
|
|
#KerberosGetAFSToken no
|
|
|
|
|
#KerberosOrLocalPasswd yes
|
|
|
|
|
#KerberosTicketCleanup yes
|
|
|
|
|
|
|
|
|
|
# GSSAPI options
|
|
|
|
|
#GSSAPIAuthentication no
|
|
|
|
|
#GSSAPICleanupCredentials yes
|
|
|
|
|
|
|
|
|
|
X11Forwarding yes
|
|
|
|
|
X11DisplayOffset 10
|
|
|
|
|
PrintMotd no
|
|
|
|
|
TCPKeepAlive yes
|
|
|
|
|
#UseLogin no
|
|
|
|
|
|
|
|
|
|
#MaxStartups 10:30:60
|
|
|
|
|
#Banner /etc/issue.net
|
|
|
|
|
|
|
|
|
|
# Allow client to pass locale environment variables
|
|
|
|
|
AcceptEnv LANG LC_*
|
|
|
|
|
|
|
|
|
|
#Subsystem sftp /usr/lib/openssh/sftp-server
|
|
|
|
|
Subsystem sftp internal-sftp
|
|
|
|
|
|
|
|
|
|
# Set this to 'yes' to enable PAM authentication, account processing,
|
|
|
|
|
# and session processing. If this is enabled, PAM authentication will
|
|
|
|
|
# be allowed through the ChallengeResponseAuthentication and
|
|
|
|
|
# PasswordAuthentication. Depending on your PAM configuration,
|
|
|
|
|
# PAM authentication via ChallengeResponseAuthentication may bypass
|
|
|
|
|
# the setting of "PermitRootLogin without-password".
|
|
|
|
|
# If you just want the PAM account and session checks to run without
|
|
|
|
|
# PAM authentication, then enable this but set PasswordAuthentication
|
|
|
|
|
# and ChallengeResponseAuthentication to 'no'.
|
|
|
|
|
UsePAM yes
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
注意以上配置使用了内置 SFTP 服务(“Subsystem sftp internal-sftp”)。之后既可以使用 SCP 上传和下载文件,也可以使用 SFTP 上传下载文件。
|
|
|
|
|
|
|
|
|
|
之后在目标机上
|
|
|
|
|
|
2020-05-20 16:18:39 +08:00
|
|
|
|
```bash
|
2019-07-19 10:01:50 +08:00
|
|
|
|
# 开机自运行
|
2020-07-02 13:48:26 +08:00
|
|
|
|
systemctl enable sshd.service
|
2019-07-19 10:01:50 +08:00
|
|
|
|
# 启动 sshd 服务
|
2020-07-02 13:48:26 +08:00
|
|
|
|
systemctl start sshd.service
|
2019-07-19 10:01:50 +08:00
|
|
|
|
# 查看 sshd 服务状态
|
2020-07-02 13:48:26 +08:00
|
|
|
|
systemctl status sshd.service
|
2020-04-27 14:12:08 +08:00
|
|
|
|
# 或(ubuntu12)
|
|
|
|
|
/etc/init.d/ssh restart
|
2019-07-19 10:01:50 +08:00
|
|
|
|
```
|
2018-12-07 16:21:12 +08:00
|
|
|
|
|
2019-12-20 14:03:20 +08:00
|
|
|
|
如果没有 systemd,可以使用如下命令:
|
|
|
|
|
|
2020-05-20 16:18:39 +08:00
|
|
|
|
```bash
|
2019-12-20 14:03:20 +08:00
|
|
|
|
service ssh start
|
|
|
|
|
```
|
|
|
|
|
|
2018-12-07 16:21:12 +08:00
|
|
|
|
## SSH 登陆
|
|
|
|
|
|
|
|
|
|
在开发机上
|
|
|
|
|
|
2020-05-20 16:18:39 +08:00
|
|
|
|
```bash
|
2019-10-22 14:57:05 +08:00
|
|
|
|
ssh <User Name>@<IP> -p <port>
|
2019-07-19 10:01:50 +08:00
|
|
|
|
```
|
2018-12-07 16:21:12 +08:00
|
|
|
|
|
2019-10-22 14:57:05 +08:00
|
|
|
|
不加 -p 参数,则默认使用 22 端口。
|
|
|
|
|
|
2018-12-07 16:21:12 +08:00
|
|
|
|
## SCP 上传和下载
|
|
|
|
|
|
|
|
|
|
SCP 上传
|
|
|
|
|
|
2020-05-20 16:18:39 +08:00
|
|
|
|
```bash
|
2019-07-19 10:01:50 +08:00
|
|
|
|
scp <Local Path or File> <User Name>@<IP>:<Path or File>
|
|
|
|
|
```
|
2018-12-07 16:21:12 +08:00
|
|
|
|
|
|
|
|
|
SCP 下载
|
|
|
|
|
|
2020-05-20 16:18:39 +08:00
|
|
|
|
```bash
|
2019-07-19 10:01:50 +08:00
|
|
|
|
scp <User Name>@<IP>:<Path or File> <Local Path or File>
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## 免密访问
|
|
|
|
|
|
|
|
|
|
ssh 登陆或 scp 的时候每次都输入密码很麻烦,如果用于访问 SSH 服务器的客户端值得信任的话可以授权该主机用户免密登陆。做法是先在客户端生成密钥对,如果已有密钥对可跳过本步骤:
|
|
|
|
|
|
2020-05-20 16:18:39 +08:00
|
|
|
|
```bash
|
2019-07-19 10:01:50 +08:00
|
|
|
|
ssh-keygen
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
之后在客户端使用:
|
|
|
|
|
|
2020-05-20 16:18:39 +08:00
|
|
|
|
```bash
|
2019-07-19 10:01:50 +08:00
|
|
|
|
ssh-copy-id <User Name>@<IP>
|
|
|
|
|
# 后续按照提示进行操作即可
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
命令将客户端的 ssh public key 提供给服务器,之后该客户端的授权账号(拥有该密钥对的账号)就可以免密访问服务器了。
|
|
|
|
|
|
|
|
|
|
在服务器的 \<User Home\>/.ssh/authorized_keys 文件中可以看到已授权客户端公钥,删除公钥可取消对应客户端账户的免密访问权限。
|