I have a request from audit to remove finger service in Solaris 8 machine.

I try putting remark in /etc/inetd.conf and pkill -HUP it, but when i type finger it still there.

link|improve this question

67% accept rate
feedback

3 Answers

up vote 4 down vote accepted

Typing finger on the local system will work even if the service is disabled. I believe it queries the utmp file directly. To test the service, however, try:

finger user@host

from another host (substituting an appropriate username and hostname, of course), or:

finger user@localhost

from the system you're testing. You should get a "connection refused" message.

By the way, it is good security practice to go ahead and disable all services that aren't needed.

link|improve this answer
Thanks All. Seems this help me. – Syed Sep 3 '09 at 10:46
feedback

What do you mean by typing finger? Can you see the service running? To type finger is not the way to test it :)

link|improve this answer
How to check if finger service is running? and how to test if its successfully stop by putting remark in /etc/inetd.conf file – Syed Sep 3 '09 at 9:50
feedback

Use:

netstat -an | grep $PORTNUMBER

to see if it is listening on that port.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.