> I want to study/understand linux networking and:
> http://www.tldp.org/HOWTO/Net-HOWTO/x635.html
> is part of my 'journey'.
> It nicely explains about the files: /etc/services ,
> /etc/inetd.conf .
> On my redhat 6.2 installation I found and confirmed the contents
> of /etc/services , but can't find any */inetd.conf .
> (although my Slakware instalation has one).
> How does redhat 6.2 do the 'job' without a /etc/inetd.conf ?
> Thanks for any pointers.
> -- Chris Glur.
I'm not sure that RedHat switched from inetd to xinetd with 6.2,
but they did it around then, so the answer is:
inetd, inetd.conf is GONE
xinetd works slightly differently, I use chkconfig to query the
settings of xinetd controlled services, for example, imap:
# chkconfig --list imap
imap on
If I wanted to, I could do:
# chkconfig imap off
# chkconfig --list imap
imap off
(etc.)
One can also finely control the operation of the services, see:
"Access Control Using xinetd"
http://www.redhat.com/docs/manuals/linux/RHL-7.3-Manual/ref-guide/s1-...
for example.
HTH, Bob L.
--