赞
踩
打开终端安装openssh-server软件包:
sudo apt update # 更新包
sudo apt install openssh-server # 安装openssh-server
安装完成后,ssh服务默认启动了,可以通过下面的命令检查服务运行状态:
sudo systemctl status ssh
如果出现以下的内容,注意“active”是“running”,说明ssh服务启动了。
ssh.service - OpenBSD Secure Shell server Loaded: loaded (/lib/systemd/system/ssh.service; enabled; vendor preset: enabled) Active: active (running) since Mon 2022-07-13 09:14:00 CEST; 10s ago ...
Ubuntu 默认使用 ufw 防火墙配置工具,如果启用了防火墙,需要让防火墙开启ssh端口:
sudo ufw allow ssh
使用sudo权限,编辑ssh的配置文件。
sudo vim /etc/ssh/sshd_config
将#PermitRootLogin prohibit-password中prohibit-password去掉改为yes,并把PermitRootLogin yes之前的#去掉:
PermitRootLogin yes
重启ssh服务
service sshd restart
通过网络连接到 Ubuntu 计算机,请使用以下格式调用 ssh 命令,然后输入用户名和IP地址:
ssh username@ip_address
首次连接时会看到以下内容(192.168.1.102是需要被ssh远程访问的IP地址,是内网IP地址)
The authenticity of host '192.168.1.102 (192.168.1.102)' can't be established. ECDSA key fingerprint is SHA256:AqAuoVjwoRuoiFCZ6tdDmIZBvixrHZn4ykzHkB+wVb8. Are you sure you want to continue connecting (yes/no/[fingerprint])?
输入yes后按回车键,提示输入密码。
Warning: Permanently added '192.168.1.102' (ECDSA) to the list of known hosts. linux265@192.168.1.102's password:
正确输入密码后,连接建立。
sudo systemctl disable --now ssh # 禁用服务
sudo systemctl enable --now ssh # 启用服务
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。