New-NpsRadiusClient
Creates a RADIUS client.
New-NpsRadiusClient
[-Name] <String>
[-Address] <String>
[-AuthAttributeRequired <Boolean>]
[-NapCompatible <Boolean>]
[-SharedSecret <String>]
[-VendorName <String>]
[-Disabled]
[<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.
PS C:\>New-NpsRadiusClient -Address "10.0.0.200" -Name "WirelessAP" -NapCompatible $True -SharedSecret "9vq7822hFsJ8rm"
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.
Specifies a fully qualified domain name (FQDN) or IP address of the RADIUS client.
Type: | String |
Position: | 1 |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Indicates whether the server has enabled verification for Access-Request messages. The default is disabled.
Type: | Boolean |
Position: | Named |
Default value: | False |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Indicates that the RADIUS client is disabled.
Type: | SwitchParameter |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Specifies a string that contains the name of the RADIUS client. This name must be unique.
Type: | String |
Position: | 0 |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
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.
Type: | Boolean |
Position: | Named |
Default value: | False |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
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.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies the RADIUS client vendor name. The default is "RADIUS standard".
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
NpsRadiusClient