Skip to content

Commit e1d287f

Browse files
authored
Merge pull request #16174 from ManikaDhiman/md-sdn-express
Updates for SDN Express PowerShell module
2 parents 5267df7 + 9aee064 commit e1d287f

File tree

1 file changed

+13
-14
lines changed

1 file changed

+13
-14
lines changed

azure-stack/hci/deploy/sdn-express-23h2.md

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Deploy an SDN infrastructure using SDN Express for Azure Stack HCI, versi
33
description: Learn to deploy an SDN infrastructure using SDN Express for Azure Stack HCI, version 23h2.
44
author: alkohli
55
ms.topic: how-to
6-
ms.date: 05/29/2024
6+
ms.date: 10/28/2024
77
ms.author: alkohli
88
ms.reviewer: anirbanpaul
99
---
@@ -47,24 +47,24 @@ The following requirements must be met for a successful SDN deployment:
4747

4848
[!INCLUDE [download-vhdx](../../includes/hci-download-vhdx.md)]
4949

50-
## Download the GitHub repository
50+
## Install the SDN Express PowerShell module
5151

52-
The SDN Express script files live in GitHub. The first step is to get the necessary files and folders onto your deployment computer.
52+
Run the following command to install the latest version of the SDN Express PowerShell module on the machine where you want to run the SDN installation:
5353

54-
1. Go to the [Microsoft SDN GitHub](https://github.com/microsoft/SDN) repository.
54+
```powershell
55+
Install-Module -Name SDNExpress
56+
```
5557

56-
1. In the repository, expand the **Code** drop-down list, and then choose either **Clone** or **Download ZIP** to download the SDN files to your designated deployment computer.
58+
The files automatically install in the default PowerShell module directory: `C:\Program Files\WindowsPowerShell\Modules\SdnExpress\`.
5759

58-
> [!NOTE]
59-
> The designated deployment computer must be running Windows Server 2016 or later.
60-
61-
1. Extract the ZIP file and copy the `SDNExpress` folder to your deployment computer's `C:\` folder.
60+
> [!NOTE]
61+
> The SDN Express script files are no longer available on GitHub.
6262
6363
## Edit the configuration file
6464

6565
The PowerShell `MultiNodeSampleConfig.psd1` configuration data file contains all the parameters and settings that are needed for the SDN Express script as input for the various parameters and configuration settings. This file has specific information about what needs to be filled out based on whether you're deploying only the network controller component, or the software load balancer and gateway components as well. For detailed information, see [Plan a Software Defined Network infrastructure](../concepts/plan-software-defined-networking-infrastructure.md) article.
6666

67-
Navigate to the `C:\SDNExpress\scripts` folder and open the `MultiNodeSampleConfig.psd1` file in your favorite text editor. Change specific parameter values to fit your infrastructure and deployment:
67+
Navigate to the `C:\Program Files\WindowsPowerShell\Modules\SdnExpress\` folder and open the `MultiNodeSampleConfig.psd1` file in your favorite text editor. Change specific parameter values to fit your infrastructure and deployment:
6868

6969
### General settings and parameters
7070

@@ -185,14 +185,14 @@ The SDN Express script deploys your specified SDN infrastructure. When the scrip
185185
1. Run the following command from a user account with administrative credentials for the cluster host servers:
186186

187187
```powershell
188-
SDNExpress\scripts\SDNExpress.ps1 -ConfigurationDataFile MultiNodeSampleConfig.psd1 -Verbose
188+
.\SDNExpress.ps1 -ConfigurationDataFile MultiNodeSampleConfig.psd1 -Verbose
189189
```
190190
191191
1. After the NC VMs are created, configure dynamic DNS updates for the Network Controller cluster name on the DNS server. For more information, see [Dynamic DNS updates](../concepts/network-controller.md#dynamic-dns-updates).
192192
193193
## Configuration sample files
194194
195-
The following configuration sample files for deploying SDN are available on the [Microsoft SDN GitHub](https://github.com/microsoft/SDN/tree/master/SDNExpress/scripts) repository:
195+
The following configuration sample files for deploying SDN are available in the location where the PowerShell module is installed (`C:\Program Files\WindowsPowerShell\Modules\SdnExpress\`):
196196
197197
- **Traditional VLAN networks.psd1** - Deploy Network Controller for managing network policies like microsegmentation and Quality of Service on traditional VLAN Networks.
198198
@@ -204,5 +204,4 @@ The following configuration sample files for deploying SDN are available on the
204204
205205
## Next steps
206206
207-
- [Manage VMs](../manage/vm.md)
208-
207+
- [Manage VMs](../manage/vm.md)

0 commit comments

Comments
 (0)