When you do a 'cifs sessions host/user', you get a list like:
users shares/files opened
machine (user) share Exec-denyW \path R&W-denyAll \path Read-denyAll \path Read-denyN \path Read-denyW \path Write-denyN \path Write-denyW \path
Where can I find a comprehensive list of these locks, and what they mean? Most are self-explanatory; but, for instance, what is "N" stand for?
NetApp Release 5.2.1P2: Tue Mar 16 10:41:03 PST 1999
Until next time...
Todd C. Merrill The Mathworks, Inc. 508-647-7792 24 Prime Park Way, Natick, MA 01760-1500 508-647-7012 FAX tmerrill@mathworks.com http://www.mathworks.com ---
Where can I find a comprehensive list of these locks, and what they mean?
Our SecureShare white paper at:
http://www.netapp.com/technology/level3/3024.html
should give you a good overview, although it doesn't include exactly the list you are asking for. The man page for the Win32 Createfile() system call at:
http://msdn.microsoft.com/library/tools/wcesdkr/kf_c_33.htm
should also aid understanding.
Most are self-explanatory; but, for instance, what is "N" stand for?
"None" - Deny None (i.e. Deny niether read nor write), caused by an open with FILE_SHARE_READ | FILE_SHARE_WRITE options.
Keith