Bernard is a Rust tool for presence detection in your home network.
It uses a mapping of MAC addresses to labels to accomplish that. Actually it parses the output of nmap scans, so the nmap tool is required to be installed.
Could be used to setup home automation etc.
Inspired by home assistent and written to learn more about the Rust programming language.
bash
cargo build --release
bash
cargo install bernard
```txt Bernard
USAGE:
bernard [FLAGS] [OPTIONS] --config
FLAGS: -h, --help Prints help information -q, --quiet Quiet mode -V, --version Prints version information -v, --verbose Verbose mode (-v, -vv, -vvvvv, etc)
OPTIONS:
-c, --config
yaml
labels:
some-label:
- "some-valid-mac"
other-label:
- "valid-mac"
- "another-valid-mac"
```txt
devices{hostname="HP60BAG4",mac="00:00:00:00:00:00"} 1 devices{hostname="BUD2AA99",mac="00:00:00:00:00:00"} 1 devices{hostname="OnePlus_3",mac="00:00:00:00:00:00"} 1 devices{hostname="amazon-fdsfds",mac="00:00:00:00:00:00"} 1 devices{hostname="some.device",mac="00:00:00:00:00:00"} 1 devices{hostname="otherother-device",mac=""} 1 devices{hostname="raspberrypi",mac="00:00:00:00:00:00"} 1
labels{name="some-label"} 1 ```