Applicable to:
- SolusVM
Question
How to find IPv4 address of KVM virtual server using its MAC address? It is required for importing of existing KVM virtual servers in SolusVM infrastructure.
Answer
- Connect to the slave KVM node via SSH
- Find MAC address of the virtual server:
# virsh dumpxml kvmID | grep "mac address" | awk -F\' '{ print $2}'
- Execute the following command to find IPv4 address:
# nmap -sP 10.0.0.0/24 | grep -i "<MAC_address>" -B 3
10.0.0.0/24 should be replaced with an actual subnet that is used in the current infrastructure
Comments
0 commentsPlease sign in to leave a comment.