如何在宿主机上查询虚拟机的ip

2023年 7月 16日 108.5k 0

如何在宿主机上查询虚拟机的ip1) virsh dumpxml 虚拟机名字

<interface type='bridge'>
<mac address='52:54:00:89:58:9d'/>
<source bridge='br0'/>
<target dev='vnet0'/>
<model type='e1000'/>
<alias name='net0'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/>
</interface>

看下虚拟机的mac地址,2) 然后在宿主机上arp -a

arp -a
? (192.168.0.1) at 00:0f:e2:d4:f5:33 [ether] on br0
? (192.168.0.161) at 00:e0:81:d5:5f:c7 [ether] on br0

看下mac和ip的对应表,如果没有的,写一个脚本,把同一个网段所有机器ping一遍。在arp -a

#!/bin/bash
for (( i=0; i<254;i++))
do
{
ping 192.168.0.$i -c 1
}&
done

1111111111111111111111.png

相关文章

LeaferJS 1.0 重磅发布:强悍的前端 Canvas 渲染引擎
10分钟搞定支持通配符的永久有效免费HTTPS证书
300 多个 Microsoft Excel 快捷方式
一步步配置基于kubeadmin的kubevip高可用
istio全链路传递cookie和header灰度
REST Web 服务版本控制

发布评论