Skip to content

Commit 6f81979

Browse files
committed
better file names
1 parent c568508 commit 6f81979

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

articles/azure-netapp-files/TOC.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,8 @@
205205
href: configure-nfs-clients.md
206206
- name: Convert an NFS volume between NFSv3 and NFSv4.1
207207
href: convert-nfsv3-nfsv41.md
208-
- name: Configure ACLs for NFSv4.1
209-
href: configure-access-control-lists-nfsv4.md
208+
- name: Configure access control lists
209+
href: configure-access-control-lists.md
210210
- name: Manage SMB volumes
211211
items:
212212
- name: Create an SMB volume

articles/azure-netapp-files/azure-netapp-files-create-volumes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,5 +143,5 @@ This article shows you how to create an NFS volume. For SMB volumes, see [Create
143143
* [Configure Unix permissions and change ownership mode](configure-unix-permissions-change-ownership-mode.md).
144144
* [Resource limits for Azure NetApp Files](azure-netapp-files-resource-limits.md)
145145
* [Learn about virtual network integration for Azure services](../virtual-network/virtual-network-for-azure-services.md)
146-
* [Configure access control lists on NFSv4.1 with Azure NetApp Files](configure-access-control-lists-nfsv4.md)
146+
* [Configure access control lists on NFSv4.1 with Azure NetApp Files](configure-access-control-lists.md)
147147
* [Application resilience FAQs for Azure NetApp Files](faq-application-resilience.md)

articles/azure-netapp-files/configure-access-control-lists-nfsv4.md renamed to articles/azure-netapp-files/configure-access-control-lists.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
---
2-
title: Configure access control lists on NFSv4.1 with Azure NetApp Files | Microsoft Docs
2+
title: Configure access control lists with Azure NetApp Files | Microsoft Docs
33
description: This article shows you how to configure access control lists (ACLs) on NFSv4.1 with Azure NetApp Files.
44
author: sluce
55
ms.service: azure-netapp-files
66
ms.workload: storage
77
ms.topic: how-to
8-
ms.date: 12/12/2022
8+
ms.date: 12/20/2022
99
ms.author: anfdocs
1010
---
11-
# Configure access control lists on NFSv4.1 for Azure NetApp Files
11+
# Configure access control lists on NFSv4.1 volumes for Azure NetApp Files
1212

13-
Azure NetApp Files supports access control lists (ACLs) on NFSv4.1. ACLs provide granular file security via NFSv4.1.
13+
Azure NetApp Files supports access control lists (ACLs) on NFSv4.1 volumes. ACLs provide granular file security via NFSv4.1.
1414

1515
ACLs contain access control entities (ACEs), which specify the permissions (read, write, etc.) of individual users or groups. When assigning user roles, provide the user email address if you're using a Linux VM joined to an Active Directory Domain. Otherwise, provide user IDs to set permissions.
1616

1717
## Requirements
1818

19-
- NFS volumes using ACLs in Azure NetApp Files must be on NFSv4.1. You can [convert a volume from NFSv3 to NFSv4.1](convert-nfsv3-nfsv41.md).
19+
- ACLs can only be configured on NFS4.1 volumes. You can [convert a volume from NFSv3 to NFSv4.1](convert-nfsv3-nfsv41.md).
2020

2121
- You must have two packages installed:
2222
- `nfs-utils` to mount NFS volumes
@@ -27,7 +27,7 @@ ACLs contain access control entities (ACEs), which specify the permissions (read
2727
sudo yum install -y nfs4-acl-tools
2828
```
2929

30-
## Configure ACLs for NFSv4.1
30+
## Configure ACLs
3131

3232
1. If you want to configure ACLs for a Linux VM joined to Active Directory, complete the steps in [Join a Linux VM to an Azure Active Directory Domain](join-active-directory-domain.md).
3333

@@ -46,7 +46,9 @@ ACLs contain access control entities (ACEs), which specify the permissions (read
4646
- In an Active Directory-joined set up, enter an email address for the user. Otherwise, enter the numerical user ID.
4747
- Permission aliases include read, write, append, execute, etc.
4848
In the following Active Directory-joined example, user [email protected] is given read, write, and execute access to `/nfsldap/engineering`:
49-
`nfs4_setfacl -a A::[email protected]:RWX /nfsldap/engineering`
49+
```bash
50+
nfs4_setfacl -a A::[email protected]:RWX /nfsldap/engineering
51+
```
5052

5153
## Next steps
5254

articles/azure-netapp-files/convert-nfsv3-nfsv41.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,4 +143,4 @@ This section shows you how to convert the NFSv4.1 volume to NFSv3.
143143
144144
* [Create an NFS volume for Azure NetApp Files](azure-netapp-files-create-volumes.md)
145145
* [Mount or unmount a volume](azure-netapp-files-mount-unmount-volumes-for-virtual-machines.md)
146-
* [Configure access control lists on NFSv4.1 with Azure NetApp Files](configure-access-control-lists-nfsv4.md)
146+
* [Configure access control lists on NFSv4.1 with Azure NetApp Files](configure-access-control-lists.md)

articles/azure-netapp-files/join-active-directory-domain.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,10 @@ ms.service: azure-netapp-files
1212
ms.workload: storage
1313
ms.tgt_pltfrm: na
1414
ms.topic: how-to
15-
ms.date: 12/12/2022
15+
ms.date: 12/20/2022
1616
ms.author: anfdocs
1717
---
1818

19-
<!-- does this duplicate https://learn.microsoft.com/en-us/azure/active-directory-domain-services/join-rhel-linux-vm -->
20-
2119
# Join a Linux VM to an Azure Active Directory Domain
2220

2321
Joining a Linux virtual machine (VM) to an [Azure Active Directory Domain Services (Azure AD DS)](../active-directory-domain-services/overview.md) managed domain enables users to sign into to VMs with one set of credentials. Once joined, the user accounts and credentials can be used to sign in, access, and manage servers.
@@ -62,4 +60,4 @@ Refer to [Understand guidelines for Active Directory Domain Services site design
6260

6361
* [Understand guidelines for Active Directory Domain Services site design and planning for Azure NetApp Files](understand-guidelines-active-directory-domain-service-site.md)
6462
* [Modify an Active Directory Connection](modify-active-directory-connections.md)
65-
* [Configure ACLs for NFSv4.1](configure-access-control-lists-nfsv4.md)
63+
* [Configure access control lists for NFSv4.1 volumes](configure-access-control-lists.md)

0 commit comments

Comments
 (0)