web-dev-qa-db-ja.com

virshを使用してlibvirtのdhcpリースエントリを削除する

使用:

$ virsh version
 Compiled against library: libvirt 1.3.1
 Using library: libvirt 1.3.1
 Using API: QEMU 1.3.1
 Running hypervisor: QEMU 2.5.0
$
$
$ lsb_release -a
 No LSB modules are available.
 Distributor ID:    Ubuntu
 Description:   Ubuntu 16.04.2 LTS
 Release:   16.04
 Codename:  xenial

Virshを使用してlibvirtのdhcpリースエントリを削除したいのですが。

$ virsh net-list
Name                 State      Autostart     Persistent
----------------------------------------------------------
default              active     yes           yes
docker-machines      active     yes           yes

$ virsh net-dhcp-leases docker-machines
Expiry Time          MAC address        Protocol  IP address               Hostname        Client ID or DUID
-------------------------------------------------------------------------------------------------------------------
2017-05-10 16:15:38  52:54:00:8e:15:f5  ipv4      192.168.42.22/24         minikubecluster ff:c2:72:f6:09:00:02:00:00:ab:11:af:a8:d1:af:21:23:5c:49
2017-05-10 16:09:57  52:54:00:c6:51:45  ipv4      192.168.42.23/24         registry        01:52:54:00:c6:51:45

virsh net-update deleteを使用して別のオプションを試しましたが、このエラーが発生し続けます:

couldn't locate a matching dhcp Host entry in network 'docker-machines'

これはlibvirtのリースファイルが変更されたためですか(ネットワークインターフェースにちなんで命名され、形式はJSONです)?もしそうなら、私はどのようにこれを行うことができますか?

3
Amir Keibi

Deleteサブコマンドは、addサブコマンドと同じように機能します。

virsh net-update docker-machines delete ip-dhcp-Host \
"<Host mac='52:54:00:8e:15:f5' \
name='minikubecluster' ip='192.168.42.22' />" \
--live --config

Libvirt-ネットワーク-virsh net-update

2
cstarcher