MnT Version

Synopsis

netapi ise mnt version [OPTIONS]

Description

Get ISE node version and patch level via MnT API.

Usage

# Default output
netapi ise mnt version

# JSON output
netapi ise mnt version --format json

Sample Output

ISE Version Information
=======================
Product: Cisco Identity Services Engine
Version: 3.3.0.430
Patch: 2
Node Type: Primary Administration Node
FIPS Mode: Disabled

JSON output:

{
  "product": "Cisco Identity Services Engine",
  "version": "3.3.0.430",
  "patch": "2",
  "nodeType": "ADMINISTRATION",
  "fipsMode": false
}

Use Cases

Version Compatibility Check

#!/bin/bash
VERSION=$(netapi ise mnt version --format json | jq -r '.version')
MAJOR=$(echo $VERSION | cut -d. -f1)

if [ "$MAJOR" -lt 3 ]; then
  echo "WARNING: ISE version $VERSION does not support all netapi features"
fi

Documentation Generation

# Include ISE version in reports
echo "## Environment" >> report.md
echo "ISE Version: $(netapi ise mnt version --format json | jq -r '.version')" >> report.md