zeromind
zeromind
Thanks for the quick reply, the workaround with `--clickhousedelay=1s` seems be good enough for now, the number of missing packets went down significantly; for the one system here it's only...
For my use-case of processing many continuous pcap files for a system/day, I found Wireshark's [mergecap](https://www.wireshark.org/docs/wsug_html_chunked/AppToolsmergecap.html) that can merge/concatinate pcaps. So I've switched to that, and feeding the concatitinated pcaps...
Unfortunarely, it appears that something is very broken now, dnsmonster gets stuck trying to process a very small pcap file (518 dns packets), even with the file output: ``` $...
Almost the same behaviour with a build of the most recent commit: ``` $ ./main/aa00061c1b8f5d13f9de0b1966518c0ed8500f70/dnsmonster --loglevel=4 --noetherframe --pcapfile test.20221009.000100 --fileoutputtype =1 --fileoutputpath=/tmp/dnsmonster.foobar.output INFO[2022-10-21T14:37:32+02:00]/opt/dnsmonster/outputs.go:24 main.setupOutputs() Creating the dispatch Channel INFO[2022-10-21T14:37:32+02:00]/opt/dnsmonster/output/file.go:46 github.com/mosajjal/dnsmonster/output.fileConfig.Initialize()...
Seems like DIM currently does this: https://github.com/1and1/dim/blob/dim-5.0.2/dim/dim/rpc.py#L857-L867 When one does not provide a container/prefix, it looks for an `Ipblock` that does not have a parent (`parent_id=None`), and is of type...
Additionally, `rr_create(ip='12.0.0.2', type='PTR', views=['default'], ptrdname='b.test.com.', name='0.0.12.in-addr.arpa.', comment='')` results in ``` { 'layer3domain': 'default', 'record': '@', 'ttl': None, 'type': 'PTR', 'value': 'b.test.com.', 'view': 'default', 'zone': '0.0.12.in-addr.arpa' } ```
ndcli does not use `simplejson` directly, but via `dimclient`: `dimclient` already falls back to `json` if `simplejson` can't be found: https://github.com/1and1/dim/blob/7569eab677dab5a0cf62ed221a51620028f46954/dimclient/dimclient/__init__.py#L9.L12 > simplejson is the externally maintained development version of...
`argparse` seems to be only in `dim-bind`, but is also not requires as explicit dependency, as it is included from Python 2.7 and Python 3.2. Currently, the version from PyPi...
Seems this is a naming issue again, the flag/parameter names does not match what the API and rest of the documentation calls it; from the man page: ``` ndcli modify...
Superseded by #283