How to restrict FTP user to a specific directory in solaris 10
 Procedure to configure FTP guest user access    1: Create a user which you want to use for the ftp , Name of the user can be anything except "ftp" ( In our Example it is "ftpuser")   Useradd -g 10 -d /export/home/ftpuser -m -s /bin/bash ftpuser  passwd ftpuser  Enter the new password twice .   2: Run the "ftpconfig -d" command , on the home directory of newly created user.    # ftpconfig –d /export/home/ftpuser  this updates the existing directory with the info needed to make the account restricted.  After this you can see some extra directories in /export/home/ftpuser e.g bin, dev,lib e.t.c    3: Add the user to the /etc/ftpd/ftpaccess file. There is an existing commented entry   # guestuser username  that can be uncommented and edited    guestuser ftpuser   4: Confirm that the user is a member of a class in /etc/ftpd/ftpaccess this entry should a already exist in ftpaccess  class guestusers guest *   5: Modify permissions for guest user if necessary   d...