armbian23.11改了SSH端口号,但不生效?可尝试禁用 systemd socket activation

armbian23.11改了SSH端口号,但不生效?可尝试禁用 systemd socket activation

线刷的Armbian-unofficial_23.11.0-trunk_Onecloud_bookworm_current_6.1.63.burn.img

修改ssh端口,

  1. 编辑 nano /etc/ssh/sshd_config

    -#Port 22
    +Port 2222

  2. 重启 systemctl restart sshd

sshd 仍然监听 22 端口?多次尝试无果

检查没开selinux

破案了:

最新的这个 openssh-server 包,它默认采用了 systemd socket 来激活 sshd 服务,据说可以节省3MB内存😂,所以 sshd_config 的 Port 22失效了。

如何解决:

还是禁用了 systemd socket activation 恢复以往的配置方式

systemctl disable --now ssh.socket
systemctl enable --now ssh.service

原文:https://discourse.ubuntu.com/t/sshd-now-uses-socket-based-activation-ubuntu-22-10-and-later/30189

参考文档:

https://github.com/ophub/amlogic-s9xxx-armbian/discussions/1476

相关推荐
Amelio_Ming7 小时前
Permissions 0755 for ‘/etc/ssh/ssh_host_rsa_key‘ are too open.问题解决
linux·运维·ssh
Diamond技术流1 天前
从0开始学习Linux——远程连接工具
linux·学习·centos·ssh·xshell·ftp
恒创科技HK2 天前
ssh和ssl的区别在哪些方面?
运维·ssh·ssl
上烟雨心上尘2 天前
通过 ssh config 快速免密连接服务器
运维·服务器·ssh
就叫你天选之人啦3 天前
vscode ssh连接autodl失败
linux·ide·笔记·vscode·ssh
Linux运维日记4 天前
Rocky Linux 9安装后无法远程ssh密码登录解决
linux·运维·ssh
yunteng5214 天前
VisualStudio远程编译调试linux_c++程序(二)
linux·c++·ssh·gdb·visual studio·remote
mhl11074 天前
Linux 上安装 conda 步骤实现
linux·运维·ubuntu·centos·ssh·conda·运维开发
会飞的爱迪生4 天前
只允许指定ip远程连接ssh
服务器·ssh
iTarget4 天前
使用ssh-key免密登录服务器或免密连接git代码仓库网站
运维·git·ssh