Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 kvm 作为管理程序,上面有一些虚拟机。我可以通过 ssh 连接到主机(管理程序服务器)并且我想获取所有虚拟机的 IP 地址。
有没有办法通过virt工具或类似的其他命令获取虚拟机的 IP 地址?
从主机的控制台尝试以下命令:
# virsh list --all Get the VM names from this list
现在为每个 VM 名称执行以下操作:
# virsh domiflist *VMname* Get the MAC of the VM machine # arp -e Find the IP address
从 KVM 主机 Ping 主机名,您可以获得 IPS 地址。