mirror of https://gitlab.com/hp3icc/emq-TE1.git
55 lines
1.6 KiB
Bash
55 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
|
|
echo "net.ipv6.conf.eth0.disable_ipv6 = 1" >> /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 "Al finalizar el reinicio escriba menu-adn2 para configurar su servidor. / At the end of the reboot type menu-adn2 to configure your server." 13 46 2 \
|
|
1 " Iniciar Reinicio / Start Reboot " 3>&1 1>&2 2>&3)
|
|
exitstatus=$?
|
|
if [ $exitstatus = 0 ]; then
|
|
echo "Your chosen option:" $choix
|
|
else
|
|
echo "You chose cancel."; break;
|
|
fi
|
|
case $choix in
|
|
1)
|
|
reboot
|
|
;;
|
|
esac
|
|
done
|
|
exit 0
|
|
EOF
|
|
|
|
chmod +x /tmp/completado.sh
|
|
#history -c && history -w
|
|
sh /tmp/completado.sh
|