Added another element to list of MAC addresses to ignore. My machine, at

least, reports a bunch of these from ipconfig.
This commit is contained in:
Andrzej Kapolka
2011-08-29 16:48:34 -07:00
parent b76ab3cdac
commit cdbf87f7dd
@@ -75,6 +75,7 @@ public class MACUtil
// 02-03-8A-00-00-11 - Westell Dual (USB/Ethernet) modem
// FF-FF-FF-FF-FF-FF - Tunnel adapter Teredo
// 02-00-4C-4F-4F-50 - MSFT thinger, loopback of some sort
// 00-00-00-00-00-00(-00-E0) - IP6 tunnel
if (mac.startsWith("44-45-53")) {
continue;
} else if (mac.startsWith("00-53-45-00")) {
@@ -91,6 +92,8 @@ public class MACUtil
continue;
} else if (mac.startsWith("02-00-4C-4F-4F-50")) {
continue;
} else if (mac.startsWith("00-00-00-00-00-00")) {
continue;
}
list.add(mac);