Some checks failed
Test / test (push) Has been cancelled
- Add custom init-rego.sh that unmounts /etc/resolv.conf and /etc/hosts for VPN - Add custom xstartup that launches terminal with cisco-vpn script - Add TARGET_IP environment variable - Remove QEMU/VM dependencies (TAPs, bridges, dnsmasq not needed) - The cisco-vpn script handles: vpnagentd, auto-login with TOTP, IP forwarding Architecture: 1. init-rego.sh: DNS fix + IP forwarding + start systemd 2. systemd: manages vpnagentd and vnc services 3. xstartup: opens xterm with cisco-vpn script 4. cisco-vpn: auto-connects VPN, sets up routing Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
73 lines
2.1 KiB
JSON
Executable File
73 lines
2.1 KiB
JSON
Executable File
{
|
|
"name": "Rego Tunnel",
|
|
"available": true,
|
|
"port": 6080,
|
|
"exposable": true,
|
|
"dynamic_config": true,
|
|
"id": "rego-tunnel",
|
|
"description": "Cisco Secure Client VPN in Docker with noVNC web UI for accessing Rego environments. Native Docker - no VM overhead.",
|
|
"tipi_version": 6,
|
|
"version": "5.1.14.145",
|
|
"categories": ["utilities"],
|
|
"short_desc": "Cisco VPN tunnel to Rego environments (native Docker)",
|
|
"author": "alexz",
|
|
"source": "https://git.alexzaw.dev/alexz/runtipi",
|
|
"form_fields": [
|
|
{
|
|
"type": "email",
|
|
"label": "VPN Email",
|
|
"hint": "Email address for VPN SSO login (configured in /shared/cisco-vpn script)",
|
|
"placeholder": "your-email@company.com",
|
|
"required": false,
|
|
"env_variable": "VPN_EMAIL",
|
|
"default": ""
|
|
},
|
|
{
|
|
"type": "password",
|
|
"label": "VPN Password",
|
|
"hint": "Password for VPN SSO login (configured in /shared/cisco-vpn script)",
|
|
"placeholder": "",
|
|
"required": false,
|
|
"env_variable": "VPN_PASSWORD",
|
|
"default": ""
|
|
},
|
|
{
|
|
"type": "text",
|
|
"label": "TOTP Secret",
|
|
"hint": "Base32 TOTP secret for 2FA (configured in /shared/cisco-vpn script)",
|
|
"placeholder": "",
|
|
"required": false,
|
|
"env_variable": "VPN_TOTP_SECRET",
|
|
"default": ""
|
|
},
|
|
{
|
|
"type": "text",
|
|
"label": "VPN Host",
|
|
"hint": "VPN server hostname",
|
|
"placeholder": "vpn.company.com",
|
|
"required": false,
|
|
"env_variable": "VPN_HOST",
|
|
"default": "vpn-ord1.dovercorp.com"
|
|
},
|
|
{
|
|
"type": "text",
|
|
"label": "Target IP",
|
|
"hint": "IP address to route through VPN (e.g., IBM i server)",
|
|
"placeholder": "10.35.33.230",
|
|
"required": false,
|
|
"env_variable": "TARGET_IP",
|
|
"default": "10.35.33.230"
|
|
},
|
|
{
|
|
"type": "password",
|
|
"label": "VNC Password",
|
|
"hint": "Password for noVNC web interface",
|
|
"placeholder": "cisco123",
|
|
"required": false,
|
|
"env_variable": "VNC_PASSWORD",
|
|
"default": "cisco123"
|
|
}
|
|
],
|
|
"supported_architectures": ["amd64"]
|
|
}
|