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:
@@ -75,6 +75,7 @@ public class MACUtil
|
|||||||
// 02-03-8A-00-00-11 - Westell Dual (USB/Ethernet) modem
|
// 02-03-8A-00-00-11 - Westell Dual (USB/Ethernet) modem
|
||||||
// FF-FF-FF-FF-FF-FF - Tunnel adapter Teredo
|
// FF-FF-FF-FF-FF-FF - Tunnel adapter Teredo
|
||||||
// 02-00-4C-4F-4F-50 - MSFT thinger, loopback of some sort
|
// 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")) {
|
if (mac.startsWith("44-45-53")) {
|
||||||
continue;
|
continue;
|
||||||
} else if (mac.startsWith("00-53-45-00")) {
|
} else if (mac.startsWith("00-53-45-00")) {
|
||||||
@@ -91,6 +92,8 @@ public class MACUtil
|
|||||||
continue;
|
continue;
|
||||||
} else if (mac.startsWith("02-00-4C-4F-4F-50")) {
|
} else if (mac.startsWith("02-00-4C-4F-4F-50")) {
|
||||||
continue;
|
continue;
|
||||||
|
} else if (mac.startsWith("00-00-00-00-00-00")) {
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
list.add(mac);
|
list.add(mac);
|
||||||
|
|||||||
Reference in New Issue
Block a user