Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Search requires three octets. Try 000000 or 00:00:00.

The 2024 version of Oui Lookup seems to behave the same?

OUILookup.astro:

        const parse_mac_address = function (val: string) {
            let m;
            val = val.toLowerCase().replace(/^0x/, "");
            // Accept any sequence of two hexadecimal blocks with an optional
            // separator, with a minimum length of 3 and a maximum of 8.
            // Returns a concatenation of these blocks without separators.
            // Examples:
            // xx:yy:zz or xx-yy-zz, or xx.yy.zz -> xxyyzz
            // aabb.ccdd.eeff -> aabbccddeeff
            if ((m = /^[0-9a-f]{2}(?:[:.-]?[0-9a-f]{2}){2,7}$/.exec(val))) {
                return m[0].replace(/[:.-]/g, "");
            }
            return null;
        };

34: OUI Lookup: Fix various issues with OUI

New OUI Lookup Tool Design - How do you search multiple OUIs at the same time?
43: Revert to previous OUI Lookup tool functionality