instalar Headscale PASOS DE INSTALACION : # descarga headscale wget --output-document=headscale.deb \ https://github.com/juanfont/headscale/releases/download/v0.22.3/headscale_0.22.3_linux_amd64.deb # instalar sudo dpkg --install headscale.deb # armar en el inicio sudo systemctl enable headscale # configurar parametros nano /etc/headscale/config.yaml # poner en marcha sudo systemctl start headscale # verificar funcionamiento systemctl status headscale # registrar usuario en servidor headscale users create tu_usuario # descargar cliente segun sistema operativo Linux : curl -fsSL https://tailscale.com/install.sh | sh Windows : https://pkgs.tailscale.com/stable/tailscale-setup-latest.exe # registrar una maquina cliente tailscale up --login-server http://ip_de_servidor:8080 --hostname=nmobre_de_equipo -> pegar link generado en el navegador web -> copiar link generado en el cuerpo del navegador y pegar en consola del servidor cambiando USERNAME por tu nombre de usuario cr...
CONFIGURAR TAILSCALE COMO NODO DE SALIDA VPN Y SERVICIOS DE RED Enable IP forwarding When enabling IP forwarding, ensure your firewall denies traffic forwarding by default. This is the default setting for standard firewalls like ufw and firewalld . Blocking traffic forwarding by default prevents unintended routing of traffic. IP forwarding is required to use a Linux device as a subnet router. The process for enabling IP forwarding varies between Linux distributions. However, the following instructions work in most cases. If your Linux system has a /etc/sysctl.d directory, use: COPIA Y PEGA ESO EN UNA TERMINAL echo 'net.ipv4.ip_forward = 1' | sudo tee -a /etc/sysctl.d/99-tailscale.conf echo 'net.ipv6.conf.all.forwarding = 1' | sudo tee -a /etc/sysctl.d/99-tailscale.conf sudo sysctl -p /etc/sysctl.d/99-tailscale.conf Advertise subnet routes After you enable IP forwarding, run tailscale up with the --advertise-routes flag. It acc...