There is a missing parameter at the end of the line. This is documented in the man page for inetd.conf
formatting link
The last last parameters are command line arguments for the program, _including_ the name of the program as the first parameter e.g.
app stream tcp nowait root /sbin/app /sbin/app -v
You shoudl also check out the tcpd wrapper that can be used to configure access to the app by allowing/disallowing access by IP address etc.
The other thing to note is that you get a separate invocation of /sbin/app for each incoming TCP connection - which may or may not be what you want.
The main reasons for having services started by inetd (or xinetd) are...
- they are not running by default, leaving resources for other programs
- you can use tcpd for extra security
- easy of writing, you don't need to know much about handling networking connections. You write your application to just read from standard input and write to standard output and inetd does the rest. You can even write your application in a scripting language like bash, or perl.
You can not do raw TCP/UDP this way. Why do you need to do _RAW_ udp/tcp?
Join the Discussion
Have something to add? Share your thoughts — no account required.
Didn't find your answer?
Ask the community — no account required
Report Content
You are reporting this content to the moderators. They will look at it
ASAP.