GNU/Linux >> Tutoriales Linux >  >> Linux

CentOS/RHEL 6:Cómo deshabilitar IPv6

La publicación describe el procedimiento para deshabilitar IPv6 en CentOS/RHEL 6. Hay 2 formas de hacerlo:
1. Deshabilite IPv6 en el módulo del kernel (requiere reiniciar)
2. Deshabilite IPv6 usando la configuración de sysctl (no es necesario reiniciar)

Método 1:usando /etc/modprobe.d/ipv6.conf

1. Compruebe si IPV6 está habilitado:

# ifconfig |grep inet6
  inet6 addr: fe80::d6be:d9ff:fe99:5a77/64 Scope:Link
  inet6 addr: fe80::d6be:d9ff:fe99:5a77/64 Scope:Link

2. Cree /etc/modprobe.d/ipv6.conf si aún no está presente con el siguiente parámetro:

options ipv6 disable=1

3. Deshabilitar el servicio ipt6tables

# chkconfig ip6tables off

4. Reinicie el servidor

# shutdown -r now

5. Confirme si IPV6 está deshabilitado:

# ifconfig |grep inet6
#

Método 2:Usar /etc/sysctl.conf

1. Agregue la siguiente línea al archivo /etc/sysctl.conf .

# IPv6 support in the kernel, set to 0 by default
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1

2. Para que la configuración sea efectiva, ejecute:

# sysctl -p
CentOS / RHEL 7:Cómo deshabilitar IPv6


Linux
  1. Cómo deshabilitar NetworkManager en CentOS / RHEL 7

  2. CentOS/RHEL 7:Cómo deshabilitar IPv6 solo en una interfaz específica

  3. Cómo habilitar IPv6 en CentOS / RHEL 7

  4. Cómo deshabilitar IPv6 en CentOS / RHEL 5

  5. Cómo habilitar IPv6 en CentOS / RHEL 5

RHEL 8/CentOS 8 activar/desactivar IPv6

Cómo deshabilitar IPv6 en CentOS 7 / RHEL 7

Cómo deshabilitar IPv6 en CentOS 8 / RHEL 8

Cómo deshabilitar IPv6 en CentOS/RHEL 8

CentOS / RHEL 6:Cómo deshabilitar el servicio telnet

Cómo deshabilitar NetworkManager en CentOS/RHEL 8