Skip to content

Commit d9b306a

Browse files
authored
Merge pull request MicrosoftDocs#2531 from DMillerF/management-point-network-type
Missing ManagementPointNetworkType param
2 parents 501c136 + c79d3f5 commit d9b306a

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

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

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Creates a new failover cluster.
1818
```
1919
New-Cluster [-Name] <String> [-Node <StringCollection>] [-StaticAddress <StringCollection>]
2020
[-IgnoreNetwork <StringCollection>] [-NoStorage] [-S2D] [-AdministrativeAccessPoint <AdminAccessPoint>]
21-
[-Force] [<CommonParameters>]
21+
[-Force] [-ManagementPointNetworkType <AdminAccessPointResType>] [<CommonParameters>]
2222
```
2323

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

0 commit comments

Comments
 (0)