Entradas

Mostrando las entradas etiquetadas como net.ipv6.conf.all.forwarding

Basic IPv6 network configuration for Linux

Today I'll write on how to configure Linux with IPv6. Today we'll go directly to the practice since in an older post I wrote about IPv6 addresses. Verify if the system has IPv6 enabled The IPv6 module is integrated since kernel 2.4.x even though it's not always enable. With this command we can verify if it is or not enable: test -f /proc/net/if_inet6 && echo "Enable" If it returns the message "Enable" this means that it's enable (obvious). If not we activate it with the next commands. For Ubuntu or similars: modprobe ipv6 And if we want the IPv6 module to be loaded at boot time we add the word ipv6 to the end of this file: /etc/modules For Fedora or similars We edit this file: /etc/sysconfig/network And we add this line to the file: NETWORKING_IPV6=yes Now that we added it we restart the network service. Also if we want to allow the forwarding of IPv6 packages in our computer we apply these co...

Configuración básica de red IPv6 en Linux

Hoy escribiré sobre como configurar Linux con IPv6. Ya en un tema anterior hable sobre como formar las direcciones IPv6 y los tipos de dirección que existen. Así que hoy iremos directo sobre la práctica. El tema es corto pero es que es así de sencillo configurar un equipo con IPv6, a lo mejor muchos ya saben pero también Linux siempre tiene gente nueva que busca estas cosas que para muchos ya son muy "sencillas". Verificar que el sistema tiene activado IPv6 El módulo de IPv6 ya viene integrado en todos los kernel 2.4.x aunque no siempre se encuentra activado. Con este comando podemos verificar si lo está o no: test -f /proc/net/if_inet6 && echo "Si activado" Si nos devuelve el mensaje "Si activado" quiere decir que ya se encuentra activado IPv6. De lo contrario lo activamos con estos comandos. Para Ubuntu o similares: modprobe ipv6 Para que el módulo IPv6 cargue automáticamente cuando inicia el sistema se agrega la pa...