Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update mount.md #8032

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion WindowsServerDocs/administration/windows-commands/mount.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ mount [-o <option>[...]] [-u:<username>] [-p:{<password> | *}] {\\<computername>
| -o fileaccess=`<mode>` | Specifies the default permission mode of new files created on the NFS share. Specify *mode* as a three-digit number in the form *ogw*, where *o*, *g*, and *w* are each a digit representing the access granted the file's owner, group, and the world, respectively. The digits must be in the range 0-7, including:<ul><li>**0:** No access</li><li>**1:** x (execute access)</li><li>**2:** w (write access)</li><li>**3:** wx (write and execute access)</li><li>**4:** r (read access)</li><li>**5:** rx (read and execute access)</li><li>**6:** rw (read and write access)</li><li>**7:** rwx (read, write, and execute access)</li></ul> |
| -o anon | Mounts as an anonymous user. |
| -o nolock | Disables locking (default is **enabled**). |
| -o casesensitive | Forces file lookups on the server to be case sensitive. |
| -o casesensitive=`{yes|no}` | Forces file lookups on the server to be case sensitive. |
| -o sec=`{sys|krb5|krb5i|krb5p}`| Specifies the security mechanism for mounting an NFS share. This value can include any of the following:<ul><li>**sec=sys:** No authentication or security checks are performed. Data transfers aren't encrypted. </li><li>**sec=krb5:** Specifies Kerberos authentication for mounting the NFS share. </li><li>**sec=krb5i:** Extends Kerberos security by adding data integrity checks between the client and server hasn't been tampered. </li><li>**sec=krb5p:** Enhances Kerberos security by enabling data privacy, which encrypts data exchanged between the client and server. |
| -u:`<username>` | Specifies the user name to use for mounting the share. If *username* isn't preceded by a backslash ( **\\** ), it's treated as a UNIX user name. |
| -p:`<password>` | The password to use for mounting the share. If you use an asterisk (**&#42;**), you're prompted for the password. |
Expand Down