Page 1 of 1

Running fprobe as a xinetd service

Posted: Wed Jun 26, 2019 11:48 am
by HIINNS
All, I am currently using fprobe to collect flow statistics for NAGIOSNA. Unfortunately, using /etc/rc.local is not an option in my environment. Would it be possible to run fprobe as a service under xinetd with a service configuration file like:

Service fprobe
{
disable = no
socket_type = stream
wait = no
server = /usr/sbin/fprobe
server_args = -i <interface> <NNA server>:<port>
user = root
}

Re: Running fprobe as a xinetd service

Posted: Wed Jun 26, 2019 3:05 pm
by tgriep
What the xinetd daemon does it to listen for inbound connections and when it receives one, it will start the application that is configured for it.
Since the fprobe application needs to be running all of the time, it will not work with xinetd.

Re: Running fprobe as a xinetd service

Posted: Thu Jun 27, 2019 6:07 am
by HIINNS
Thank you. Consider the issue closed.