Skip to content

Instantly share code, notes, and snippets.

@coltenkrauter
Created January 14, 2025 16:41
Show Gist options
  • Save coltenkrauter/b0a89266f818d363ab05e25a72b76032 to your computer and use it in GitHub Desktop.
Save coltenkrauter/b0a89266f818d363ab05e25a72b76032 to your computer and use it in GitHub Desktop.
This script identifies the IP addresses of all VMs running on TrueNAS SCALE. It queries the system using midclt to retrieve MAC addresses for each VM and uses arp to resolve them to IP addresses.
midclt call vm.query | jq -r '
.[] |
select(.status.state=="RUNNING") |
.devices[] |
select(.dtype=="NIC") |
.attributes.mac' | while read -r mac; do
echo -n "$mac: "
arp -a | grep -i "$mac" | awk '{print $1, $2}'
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment