We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
dns_resolvers
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
OS: debian 12 bookworm
osquery 5.16.0 using SQLite 3.42.0
osquery> select address,netmask from dns_resolvers where type = 'nameserver'; +---------+---------+ | address | netmask | +---------+---------+ | | 32 | | | 32 | +---------+---------+
$ cat /etc/resolv.conf nameserver 2001:DB8::1:2:1:2 nameserver 2001:DB8::1:2:2:2
I would expect these to appear as the resolver addresses.
(obviously, these are documentation addresses)
Both nameservers are listed as empty strings, with a /32 netmask. I haven't dug into the code too much, but it looks like the netmask is hard-coded in
osquery/osquery/tables/networking/posix/dns_resolvers.cpp
Line 42 in 4ce88cb
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bug report
What operating system and version are you using?
OS: debian 12 bookworm
What version of osquery are you using?
osquery 5.16.0
using SQLite 3.42.0
What steps did you take to reproduce the issue?
What did you expect to see?
I would expect these to appear as the resolver addresses.
(obviously, these are documentation addresses)
What did you see instead?
Both nameservers are listed as empty strings, with a /32 netmask. I haven't dug into the code too much, but it looks like the netmask is hard-coded in
osquery/osquery/tables/networking/posix/dns_resolvers.cpp
Line 42 in 4ce88cb
The text was updated successfully, but these errors were encountered: