As sessões do sshd no meu servidor (rhel) podem ser identificadas por:
~# ps -ef |grep sshd:
root 12120 1 0 10:18 ? 00:00:00 sshd: sysope [priv]
sysope 12132 12120 0 10:18 ? 00:00:00 sshd: sysope@pts/2
matar esses processos fechará imediatamente as conexões. Então adapte seu arquivo de serviço sshd para systemd assim:
[Unit]
Description=SSH Per-Connection Server
After=syslog.target
[Service]
ExecStart=/usr/sbin/sshd -i
ExecStop=/usr/sbin/killall -9 sshd
SuccessExitStatus=0 255
StandardInput=socket