#!/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 "" }