emq-TE1/install/ipv6on.sh

57 lines
1.6 KiB
Bash

#!/bin/bash
# Verificar si el usuario tiene permisos de root
if [[ $EUID -ne 0 ]]; then
echo "Este script debe ejecutarse como usuario ROOT"
exit 1
fi
# Activar y habilitar IPv6 en el sistema
echo "Activando y habilitando IPv6..."
# Modificar sysctl.conf para habilitar IPv6
sed -i '/net.ipv6.conf.all.disable_ipv6/d' /etc/sysctl.conf
sed -i '/net.ipv6.conf.default.disable_ipv6/d' /etc/sysctl.conf
sed -i '/net.ipv6.conf.lo.disable_ipv6/d' /etc/sysctl.conf
echo "net.ipv6.conf.all.disable_ipv6 = 0" >> /etc/sysctl.conf
echo "net.ipv6.conf.default.disable_ipv6 = 0" >> /etc/sysctl.conf
echo "net.ipv6.conf.lo.disable_ipv6 = 0" >> /etc/sysctl.conf
# Aplicar los cambios de sysctl
sysctl -p
# Habilitar IPv6 en GRUB
sed -i 's/ipv6.disable=1//g' /etc/default/grub
update-grub
# Reiniciar para aplicar los cambios
echo "Reiniciando el sistema para aplicar los cambios..."
#reboot
cat > /tmp/completado.sh <<- "EOF"
#!/bin/bash
while : ; do
choix=$(whiptail --title "Script Proyect HP3ICC Esteban Mackay 73." --menu " Precione enter (return o intro) para finalizar la instalacion y reiniciar. / Press (return or enter) to finish the installation and reboot." 13 46 2 \
1 " Iniciar Reinicio de equipo " 3>&1 1>&2 2>&3)
exitstatus=$?
#on recupere ce choix
#exitstatus=$?
if [ $exitstatus = 0 ]; then
echo "Your chosen option:" $choix
else
echo "You chose cancel."; break;
fi
# case : action en fonction du choix
case $choix in
1)
sudo reboot
;;
esac
done
exit 0
EOF
#################################
sudo chmod +x /tmp/completado.sh
#history -c && history -w
sh /tmp/completado.sh