Aquí le mostramos cómo verificar si ipv6 está habilitado en su computadora
test -f /proc/net/if_inet6 && echo "Running kernel is IPv6 ready"
Si tú ves
Running kernel is IPv6 ready
Está habilitado.
Si no ve salida, no lo es.
Para deshabilitar ipv6 si las otras respuestas en esta página no funcionan para usted, haga una lista negra de ipv6 todo junto. Para hacer esto, use el siguiente comando:
echo 'blacklist ipv6' | sudo tee -a '/etc/modprobe.d/blacklist.local' >/dev/null
Además, esto podría ayudar también:
echo 'install ipv6 /bin/true' | sudo tee -a '/etc/modprobe.d/blacklist.local' >/dev/null
Reinicie para que los cambios surtan efecto. Para verificar si está habilitado después del inicio, ejecute este comando nuevamente:
test -f /proc/net/if_inet6 && echo "Running kernel is IPv6 ready"
No debería haber salida.
Haga clic aquí para obtener información sobre cómo deshabilitar IPV6 en el arranque.