Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 23 additions & 2 deletions docset/winserver2022-ps/failoverclusters/New-Cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ Creates a new failover cluster.

```
New-Cluster [-Name] <String> [-Node <StringCollection>] [-StaticAddress <StringCollection>]
[-IgnoreNetwork <StringCollection>] [-NoStorage] [-S2D]
[-AdministrativeAccessPoint <AdminAccessPoint>] [-Force] [<CommonParameters>]
[-IgnoreNetwork <StringCollection>] [-NoStorage] [-S2D] [-AdministrativeAccessPoint <AdminAccessPoint>]
[-Force] [-ManagementPointNetworkType <AdminAccessPointResType>] [<CommonParameters>]
```

## DESCRIPTION
Expand Down Expand Up @@ -167,6 +167,27 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -ManagementPointNetworkType
Specifies the network configuration used to determine IP address settings.

The acceptable values for this parameter are:

- 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)
- Singleton: The traditional method of DHCP or static IP address.
- Distributed: Uses a Distributed Network Name by using Node IP addresses.

```yaml
Type: AdminAccessPointResType
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: Automatic
Accept pipeline input: False
Accept wildcard characters: False
```

### -Name

Specifies the name of the cluster to create.
Expand Down