1834679 Members
3021 Online
110069 Solutions
New Discussion

inetd.conf

 
SOLVED
Go to solution
Nobody's Hero
Valued Contributor

inetd.conf

Can someone please tell me what these entries are for in inetd.conf?

daytime stream tcp nowait root internal
time stream tcp nowait root internal
daytime dgram udp wait root internal
time dgram udp wait root internal
UNIX IS GOOD
4 REPLIES 4
Nobody's Hero
Valued Contributor

Re: inetd.conf

Oh yes, and are they related to 'timed' daemon ?
UNIX IS GOOD
James R. Ferguson
Acclaimed Contributor
Solution

Re: inetd.conf

Hi:

These are the so-called "small tcp services".

The 'daytime' simply returns a day and time.

The 'time' returns a time in seconds.

You have one for the tcp protocol and another for the udp protocol.

You can disable these services as they are generally only useful in debugging and/or small demonstration programs. You should configure Network Time Protocol (NTP) for reliable time-keeping.

Regards!

...JRF...
Jeff_Traigle
Honored Contributor

Re: inetd.conf

They are not related to "xntpd". (A quick Google search shows this is probably the equivalent to IBM's "timed" in AIX.)

Those are internal inetd services. Daytime reports system time in human readable format. Time reports system time as the number of seconds since midnight January 1, 1900).

See inetd(1M) man page.
--
Jeff Traigle
dirk dierickx
Honored Contributor

Re: inetd.conf

those are entries best disabled ;)