New-NpsRadiusClient

New-NpsRadiusClient

Creates a RADIUS client.

構文

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

詳細説明

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.

パラメーター

-Address<String>

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

エイリアス

なし

必須?

true

位置は?

2

既定値

なし

パイプライン入力を許可する

True (ByPropertyName)

ワイルドカード文字を許可する

false

-AuthAttributeRequired<Boolean>

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

エイリアス

なし

必須?

false

位置は?

named

既定値

False

パイプライン入力を許可する

True (ByPropertyName)

ワイルドカード文字を許可する

false

-Disabled

Indicates that the RADIUS client is disabled.

エイリアス

なし

必須?

false

位置は?

named

既定値

なし

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

-Name<String>

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

エイリアス

なし

必須?

true

位置は?

1

既定値

なし

パイプライン入力を許可する

false

ワイルドカード文字を許可する

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.

エイリアス

なし

必須?

false

位置は?

named

既定値

False

パイプライン入力を許可する

True (ByPropertyName)

ワイルドカード文字を許可する

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.

エイリアス

なし

必須?

false

位置は?

named

既定値

なし

パイプライン入力を許可する

True (ByPropertyName)

ワイルドカード文字を許可する

false

-VendorName<String>

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

エイリアス

なし

必須?

false

位置は?

named

既定値

なし

パイプライン入力を許可する

True (ByPropertyName)

ワイルドカード文字を許可する

false

<CommonParameters>

このコマンドレットは次の共通パラメーターをサポートします。-Verbose、-Debug、-ErrorAction、-ErrorVariable、-OutBuffer、-OutVariable.詳細については、以下を参照してください。 about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216)。

入力

入力型は、コマンドレットにパイプできるオブジェクトの型です。

出力

出力型は、コマンドレットによって生成されるオブジェクトの型です。

  • NpsRadiusClient

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"

関連トピック

Get-NpsRadiusClient

Remove-NpsRadiusClient

Set-NpsRadiusClient