Jump to content

Ephraim Gariguez

Members
  • Posts

    2
  • Joined

  • Last visited

  1. Update on the above issues: When a new update for SSH is applied using $sudo apt update && sudo apt upgrade The same configuration issue will just revert back to running the SSH using socket.ssh again even if you choose not to overwrite the configuration from the update selection screen. Your /etc/ssh/sshd_config will not be overwritten, however the deleted /lib/systemd/system/ssh.socket file will be re-created by the update. So restarting or rebooting the SSH server will revert to ssh.socket operation again opening Port number 22, even if you reboot. The correct fix would be to just disable the port number from /lib/systemd/system/ssh.socket just leave the ListenStream blank to disable the ssh socket. Stop the SSH service using $sudo systemctl stop ssh issue $sudo systemctl daemon-reload finally restart ssh $sudo systemctl restart ssh the applied configuration below from ssh.socket file will revert to ssh server reading the /etc/ssh/sshd_config and will enable the changing port number and other configuration from that file. ###ssh.socket config##### [Unit] Description=OpenBSD Secure Shell server socket Before=sockets.target #ConditionPathExists=!/etc/ssh/sshd_not_to_be_run [Socket] ListenStream= Accept=no [Install] WantedBy=sockets.target #####################
  2. @Igor I'm on Orange Pi One Armbian 24.5.1 Bookworm with Linux 6.6.31-current-sunxi I found a fix on this, since I also have issues on the default /etc/ssh/sshd_config changing port number simply doesn't work because the ssh.service is running on ssh.socket I found out that on the /etc/systemd/system/sockets.target.wants have 2 files ssh.socket and uuidd.socket the ssh.socket file is symlinked to /lib/systemd/system/ssh.socket simply deleting the file ssh.socket file from the /lib/systemd/system/ssh.socket will make the /etc/ssh/sshd_config file usable again after deleting /lib/systemd/system/ssh.socket file execute the command $sudo systemctl daemon-reload edit the ssh port number from /etc/ssh/sshd_config and put your desired port number (i.e 6120 ) allow the port number from ufw firewall restart ssh.service $ sudo systemctl restart ssh enable ssh service $sudo systemctl enable ssh.service check status and test by logging in on the ssh $ ssh username@yourdomain.com -p 6120 This fix works for me alternatively you may also change the port number directly from /lib/systemd/system/ssh.socket [Unit] Description=OpenBSD Secure Shell server socket Before=sockets.target #ConditionPathExists=!/etc/ssh/sshd_not_to_be_run [Socket] ListenStream=6120 Accept=no [Install] WantedBy=sockets.target then execute $sudo systemctl daemon-reload followed by $sudo sytemctl restart ssh This alternative fix will still run SSH as a socket service but both of them works fine.
×
×
  • Create New...

Important Information

Terms of Use - Privacy Policy - Guidelines