Replies: 1 comment 2 replies
-
You mean, forward DNS packets without decoding or inspecting them?" |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello everyone,
I’d like to use the collector as a "middleman" to simply forward data. In my DNS configuration, I have something similar to [1], but I’m curious if it’s possible to configure the collector to only receive data and send it to another instance without sniffing the data itself.
Thanks in advance for any insights!
[1]
multiplexer:
collectors:
- name: sniff
afpacket-sniffer:
device: eth0
port: 53
chan-buffer-size: 65535
transforms:
filtering:
log-queries: false
log-replies: true
loggers:
- name: remote_instance
dnstapclient:
remote-address: server_ip
remote-port: server_port
connect-timeout: 5
retry-interval: 10
flush-interval: 10
tls-support: false
tls-insecure: false
server-id: "ID"
buffer-size: 100
chan-buffer-size: 65535
routes:
- from: [ sniff ]
to: [ remote_instance ]
Beta Was this translation helpful? Give feedback.
All reactions