Skip to content

Commit c702ccb

Browse files
authored
Merge pull request #3561 from peterschen/patch-1
Add missing -ManagementPointNetworkType parameter to New-Cluster documentation
2 parents 91e5ada + 8631be5 commit c702ccb

File tree

1 file changed

+23
-2
lines changed

1 file changed

+23
-2
lines changed

docset/winserver2022-ps/failoverclusters/New-Cluster.md

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ Creates a new failover cluster.
1717

1818
```
1919
New-Cluster [-Name] <String> [-Node <StringCollection>] [-StaticAddress <StringCollection>]
20-
[-IgnoreNetwork <StringCollection>] [-NoStorage] [-S2D]
21-
[-AdministrativeAccessPoint <AdminAccessPoint>] [-Force] [<CommonParameters>]
20+
[-IgnoreNetwork <StringCollection>] [-NoStorage] [-S2D] [-AdministrativeAccessPoint <AdminAccessPoint>]
21+
[-Force] [-ManagementPointNetworkType <AdminAccessPointResType>] [<CommonParameters>]
2222
```
2323

2424
## DESCRIPTION
@@ -167,6 +167,27 @@ Accept pipeline input: False
167167
Accept wildcard characters: False
168168
```
169169
170+
### -ManagementPointNetworkType
171+
Specifies the network configuration used to determine IP address settings.
172+
173+
The acceptable values for this parameter are:
174+
175+
- Automatic: Automatically detects the appropriate setting. If SQL Server is running in Azure, it uses `Distributed`. If SQL Server is running on-premises, uses `Singleton`. (Default setting)
176+
- Singleton: The traditional method of DHCP or static IP address.
177+
- Distributed: Uses a Distributed Network Name by using Node IP addresses.
178+
179+
```yaml
180+
Type: AdminAccessPointResType
181+
Parameter Sets: (All)
182+
Aliases:
183+
184+
Required: False
185+
Position: Named
186+
Default value: Automatic
187+
Accept pipeline input: False
188+
Accept wildcard characters: False
189+
```
190+
170191
### -Name
171192

172193
Specifies the name of the cluster to create.

0 commit comments

Comments
 (0)