Set-NpsRadiusClient

Set-NpsRadiusClient

Specifies configuration settings for a RADIUS client.

구문

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

자세한 설명

The Set-NpsRadiusClient cmdlet specifies configuration settings for 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.

For more information about RADIUS client options, see Managing RADIUS Clients (https://technet.microsoft.com/library/cc754717(v=ws.10).aspx) on TechNet.

매개 변수

-Address<String>

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

별칭

없음

필수 여부

false

위치

named

기본값

없음

파이프라인 입력 적용 여부

false

와일드카드 문자 허용 여부

false

-AuthAttributeRequired<Boolean>

Indicates whether verification for Access-Request messages is enabled. The default value for this parameter is $False, which indicates that verification is disabled.

Set this parameter to $True if your access server supports use of the Message Authenticator attribute, also known as the signature attribute, for additional security.

별칭

없음

필수 여부

false

위치

named

기본값

없음

파이프라인 입력 적용 여부

false

와일드카드 문자 허용 여부

false

-Enabled<Boolean>

Indicates whether the RADIUS client is enabled.

별칭

없음

필수 여부

false

위치

named

기본값

없음

파이프라인 입력 적용 여부

false

와일드카드 문자 허용 여부

false

-Name<String>

Specifies the name of the RADIUS client to update.

별칭

없음

필수 여부

true

위치

1

기본값

없음

파이프라인 입력 적용 여부

True (ByValue)

와일드카드 문자 허용 여부

false

-NapCompatible<Boolean>

Indicates whether the RADIUS client is compatible with Network Access Protection (NAP).

별칭

없음

필수 여부

false

위치

named

기본값

없음

파이프라인 입력 적용 여부

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.

별칭

없음

필수 여부

false

위치

named

기본값

없음

파이프라인 입력 적용 여부

false

와일드카드 문자 허용 여부

false

-VendorName<String>

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

별칭

없음

필수 여부

false

위치

named

기본값

없음

파이프라인 입력 적용 여부

false

와일드카드 문자 허용 여부

false

<CommonParameters>

이 cmdlet은 일반 매개 변수 -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer 및 -OutVariable을 지원합니다. 자세한 내용은 다음을 참조하세요. about_CommonParameters(https://go.microsoft.com/fwlink/p/?LinkID=113216).

입력

입력 유형은 cmdlet에 파이프할 수 있는 개체의 유형입니다.

출력

출력 유형은 cmdlet이 내보내는 개체의 유형입니다.

  • NpsRadiusClient

예제

Example 1: Set a RADIUS client's settings

This command changes the following settings for the RADIUS client named WirelessAP: sets the IP address to 10.0.0.201, the client to not NAP-compatible, and the shared secret to 1234567890.

PS C:\> Set-NpsRadiusClient –Name "WirelessAP" –Address "10.0.0.201" –NapCompatible $False –SharedSecret "1234567890"