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
#####################