Getting Data In

How can I receive syslog (udp/514) events with a non-root splunkd?

dwaddle
SplunkTrust
SplunkTrust

The operating system won't allow a non-root user to bind to ports < 1024. How can I get my splunkd, running as user splunk, to receive events that were previously going to my syslogd at UDP port 514?

Tags (3)
1 Solution

dwaddle
SplunkTrust
SplunkTrust

This is a little hackish, but it does work with Splunk on linux. You can configure Splunk to listen on a > 1024 port and use Linux's iptables to do port redirection.

For example, configure in inputs.conf: [udp:2514]

And put into your iptables config:

iptables -t nat -A PREROUTING -p udp --dport 514 -j REDIRECT --to-port 2514

The only caveat is that this doesn't work with network traffic sourced at the local machine to port 514 on that same machine. But, this should be an acceptable workaround as most 'local' syslog stuff goes to a file, or through a UNIX domain socket like /dev/log.

View solution in original post

pde
Path Finder

If you're lucky enough to be running Solaris, it's not the least hackish. Just start splunk via the SMF and add the net_privaddr privilege to your manifest:

 <method_credential group='splunk' limit_privileges=':default' privileges='basic,file_dac_read,net_privaddr' supp_groups=':default' user='splunk'/>

dwaddle
SplunkTrust
SplunkTrust

This is a little hackish, but it does work with Splunk on linux. You can configure Splunk to listen on a > 1024 port and use Linux's iptables to do port redirection.

For example, configure in inputs.conf: [udp:2514]

And put into your iptables config:

iptables -t nat -A PREROUTING -p udp --dport 514 -j REDIRECT --to-port 2514

The only caveat is that this doesn't work with network traffic sourced at the local machine to port 514 on that same machine. But, this should be an acceptable workaround as most 'local' syslog stuff goes to a file, or through a UNIX domain socket like /dev/log.

Get Updates on the Splunk Community!

AppDynamics Summer Webinars

This summer, our mighty AppDynamics team is cooking up some delicious content on YouTube Live to satiate your ...

SOCin’ it to you at Splunk University

Splunk University is expanding its instructor-led learning portfolio with dedicated Security tracks at .conf25 ...

Credit Card Data Protection & PCI Compliance with Splunk Edge Processor

Organizations handling credit card transactions know that PCI DSS compliance is both critical and complex. The ...