#ethernet #mac #vendor #mac-address

manuf

Ethernet vendor codes, and well-known MAC addresses

3 unstable releases

0.2.0 May 20, 2020
0.1.1 Aug 10, 2018
0.1.0 Aug 9, 2018

#8 in #vendor

Download history 11/week @ 2023-12-18 28/week @ 2023-12-25 20/week @ 2024-01-08 30/week @ 2024-01-15 46/week @ 2024-01-22 67/week @ 2024-01-29 136/week @ 2024-02-05 77/week @ 2024-02-12 93/week @ 2024-02-19 83/week @ 2024-02-26 78/week @ 2024-03-04 125/week @ 2024-03-11 27/week @ 2024-03-18 32/week @ 2024-03-25 97/week @ 2024-04-01

284 downloads per month

MIT license

530KB
172 lines

rust-manuf LICENSE Crates.io Version Document Build Status Codecov

rust-manuf is a Rust library provides the Ethernet vendor codes, and well-known MAC addresses

Usage

To use rust-manuf, add this to your Cargo.toml:

[dependencies]
manuf = "0.2"

Use vendor function to find name and description base on an ethernet (MAC) address.

assert_eq!(
    manuf::vendor([0x8c, 0x85, 0x90, 0x0b, 0xcb, 0x9e]),
    Some(("Apple", "Apple, Inc."))
);

Use prefix function to find vendor's prefix and mask for the ethernet (MAC) address.

assert!(
    manuf::prefix("Apple")
        .any(|prefix| prefix == ([0x8c, 0x85, 0x90, 0x00, 0x00, 0x00], 24))
);

use parse function to extract verdor's ((prefix, prefix_length), (name, description)) from a manuf file.

let f = File::open("manuf").unwrap();
let r = BufReader::new(f);

for ((prefix, prefix_len), (name, desc)) in manuf::parse(r) {
    println!("{:?}/{}\t{}\t{}", prefix, prefix_len, name, desc)
}

Note: The manuf file was generated by the Wireshark project.

If you want to use the latest version of manuf file, please add the latest feature.

[dependencies]
manuf = { version = "0.2", features = ["latest"] }

License

Released under the terms of the MIT license.

Dependencies