-
-
Save sudeeshjohn/797e8d95487abd2a03c3bcad28a424c9 to your computer and use it in GitHub Desktop.
Revisions
-
David Palma created this gist
Jan 3, 2013 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ #!/bin/bash # Returns the IP address of a running KVM guest VM # Assumes a working KVM/libvirt environment # # Install: # Add this bash function to your ~/.bashrc and `source ~/.bashrc`. # Usage: # $ virt-addr vm-name # 192.0.2.16 # virt-addr() { VM="$1" arp -an | grep "`virsh dumpxml $VM | grep "mac address" | sed "s/.*'\(.*\)'.*/\1/g"`" | awk '{ gsub(/[\(\)]/,"",$2); print $2 }' }