New-NpsRadiusClient

New-NpsRadiusClient

Creates a RADIUS client.

Sintaxis

Parameter Set: Default
New-NpsRadiusClient [-Name] <String> [-Address] <String> [-AuthAttributeRequired <Boolean> ] [-Disabled] [-NapCompatible <Boolean> ] [-SharedSecret <String> ] [-VendorName <String> ] [ <CommonParameters>]

Descripción detallada

The New-NpsRadiusClient cmdlet creates a Remote Authentication Dial-In User Service (RADIUS) client. A RADIUS client uses a RADIUS server to manage authentication, authorization, and accounting requests that the client sends. A RADIUS client can be an access server, such as a dial-up server or wireless access point, or a RADIUS proxy.

Parámetros

-Address<String>

Specifies a fully qualified domain name (FQDN) or IP address of the RADIUS client.

Alias

ninguno

¿Requerido?

true

¿Posición?

2

Valor predeterminado

ninguno

¿Aceptar canalización?

True (ByPropertyName)

¿Aceptar caracteres comodín?

false

-AuthAttributeRequired<Boolean>

Indicates whether the server has enabled verification for Access-Request messages. The default is disabled.

Alias

ninguno

¿Requerido?

false

¿Posición?

named

Valor predeterminado

False

¿Aceptar canalización?

True (ByPropertyName)

¿Aceptar caracteres comodín?

false

-Disabled

Indicates that the RADIUS client is disabled.

Alias

ninguno

¿Requerido?

false

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

-Name<String>

Specifies a string that contains the name of the RADIUS client. This name must be unique.

Alias

ninguno

¿Requerido?

true

¿Posición?

1

Valor predeterminado

ninguno

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

-NapCompatible<Boolean>

Indicates whether the RADIUS client is compatible with Network Access Protection (NAP). The default is $False, which means that the RADIUS client is not compatible with NAP.

Alias

ninguno

¿Requerido?

false

¿Posición?

named

Valor predeterminado

False

¿Aceptar canalización?

True (ByPropertyName)

¿Aceptar caracteres comodín?

false

-SharedSecret<String>

Specifies a shared secret key that is configured at the RADIUS client. Windows Server® 2012 uses the shared secret key to validate messages between the RADIUS client and NPS.

Alias

ninguno

¿Requerido?

false

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

True (ByPropertyName)

¿Aceptar caracteres comodín?

false

-VendorName<String>

Specifies the RADIUS client vendor name. The default is "RADIUS standard".

Alias

ninguno

¿Requerido?

false

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

True (ByPropertyName)

¿Aceptar caracteres comodín?

false

<CommonParameters>

Este cmdlet admite los siguientes parámetros comunes: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer y -OutVariable. Para obtener más información, consulte about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Entradas

El tipo de entrada es el tipo de los objetos que se pueden canalizar al cmdlet.

Salidas

El tipo de resultado es el tipo de objetos que emite el cmdlet.

  • NpsRadiusClient

Ejemplos

Example 1: Add a new RADIUS client

This command adds an NAP-compatible wireless access point as a RADIUS client to the NPS configuration. This RADIUS client has the IP address 10.0.0.200, the name WirelessAP, an enabled state, and a shared secret of 9vq7822hFsJ8rm.

PS C:\> New-NpsRadiusClient –Address "10.0.0.200" –Name "WirelessAP" –NapCompatible $True –SharedSecret "9vq7822hFsJ8rm"

Temas relacionados

Get-NpsRadiusClient

Remove-NpsRadiusClient

Set-NpsRadiusClient