We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there any wildcard support when listing devices in the config.toml?
config.toml
For example: [devices."*"] = "any device" [devices."ab:cd:ef:*"] or [devices."ab:cd:ef"] = "any device with a mac that starts with ab:cd:ef
[devices."*"]
[devices."ab:cd:ef:*"]
[devices."ab:cd:ef"]
ab:cd:ef
I've tried various approaches, including *, .*, 00:00:00:00:00:00, FF:FF:FF:FF:FF:FF without success.
*
.*
00:00:00:00:00:00
FF:FF:FF:FF:FF:FF
Not strong in go but I didn't see anything in the code that looked like it handled wildcard values.
The text was updated successfully, but these errors were encountered:
I'd be interested in implementing the wildcard feature. I'll start working on it and will come back after I have something functional.
For device that start with a mac prefix, the only use I would see is limiting to a specific manufacturer.
Sorry, something went wrong.
No branches or pull requests
Is there any wildcard support when listing devices in the
config.toml
?For example:
[devices."*"]
= "any device"[devices."ab:cd:ef:*"]
or[devices."ab:cd:ef"]
= "any device with a mac that starts withab:cd:ef
I've tried various approaches, including
*
,.*
,00:00:00:00:00:00
,FF:FF:FF:FF:FF:FF
without success.Not strong in go but I didn't see anything in the code that looked like it handled wildcard values.
The text was updated successfully, but these errors were encountered: