[RFC-ADN-01] Normalizar nomenclatura de proyectos

- Directorios: PascalCase (p2601_dasuten → P2601_Dasuten)
- Planes: numeración pura (P2601_6.1.A → P2601.06.01)
- Sin caracteres especiales en nombres de archivo
- 07_proyectos.md: convención RFC-ADN-01 integrada, P2604/P2605 agregados
- evento:listar: nueva opción --detalle para descripciones completas
This commit is contained in:
Ricardo Monla
2026-03-16 15:15:53 -03:00
parent f608924c6a
commit ba5c65e2a4
33 changed files with 883 additions and 390 deletions
+32
View File
@@ -0,0 +1,32 @@
#!/bin/bash
# Script para iniciar tunnel SOCKS5 SSH en dc-dasuten
# Ejecutar via Task Scheduler o manualmente
SERVICE="ssh"
TUNNEL_HOST="100.112.46.104"
TUNNEL_USER="rmonla"
TUNNEL_PORT="1080"
# Buscar Plink (PuTTY) o usar SSH nativo
if [ -f "/c/Windows/System32/plink.exe" ]; then
SSH_CMD="/c/Windows/System32/plink.exe"
else
SSH_CMD="ssh"
fi
# Iniciar tunnel SSH en background
echo "Iniciando tunnel SOCKS5 a $TUNNEL_HOST..."
$SSH_CMD -D $TUNNEL_PORT -N -f -C $TUNNEL_USER@$TUNNEL_HOST
if [ $? -eq 0 ]; then
echo "Tunnel SOCKS5 iniciado en puerto $TUNNEL_PORT"
# Configurar proxy del sistema
echo "Configurando proxy del sistema..."
netsh winhttp set proxy 127.0.0.1:$TUNNEL_PORT
echo "Proxy configurado. Ahora puede descargar Tailscale."
else
echo "Error al iniciar tunnel SSH"
exit 1
fi