-
Notifications
You must be signed in to change notification settings - Fork 225
New issue
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
DNS reverse lookup reliability #498
Comments
I also noticed that. Haven't had time to look at it if it's my DNS that was failing. |
The issue is definitely there. I am currently using I haven't started looking into the issue yet in more depth, planned to do it on the coming Monday. Given that As for an approach, I think there is no need for updating existing findings in ElasticSearch as:
@rodpayne if you are ok with that, I am happy to work on fixing the core issue, and you can look at writing a separate, standalone snippet which can retrofit existing data in an ElasticSearch/OpenSearch data storage. |
I have done some tinkering and it seems like that with the latest version, That being said |
Yes, Item 2 above is in pull request #501. FYI, I am just starting to use |
- Actually save `source_type` and `source_name` to Elasticsearch and OpenSearch - Reverse-lookup cache improvements (PR #501 closes issue #498) - Update the included `dbip-country-lite.mmdb` to the 2024-03 version - Update `base_reverse_dns_map.csv` - Add new general config options (closes issue #500) - `always_use_local_files` - Disables the download of the reverse DNS map - `local_reverse_dns_map_path` - Overrides the default local file path to use for the reverse DNS map - `reverse_dns_map_url` - Overrides the default download URL for the reverse DNS map
I think the new Reverse DNS lookup on 8.10.3 has created new issues. |
I am finding that my DNS reverse lookups are not doing very well. Looking at Grafana, the top listed items in Top 1000 Message Source IP Addresses do not have
Base Domain
orReverse DNS
. If I use nslookup to check the IP address, they almost always come up without problem.I have tried various
nameservers
and increaseddns_timeout,
without seeing much improvement.I am wondering if other users of the (really fantastic)
parsedmarc
are having a similar problem.Has anyone looked at making a script or program to inquire in
elasticsearch
for the top addresses that do not have the info, try looking them up, and then do an update query to replace the records with the updated info? (That is what I may do if I can't figure out what is going wrong with the original lookups.)I am also looking at only updating
IP_ADDRESS_CACHE
when theget_ip_address_info
succeeds in getting the info. That may keep it from compounding the lookup problem.The text was updated successfully, but these errors were encountered: