[libvirt] [tck PATCH 1/3] scripts: avoid using multicast MAC addresses

Daniel P. Berrangé berrange at redhat.com
Mon May 21 13:01:40 UTC 2018


The leading digit from the MAC address should be an even number

Signed-off-by: Daniel P. Berrangé <berrange at redhat.com>
---
 scripts/domain/215-nic-hotplug-many.t | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/scripts/domain/215-nic-hotplug-many.t b/scripts/domain/215-nic-hotplug-many.t
index 0270054..eaa282a 100644
--- a/scripts/domain/215-nic-hotplug-many.t
+++ b/scripts/domain/215-nic-hotplug-many.t
@@ -47,9 +47,9 @@ diag "Creating a new transient domain";
 my $dom;
 ok_domain(sub { $dom = $conn->create_domain($xml) }, "created transient domain object");
 
-my $mac1 = "01:11:22:33:44:55";
-my $mac2 = "02:11:22:33:44:55";
-my $mac3 = "03:11:22:33:44:55";
+my $mac1 = "02:11:22:33:44:55";
+my $mac2 = "02:12:22:33:44:55";
+my $mac3 = "02:13:22:33:44:55";
 my $model = "virtio";
 
 my $netxml1 = <<EOF;
-- 
2.17.0




More information about the libvir-list mailing list