omnia_security_config.yml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. # Copyright 2022 Dell Inc. or its subsidiaries. All Rights Reserved.
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. ---
  15. # Maximum number of consecutive failures before lockout
  16. # The default value of this variable can't be changed
  17. # Default value: 3
  18. max_failures: 3
  19. # Period (in seconds) after which the number of failed login attempts is reset
  20. # Default value: 60
  21. # Min: 30
  22. # Max: 60
  23. failure_reset_interval: 60
  24. # Period (in seconds) for which users are locked out
  25. # Default value: 10
  26. # Min: 5
  27. # Max: 10
  28. lockout_duration: 10
  29. # User sessions that have been idle for a specific period can be ended automatically
  30. # This variable sets session timeout to 3 minutes (180 seconds) by default
  31. # Min: 90
  32. # Max: 180
  33. session_timeout: 180
  34. # Email address used for sending alerts in case of authentication failure
  35. # If this variable is left blank, authentication failure alerts will be disabled.
  36. # Currently, only one email ID is accepted in this field
  37. alert_email_address: ""
  38. # This variable mentions the users to whom the access will be provided
  39. # format of user shall be username@ip or username
  40. # Ex1- root@1.2.3.4 Ex2- root Ex3- root@1.2.3.4 root (if multiple user, provide space seperated values) by default empty
  41. user: ''
  42. # This variable provides the type of access
  43. # Accepted values: "Allow" or "Deny"
  44. # Default value: "Allow"
  45. allow_deny: "Allow"
  46. # This variable is used to disable services.
  47. # Accepted values: "true" or "false".
  48. # Default value: false
  49. # Root access is needed.
  50. restrict_program_support: false
  51. # The below mentioned services can be disabled, by adding values in comma separated values format for restrict_softwares variable
  52. # Services: telnet,lpd,bluetooth,rlogin,rexec
  53. # Ex: restrict_softwares: 'telnet,lpd,bluetooth' ( This disables 3 services, to disable more services, add services with comma separation. )
  54. restrict_softwares: ''