virtomate domain-iface-list¶
Name¶
virtomate domain-iface-list - List all network interfaces of a running domain.
Synopsis¶
virtomate domain-iface-list [options] domain
Description¶
virtomate domain-iface-list lists all network interfaces of the domain named domain. The domain named domain must be running for the operation to succeed.
The returned JSON message is a list of virtomate.domain.InterfaceDescriptor
:
- class virtomate.domain.InterfaceDescriptor¶
Descriptor of an interface of a libvirt domain.
- addresses: Sequence[AddressDescriptor]¶
Addresses assigned to the interface
- hwaddr: str¶
MAC address of the interface
- name: str¶
Human-readable name of the interface
- class virtomate.domain.AddressDescriptor¶
Descriptor of an interface address of a libvirt domain.
- address: str¶
Address assigned to this interface
- prefix: int¶
Prefix length (netmask) of the address
- type: str¶
Human-readable type of the address (either
IPv4
orIPv6
)
The output might be incomplete depending on the source of the address information. See the option --source
for details.
Options¶
- -h, --help¶
Display usage summary of this command and exit.
- --source¶
Select the data source that should be queried to obtain the IP addresses assigned to each network interface.
lease
is the default.- lease
Consult libvirt’s built-in DHCP server. Statically configured addresses will not show up. Likewise, addresses assigned by an external DHCP server will not be included in the output.
- agent
Query the QEMU Guest Agent for address information. Requires the QEMU Guest Agent to be running on the domain.
- arp
Use the host’s ARP cache to obtain address information. Due to the way ARP operates, the output may contain stale entries. Newly added interfaces show up with a delay. Furthermore, the prefix length (netmask) is always 0 because the ARP cache lacks that information.
Versions¶
Added in version 0.1.0.
Examples¶
List all network interfaces of the domain my-domain as as they are known to libvirt’s built-in DHCP server:
$ virtomate -p domain-iface-list my-domain
[
{
"addresses": [
{
"address": "192.168.124.151",
"prefix": 24,
"type": "IPv4"
}
],
"hwaddr": "52:54:00:28:1c:8c",
"name": "vnet0"
}
]
List all network interfaces of the domain my-domain as as they are known to the QEMU Guest Agent installed on the guest:
$ virtomate -p domain-iface-list --source agent my-domain
[
{
"addresses": [
{
"address": "127.0.0.1",
"prefix": 8,
"type": "IPv4"
},
{
"address": "::1",
"prefix": 128,
"type": "IPv6"
}
],
"hwaddr": "00:00:00:00:00:00",
"name": "lo"
},
{
"addresses": [
{
"address": "192.168.124.151",
"prefix": 24,
"type": "IPv4"
},
{
"address": "fe80::5054:ff:fe28:1c8c",
"prefix": 64,
"type": "IPv6"
}
],
"hwaddr": "52:54:00:28:1c:8c",
"name": "enp1s0"
},
{
"addresses": [
{
"address": "192.168.122.1",
"prefix": 24,
"type": "IPv4"
}
],
"hwaddr": "52:54:00:97:9b:5e",
"name": "virbr0"
}
]
List all network interfaces of the domain my-domain as as they are known to the host’s ARP cache:
$ virtomate -p domain-iface-list --source arp my-domain
[
{
"addresses": [
{
"address": "192.168.124.151",
"prefix": 0,
"type": "IPv4"
}
],
"hwaddr": "52:54:00:28:1c:8c",
"name": "vnet0"
}
]