A free, open, self-hosted app platform (GNU AGPLv3): one-click app deploys, Traefik reverse proxy with automatic SSL, rootless Docker support, gluetun VPN routing, and a web dashboard to manage it all. Free & open forever to self-host; optional paid hosted services fund it. See PROMISE.md. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> Signed-off-by: librelad <librelad@digitalangels.vip>
24 lines
1.0 KiB
Bash
Executable File
24 lines
1.0 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# IP Commands Header
|
|
# Shows available IP commands and help information
|
|
|
|
cliShowIPHelp()
|
|
{
|
|
echo ""
|
|
echo "Available IP Management Commands:"
|
|
echo ""
|
|
echo " libreportal ip [command] [options] - IP management system"
|
|
echo " scan [type] [app] - Scan for IPs and tags"
|
|
echo " allocate [app] [ip] - Allocate IP to app"
|
|
echo " release [app] - Release IP from app"
|
|
echo " status [app] - Show IP allocation status"
|
|
echo " conflicts [action] - Detect/resolve conflicts"
|
|
echo " detect - Detect IP conflicts"
|
|
echo " resolve - Resolve IP conflicts"
|
|
echo " update-tags [app] - Update IPADDRESSHERE tags"
|
|
echo " validate [app] - Validate IP tag consistency"
|
|
echo " report [file] - Generate IP allocation report"
|
|
echo ""
|
|
}
|