|
Finger Gateway ScriptThe UNIX finger service can be used to provide a form of user directory service. After you have installed the finger service, remote users will have the ability to query user profiles on your Virtual Server. User profiles include information such as full name, login name, home directory, as well as the contents of the ".plan", ".project", or ".forward" files. The ".plan"".project", and ".forward" files must be located in each of your users home directories (if they exist). HTML Source for the Finger Client FormThe HTML source below represents a finger client form. <html> <head> <title>Finger Remote User on Remote Host</title> </head> <body> < hr size = 3> <h3>Finger Remote User on Remote Host</h3> <form method="POST" action="/cgi-bin/library/finger/finger.pl"> <input name="user" size=8 maxlength=16> <b>@</b> <input name="host" size=24 maxlength=72> <input type="submit" value="Lookup"> </form> <hr size = 3> </body> </html> If you are unfamiliar with the FORM HTML element, or would like to learn more about forms, the following URL is an excellent resource: http://www.ncsa.uiuc.edu/SDG/Software/Mosaic/Docs/fill-out-forms/overview.html How to Install the Finger CGITo install the finger CGI on your Virtual Server you will need to do the following:
Once you have completed the installation successfully, you will have a working finger form like the one shown below (go ahead and test it). |