Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

fingerd(1m) [hpux man page]

fingerd(1M)															       fingerd(1M)

NAME
fingerd - remote user information server SYNOPSIS
DESCRIPTION
is the server for the RFC 742 Name/Finger protocol. It provides a network interface to which gives a status report of users currently logged in on the system or a detailed report about a specific user (see finger(1)). The Internet daemon executes when it receives a ser- vice request at the port listed in the services data base for ``finger'' using ``tcp'' protocol; see inetd(1M) and services(4). To start from the configuration file must contain an entry as follows: Once a remote host is connected, reads a single ``command line'' terminated by a carriage-return and line-feed. It uses this command line as the arguments to an invocation of sends the output of to the remote host and closes the connection. If the command line is null (contains only a carriage-return and line-feed pair), returns a report that lists all users logged in on the system at that moment. If a user name is specified on the command line (for example, user<CR><LF>), the response lists more extended information for only that particular user, whether logged in or not. See finger(1) for the details of this extended information. If is run with the option, it allows remote user names on the command line (for example, user@host<CR><LF>). Otherwise, if the command line contains a remote user name, prints the error message and closes the connection. AUTHOR
was developed by the University of California, Berkeley and HP. SEE ALSO
finger(1), inetd(1M), services(4), RFC 742 for the Name/Finger protocol. fingerd(1M)

Check Out this Related Man Page

fingerd(8)						      System Manager's Manual							fingerd(8)

NAME
fingerd - The user information server for networks SYNOPSIS
fingerd [-s] The fingerd program allows users to get information about remote systems or users when they execute; for example, finger user@host. FLAGS
Turns on socket level debugging. DESCRIPTION
The fingerd program is a protocol that provides an interface to the finger(1) command. By default, the fingerd program is disabled. To enable it, edit the /etc/inetd.conf file, uncomment the line containing the finger service name, and restart Internet services by issuing the /usr/sbin/rcinet restart command. After it is enabled, the fingerd program is invoked by inetd(8), which listens for finger requests at port 79. When it receives control, fingerd reads a single command line, terminated by a newline, and passes it to the finger command, which generates a report. The fingerd program closes its port connection when output from finger is finished. FILES
Specifies the command path User database who file Plans for requested user Projects for requested user whois command who command RELATED INFORMATION
Commands: finger(1), inetd(8), syslogd(8), who(1) Specifications: RFC742 delim off fingerd(8)
Man Page

15 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

finger

is there a way to show information on all the users on your system? when i use 'finger' is only shows users names and info who are currently on the system. is there a way to show all accounts? thanx! (5 Replies)
Discussion started by: djatwork
5 Replies

2. Shell Programming and Scripting

Finding valid users

Is there a way to determine the names of valid system users? I know that last, finger, and who will give you the names of users who have accessed the system and / or those who are currently logged onto the system. I was trying to determine a way to find the names of any valid user whether or not... (5 Replies)
Discussion started by: jrdnoland1
5 Replies

3. UNIX for Advanced & Expert Users

finger command

Hello all, Here is what I am trying to do. If a user exist, then send an echo "EXIST" or else "DOES NOT EXIST". (under HP-UX) Kind of: #!/usr/bin/sh USER=mylogin finger $USER if $? = 0 then echo "EXIST"" else echo "DOES NOT EXIST" fi (10 Replies)
Discussion started by: qfwfq
10 Replies

4. UNIX for Dummies Questions & Answers

Extracting spec info from finger.

Hi everyone, I'm trying to extract the user name and full name from the finger command without using sed or awk. Any pointers? Thanks in advance. (6 Replies)
Discussion started by: franny
6 Replies

5. Programming

logged in or logged out?

I have wrote a service with c++ which is always run and now I want to get with it the exact time in that the user log in or log out and then run a script. but the problem is that how could i find that the user logged in or logged out with out checking something frequently? thanks (9 Replies)
Discussion started by: mrhosseini
9 Replies

6. Programming

Need help regarding HTTP parsing

Hi.. I've got a program that can connects to a remote server and displays some garbage value and closes the connection. The code goes like this #include <stdio.h> #include <netdb.h> #include <netinet/in.h> #include <string.h> #include <stdlib.h> #include <sys/types.h> #include... (5 Replies)
Discussion started by: rakesh_01
5 Replies

7. Shell Programming and Scripting

Assigning entire to a variable

Hi, Need help on the below topic. I am looping finger command and trying to get each line content into a variable. Output of finger command produces more than one line and each line was multiple words. for get_line in `finger` do echo "Finger Value: ${get_line}'" done The issue is... (9 Replies)
Discussion started by: vfrg
9 Replies

8. UNIX for Dummies Questions & Answers

Need help showing which network protocol users use.

I'm having a bit of a trouble trying to figure out how to tell which network protocol users HAVE been logging in with. I know how to find this information for currently logged in users : maximillian.gardner@syccuxfs01:~> who joseph.blosser pts/0 2012-01-15 14:07 (198.107.160.185)... (5 Replies)
Discussion started by: maximillian.g
5 Replies

9. UNIX for Dummies Questions & Answers

Extracting specific info finger command

how to extract user machine name for current terminal using finger command below command gives machinename for all session , is it possible to filter it to only currernt terminal ? finger -b -p $LOGNAME | grep from (12 Replies)
Discussion started by: lalitpct
12 Replies

10. Solaris

Having problems with finger on Solaris 10

I have a bunch of Solaris systems and for the 8/9 systems, I can type "finger -s 2" to get a list of all users (whether they are logged in or not) and the last time they logged in. I have some new 10 systems and this command does not work. Does anybody know whether this was changed in Solaris 10?... (6 Replies)
Discussion started by: Muller
6 Replies

11. AIX

Still logged in problem

Hello everyone, I have a problem with one AIX server. When I run the last command, it shows thet many users logged in on Dec 31 at 19:00 and are "still logged in". I know that is a problem I've seen before but I don't know how to fix it. I just cleared the /var/adm/wtmp, but it started doing it... (4 Replies)
Discussion started by: designbc
4 Replies

12. UNIX for Dummies Questions & Answers

[Solved] Finger command

Hi, I am writing script to take last logon user id detials by using finger command. But I am getting below output. wer34 Feb 10:23 I NEED to display wer34 Feb 10 2013 10:23, Is there any way to get like this. (18 Replies)
Discussion started by: stew
18 Replies

13. UNIX for Dummies Questions & Answers

Remove carriage return

I need to remove the carriage return comes inbetween the record. Need to have CR only at the end. I used the below command. tr -d '\n' < filewithcarriagereturns > filewithoutcarriagereturns But its removing all the CR and giving one line output. Input File: 12345 abcdegh... (11 Replies)
Discussion started by: srvn_saru
11 Replies

14. Shell Programming and Scripting

How to run "finger" command in an if statement?

I have been trying to run the finger command in a if statement but its giving me a bunch of errors. gidlistTemp="g274gG;g2759C;g28320;g2885G;g2A276;g23338;g2A5h5;g2A307" for i in $(echo $gidlistTemp| tr ';' ' \n') do tst=(finger $i | wc -l) if then ... (4 Replies)
Discussion started by: ajetangay
4 Replies

15. Solaris

Not able to disable finger & telnet command in Solaris 8

Hi I need to disable finger & telnet command in solaris 8 I have put the # infront of finger and telnet line in /etc/inetd.conf file. Further I have run the below command kill -1 <process id of inetd > But when I am running finger command it is till giving information for remote machine... (8 Replies)
Discussion started by: amity
8 Replies