New-NpsRadiusClient

New-NpsRadiusClient

Creates a RADIUS client.

구문

Parameter Set: Default
New-NpsRadiusClient [-Name] <String> [-Address] <String> [-AuthAttributeRequired <Boolean> ] [-Disabled] [-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.

별칭

none

필수 여부

true

위치

3

기본값

none

파이프라인 입력 허용 여부

true (ByPropertyName)

와일드카드 문자 허용 여부

false

-AuthAttributeRequired<Boolean>

Indicates whether the server has enabled verification for Access-Request messages. The default value is $False, which means disabled.

별칭

none

필수 여부

false

위치

named

기본값

none

파이프라인 입력 허용 여부

true (ByPropertyName)

와일드카드 문자 허용 여부

false

-Disabled

Indicates whether the RADIUS client is disabled.

별칭

none

필수 여부

false

위치

named

기본값

none

파이프라인 입력 허용 여부

false

와일드카드 문자 허용 여부

false

-Name<String>

Specifies a name for the RADIUS client. This name must be unique.

별칭

none

필수 여부

true

위치

2

기본값

none

파이프라인 입력 허용 여부

false

와일드카드 문자 허용 여부

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.

별칭

none

필수 여부

false

위치

named

기본값

none

파이프라인 입력 허용 여부

true (ByPropertyName)

와일드카드 문자 허용 여부

false

-VendorName<String>

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

별칭

none

필수 여부

false

위치

named

기본값

none

파이프라인 입력 허용 여부

true(ByPropertyName)

와일드카드 문자 허용 여부

false

<CommonParameters>

이 cmdlet은 -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, -OutVariable 등의 일반 매개 변수를 지원합니다. 자세한 내용은 TechNet의 about_CommonParameters(https://go.microsoft.com/fwlink/p/?LinkID=113216)

입력

입력 형식은 cmdlet으로 파이프할 수 있는 개체의 형식입니다.

출력

출력 형식은 cmdlet 실행 시 출력되는 개체의 형식입니다.

  • NpsRadiusClient

Example 1: Add a new RADIUS client

This command adds a 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" –SharedSecret "9vq7822hFsJ8rm"

관련 항목

Get-NpsRadiusClient

Remove-NpsRadiusClient

Set-NpsRadiusClient