How to cleanly remove network (created by libvirtd)
// list all net devices
virsh net-list --all
// make it inactive
virsh net-destroy
// Now it is be in inactive state, but not removed - so, remove it using
virsh net-undefine
// list all net devices
virsh net-list --all
// make it inactive
virsh net-destroy
// Now it is be in inactive state, but not removed - so, remove it using
virsh net-undefine
No comments:
Post a Comment