armbian23.11改了SSH端口号,但不生效?可尝试禁用 systemd socket activation
线刷的Armbian-unofficial_23.11.0-trunk_Onecloud_bookworm_current_6.1.63.burn.img
修改ssh端口,
-
编辑 nano /etc/ssh/sshd_config
-#Port 22
+Port 2222 -
重启 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