Created
January 14, 2025 16:41
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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