To configure the VMware Aria Operations for Networks account lockout policy for local user accounts, configure these specific policy settings.
Setting |
Default |
Description |
---|---|---|
|
3 |
Maximum number of authentication failures before the account is locked. |
|
0 |
Amount of time in seconds that the account remains locked. |
|
600 |
Amount of time in seconds that the root account remains locked. |
UI Procedure
- Log in to VMware Aria Operations for Logs at <aria_operations_for_logs_fqdn>:22 as the root user by using a Secure Shell (SSH) client .
- Back up the /etc/security/faillock.conf file for the appliance by running the following command.
cp -p /etc/security/faillock.conf /etc/security/faillock.conf-`date +%F_%H:%M:%S`.back
- Configure the maximum number of failed log-in attempts.
sed -i -E 's/deny = [-]?[0-9]+/deny = <your_value>/g' /etc/security/faillock.conf
-
Configure the unlock time for all other local accounts.
sed -i -E 's/unlock_time = [-]?[0-9]+/unlock_time = <your_value>/g' /etc/security/faillock.conf
-
Configure the unlock time for the root account.
sed -i -E 's/root_unlock_time = [-]?[0-9]+/root_unlock_time = <your_value>/g' /etc/security/faillock.conf
- Verify the values.
cat /etc/security/faillock.conf
-
Repeat the procedure for the remaining VMware Aria Operations for Logs appliances.
PowerShell Procedure
- Start PowerShell.
-
Replace the values in the sample code and run the commands.
$sddcManagerFqdn = "sfo-vcf01.sfo.rainpole.io" $sddcManagerUser = "[email protected]" $sddcManagerPass = "VMw@re1!" $maxFailures = "5" $unlockInterval = "900" $rootUnlockInterval = "900"
- To get the current configuration, run the command.
Request-AriaLocalUserAccountLockout -server $sddcManagerFqdn -user $sddcManagerUser -pass $sddcManagerPass -product vrli
-
To configure the local user account lockout policy, run the command.
Update-AriaLocalUserPasswordAccountLockout -server $sddcManagerFqdn -user $sddcManagerUser -pass $sddcManagerPass -product vrli -failures $maxFailures -unlockInterval $unlockInterval -rootUnlockInterval $rootUnlockInterval
-
Run the command in Step 3 to get the updated configuration.