mnt sessions
Description
Lists all currently active RADIUS sessions on ISE. This includes both wired (802.1X/MAB) and wireless sessions.
Options
| Option | Description | Default |
|---|---|---|
|
Fetch detailed info for each session (slower - makes extra API call per session) |
|
Use the global --format flag at the ise level for JSON/CSV output:
netapi ise --format json mnt sessions
|
Examples
# List active sessions (table format)
netapi ise mnt sessions
# With detailed info (VLAN, port, type)
netapi ise mnt sessions --details
# JSON output for scripting (global flag)
netapi ise --format json mnt sessions
# Pipe to jq for filtering
netapi ise --format json mnt sessions | jq '.[] | select(.nas_port_type == "Ethernet")'
Sample Output
┏━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃ MAC Address ┃ User Name ┃ NAD IP ┃ Status ┃
┡━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ 00:50:C2:39:F0:F7 │ 00-50-C2-39-F0-F7 │ 10.193.144.1 │ STARTED │
│ 70:15:FB:F8:47:EC │ erosado@corp.com │ 10.193.144.2 │ STARTED │
│ 14:F6:D8:7B:31:80 │ machine$@corp.com │ 10.50.1.40 │ STARTED │
└───────────────────┴───────────────────┴──────────────┴───────────┘