De acordo com this
A maneira de ativar o ipv6 para SSHD é escrever uma linha no seu /etc/ssh/sshd_config
que diz ListenAddress ::
Então, eu faria o contrário, edite seu arquivo /etc/ssh/sshd_config
e exclua essa linha.
Assim, seu arquivo teria sido parecido com
ListenAddress 0.0.0.0
ListenAddress ::
Agora você simplesmente quer dizer
ListenAddress 0.0.0.0
- = EDIT = -
Outra maneira de desativar o ipv6 é aparentemente listada em este post :
Open a terminal and type the following command (if you don't use Gedit, replace it with your text editor such as Kate, etc).
sudo gedit /etc/default/grub
And search for this:
GRUB_CMDLINE_LINUX
Modify it so it looks like this:
GRUB_CMDLINE_LINUX="ipv6.disable=1"
Update the GRUB:
sudo update-grub2
orsudo update-grub
depending on which version of Grub you are using.