Hallo.
I stumbled across Graylog, and wanted to give it a try.
I setup the server, with a NGINX stream proxy in front of it, everything is working perfect. But all my syslog i receive gets the NGINX-servers ip as the source.
How do i keep the source adress from my (example) ASA firewall instead. I cant seem to fingure it out. My NGINX i very simple as follows:
stream {
server {
listen 514 udp:
proxy_pass 10.10.10.20:10514;
}
}