ubuntu20.04 ssh peizhi
时间: 2024-06-02 19:06:03 浏览: 185
ubuntu 20.04 ssh离线安装包
Ubuntu 20.04 是一种流行的 Linux 操作系统版本,支持通过 SSH(Secure Shell)协议进行远程访问和管理。下面是 SSH 配置步骤:
1. 安装 OpenSSH 服务器
在终端中运行以下命令:
```
sudo apt update
sudo apt install openssh-server
```
2. 确认防火墙配置
默认情况下,Ubuntu 20.04 防火墙应允许 SSH 连接。如果您已配置其他防火墙,请确保已允许 SSH 连接。
3. 修改 SSH 配置文件
为了提高 SSH 连接的安全性,可以修改 SSH 配置文件 `/etc/ssh/sshd_config`。例如,可以禁用密码登录并启用公钥身份验证。
打开配置文件:
```
sudo nano /etc/ssh/sshd_config
```
找到以下行:
```
#PasswordAuthentication yes
```
将其改为:
```
PasswordAuthentication no
```
找到以下行:
```
#PubkeyAuthentication yes
```
将其改为:
```
PubkeyAuthentication yes
```
保存并退出。
4. 重启 SSH 服务
执行以下命令以应用更改:
```
sudo systemctl restart sshd
```
现在,您可以使用任何 SSH 客户端连接到 Ubuntu 20.04 服务器。
阅读全文