Create a Link for a directory

Hi,
I need to create a link as stagein01 for the /p11/prod/stagein01/.
Please let me know the procedure for the same.

Regards,
VN

I need a little more info

We have a NFS mount p11/prod/stagein01/ on one of the servers.
We need to have a softlink 'stagein01' pointing to this Filesystem.

Regards,
VN

This the command to create a soft link.

ln -s [source-file] [target]

Path for the ln command /usr/bin/ln or /usr/xpg4/bin/ln
-s makes it a softlink.

This might be what you are looking for:

ln -s /net/one-of-the-servers/p11/prod/stagein01 /somewhere/stagein01 

So will it be ln -s /p11/prod/stagein01/ stagein01.

Regards,
VN