Add-RASMFARadiusAttr
Last updated
Last updated
Add-RASMFARadiusAttr
Adds attribute settings to Radius provider settings.
Add-RASMFARadiusAttr [-] {Number | String | IP | Time} [] (uint) - (uint) - (string) - (string) - (string) - (uint) [()]
Add-RASMFARadiusAttr [-] {Number | String | IP | Time} [-] () - (uint) - (string) - (string) - (string) - (uint) [()]
Add-RASMFARadiusAttr [-] {Number | String | IP | Time} [] (string) [[-] (uint)] - (uint) - (string) - (string) - (string) - (uint) [()]
The cmdlet appends new attribute settings to existing ones. All parameters are mandatory.
RADIUS attribute vendor ID
RADIUS attribute ID
RADIUS attribute value
The value has many forms:IP, Number, String, and Time. When setting the time it is expected that the time value is in epoch time.
RADIUS attribute name
RADIUS attribute vendor name
RADIUS attribute type. IP, string, number, or time
Possible values: Number, String, IP, Time
The name of the target multi-factor authentication .
This must be the actual multi-factor authentication name used in the RAS farm.
Site ID in which to modify the specified multi-factor authentication .
If the parameter is omitted, the site ID of the Licensing Server will be used.
The ID of the multi-factor authentication to modify. To obtain the ID, use the Get-RASMFA cmdlet.
The multi factor authentication to modify.
To obtain an object of type MFA, use the Get-RASMFA cmdlet.
(CommonParameters)
-none-
**---------- EXAMPLE 1 ----------
Add-RASMFARadiusAttr -AttributeType IP -VendorID 1 -AttributeID 1 -Value 127.0.0.1 -Name AttrName -Vendor VendorName
Adds a new entry to Radius attributes of type IP. The "Value" parameter must be in a valid IP format (IPv4 only). **---------- EXAMPLE 2 ----------
Add-RASMFARadiusAttr -AttributeType String -VendorID 1 -AttributeID 1 -Value "This is a string" -Name AttrName -Vendor VendorName
Adds a new entry to Radius attributes of type String. The "Value" parameter can contain a character of any type, but cannot be empty. **---------- EXAMPLE 3 ----------
Add-RASMFARadiusAttr -AttributeType Number -VendorID 1 -AttributeID 1 -Value 42 -Name AttrName -Vendor VendorName
Adds a new entry to Radius attributes of type Number. The "Value" parameter must contain numbers. The input can also be a string but must contain numbers only. **---------- EXAMPLE 4 ----------
Add-RASMFARadiusAttr -AttributeType Time -VendorID 1 -AttributeID 1 -Value 1500892318 -Name AttrName -Vendor VendorName
Adds a new entry to Radius attributes of type Time. The "Value" parameter represents the date using the epoch time format.