You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello team,
I'd like to check for the possibility of adding a password policy with brocade_security_user_config.
Currently the module accepts any plain text as password.
Is it possible to have some checks here to notify the user that the password should meet certain criteria (for e.g. Minimum length, usage of special characters etc.)?
The text was updated successfully, but these errors were encountered:
As per the brocade-security/user-config yang files, these are allowed limits to the password with the allowed values.
typedef user-password-type {
type string {
length "1..40";
pattern "[ -~]{1,40}";
pattern ":" {
modifier invert-match;
}
}
description
"Specifies a password for the account.";
}
Hope this answers your question. Please check at your end and let us know if it resolves your issue.
Hello team,
I'd like to check for the possibility of adding a password policy with brocade_security_user_config.
Currently the module accepts any plain text as password.
Is it possible to have some checks here to notify the user that the password should meet certain criteria (for e.g. Minimum length, usage of special characters etc.)?
The text was updated successfully, but these errors were encountered: