Skip to content

Commit 5cd7f3f

Browse files
Merge pull request #214810 from khdownie/kendownie101722-2
Small fixes to Linux articles
2 parents c90d173 + 806eec6 commit 5cd7f3f

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

articles/storage/files/storage-files-configure-p2s-vpn-linux.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
title: Configure a Point-to-Site (P2S) VPN on Linux for use with Azure Files | Microsoft Docs
2+
title: Configure a Point-to-Site (P2S) VPN on Linux for use with Azure Files
33
description: How to configure a Point-to-Site (P2S) VPN on Linux for use with Azure Files
44
author: khdownie
55
ms.service: storage
66
ms.topic: how-to
7-
ms.date: 10/19/2019
7+
ms.date: 10/17/2022
88
ms.author: kendownie
99
ms.subservice: files
1010
---
@@ -24,14 +24,14 @@ The article details the steps to configure a Point-to-Site VPN on Linux to mount
2424
| Premium file shares (FileStorage), LRS/ZRS | ![Yes](../media/icons/yes-icon.png) | ![Yes](../media/icons/yes-icon.png) |
2525

2626
## Prerequisites
27-
- The most recent version of the Azure CLI. For more information on how to install the Azure CLI, see [Install the Azure PowerShell CLI](/cli/azure/install-azure-cli) and select your operating system. If you prefer to use the Azure PowerShell module on Linux, you may, however the instructions below are presented for Azure CLI.
27+
- The most recent version of the Azure CLI. For information on how to install the Azure CLI, see [Install the Azure PowerShell CLI](/cli/azure/install-azure-cli) and select your operating system. If you prefer to use the Azure PowerShell module on Linux, you may. However, the instructions below are for Azure CLI.
2828

29-
- An Azure file share you would like to mount on-premises. Azure file shares are deployed within storage accounts, which are management constructs that represent a shared pool of storage in which you can deploy multiple file shares, as well as other storage resources, such as blob containers or queues. You can learn more about how to deploy Azure file shares and storage accounts in [Create an Azure file share](storage-how-to-create-file-share.md).
29+
- An Azure file share you'd like to mount on-premises. Azure file shares are deployed within storage accounts, which are management constructs that represent a shared pool of storage in which you can deploy multiple file shares, as well as other storage resources, such as blob containers or queues. You can learn more about how to deploy Azure file shares and storage accounts in [Create an Azure file share](storage-how-to-create-file-share.md).
3030

31-
- A private endpoint for the storage account containing the Azure file share you want to mount on-premises. To learn more about how to create a private endpoint, see [Configuring Azure Files network endpoints](storage-files-networking-endpoints.md?tabs=azure-cli).
31+
- A private endpoint for the storage account containing the Azure file share you want to mount on-premises. To learn how to create a private endpoint, see [Configuring Azure Files network endpoints](storage-files-networking-endpoints.md?tabs=azure-cli).
3232

3333
## Install required software
34-
The Azure virtual network gateway can provide VPN connections using several VPN protocols, including IPsec and OpenVPN. This guide shows how to use IPsec and uses the strongSwan package to provide the support on Linux.
34+
The Azure virtual network gateway can provide VPN connections using several VPN protocols, including IPsec and OpenVPN. This article shows how to use IPsec and uses the strongSwan package to provide the support on Linux.
3535

3636
> Verified with Ubuntu 18.10.
3737
@@ -196,7 +196,7 @@ sudo ipsec up $virtualNetworkName
196196
```
197197

198198
## Mount Azure file share
199-
Now that you have set up your Point-to-Site VPN, you can mount your Azure file share. The following example will mount the share non-persistently. To mount persistently, see [Mount SMB file shares to Linux](storage-how-to-use-files-linux.md) or [Mount NFS file share to Linux](storage-files-how-to-mount-nfs-shares.md).
199+
Now that you've set up your Point-to-Site VPN, you can mount your Azure file share. See [Mount SMB file shares to Linux](storage-how-to-use-files-linux.md) or [Mount NFS file share to Linux](storage-files-how-to-mount-nfs-shares.md).
200200

201201
## See also
202202
- [Azure Files networking overview](storage-files-networking-overview.md)

articles/storage/files/storage-files-how-to-mount-nfs-shares.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
---
2-
title: Mount an Azure NFS file share - Azure Files
3-
description: Learn how to mount a Network File System share.
2+
title: Mount an NFS Azure file share on Linux
3+
description: Learn how to mount a Network File System (NFS) Azure file share on Linux.
44
author: khdownie
55
ms.service: storage
66
ms.topic: how-to
7-
ms.date: 11/16/2021
7+
ms.date: 10/17/2022
88
ms.author: kendownie
99
ms.subservice: files
1010
ms.custom: references_regions
1111
---
1212

13-
# How to mount an NFS file share
13+
# How to mount an NFS Azure file share on Linux
1414

15-
[Azure Files](storage-files-introduction.md) is Microsoft's easy to use cloud file system. Azure file shares can be mounted in Linux distributions using either the Server Message Block protocol (SMB) or the Network File System (NFS) protocol. This article is focused on mounting with NFS, for details on mounting with SMB, see [Use Azure Files with Linux](storage-how-to-use-files-linux.md). For details on each of the available protocols, see [Azure file share protocols](storage-files-planning.md#available-protocols).
15+
Azure file shares can be mounted in Linux distributions using either the Server Message Block (SMB) protocol or the Network File System (NFS) protocol. This article is focused on mounting with NFS. For details on mounting SMB Azure file shares, see [Use Azure Files with Linux](storage-how-to-use-files-linux.md). For details on each of the available protocols, see [Azure file share protocols](storage-files-planning.md#available-protocols).
1616

1717
## Limitations
1818

@@ -25,7 +25,7 @@ ms.custom: references_regions
2525
## Prerequisites
2626

2727
- [Create an NFS share](storage-files-how-to-create-nfs-shares.md).
28-
- Open port 2049 on any client you want to mount your NFS share to.
28+
- Open port 2049 on the client you want to mount your NFS share to.
2929

3030
> [!IMPORTANT]
3131
> NFS shares can only be accessed from trusted networks. Connections to your NFS share must originate from one of the following sources:
@@ -56,9 +56,9 @@ You have now mounted your NFS share.
5656

5757
### Validate connectivity
5858

59-
If your mount failed, it's possible that your private endpoint was not setup correctly or is inaccessible. For details on confirming connectivity, see the [Verify connectivity](storage-files-networking-endpoints.md#verify-connectivity) section of the networking endpoints article.
59+
If your mount failed, it's possible that your private endpoint was not set up correctly or is inaccessible. For details on confirming connectivity, see the [Verify connectivity](storage-files-networking-endpoints.md#verify-connectivity) section of the networking endpoints article.
6060

6161
## Next steps
6262

63-
- Learn more about Azure Files with our article, [Planning for an Azure Files deployment](storage-files-planning.md).
64-
- If you experience any issues, see [Troubleshoot Azure NFS file shares](storage-troubleshooting-files-nfs.md).
63+
- Learn more about Azure Files with [Planning for an Azure Files deployment](storage-files-planning.md).
64+
- If you experience any issues, see [Troubleshoot Azure NFS file shares](storage-troubleshooting-files-nfs.md).

0 commit comments

Comments
 (0)