From deba43aceabc9b013bf5e4e9951ea2f312c3953e Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Thu, 14 Aug 2008 16:10:59 -0700 Subject: [PATCH] Use OpenFlow OUI for Ethernet address of local ports. --- datapath/dp_dev.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/datapath/dp_dev.c b/datapath/dp_dev.c index 02468eb4..4601852d 100644 --- a/datapath/dp_dev.c +++ b/datapath/dp_dev.c @@ -95,6 +95,9 @@ do_setup(struct net_device *netdev) netdev->flags = IFF_BROADCAST | IFF_MULTICAST; random_ether_addr(netdev->dev_addr); + netdev->dev_addr[0] = 0x00; + netdev->dev_addr[1] = 0x23; + netdev->dev_addr[2] = 0x20; } -- 2.30.2