# # dictionary.sti # # Server Technology # https://www.servertech.com # # Dictionary for Power Distribution Units (PRO1 and PRO2 models) # VENDOR STI 1718 # # Attributes # ATTRIBUTE STI-Access-Level 1 integer STI ATTRIBUTE STI-Env-Mon 2 integer STI ATTRIBUTE STI-Outlets 3 string STI ATTRIBUTE STI-Groups 4 string STI ATTRIBUTE STI-Ports 5 string STI VALUE STI-Access-Level Admin 1 VALUE STI-Access-Level Power-User 2 VALUE STI-Access-Level User 3 VALUE STI-Access-Level Reboot-Only 4 VALUE STI-Access-Level On-Only 5 VALUE STI-Access-Level View-Only 6 VALUE STI-Env-Mon Yes 1 VALUE STI-Env-Mon No 2 # # Notes # # A valid STI-Access-Level is required, otherwise access # is denied. # # For STI-Access-Level values other than Admin, if # STI-Env-Mon is not included for a user, the default is # No. # # For STI-Access-Level values other than Admin and # Power-User, if STI-Outlets, STI-Groups, or STI-Ports # are not included for a user, the default is no outlet, # group, or port access rights, respectively. # # STI-Outlets, STI-Groups, and STI-Ports values are space- # delimited strings of absolute IDs, names, or the special # keyword "ALL". The string values are case-insensitive. # These strings are limited to 253 characters. If needed, # these attributes may be repeated to append strings that # declare additional access rights. # # Examples # # Administrator with full access and configuration rights # # sti-admin Cleartext-Password := "admin" # STI-Access-Level = Admin # # Power-user with environmental monitoring allowed and full # outlet/group/port access rights # # sti-power Cleartext-Password := "power" # STI-Access-Level = Power-User, # STI-Env-Mon = Yes # # Normal user with environmental monitoring not allowed # and specific outlet/group/port access rights # # sti-user Cleartext-Password := "user" # STI-Access-Level = User, # STI-Env-Mon = No, # STI-Outlets = ".AA1 .AA2 Router1 Router2 Server1 Server2", # STI-Outlets += ".AA3 .AA4 Router3 Router4 Server3 Server4", # STI-Groups = "Routers Servers", # STI-Ports = "Console" # # View-only user with environmental monitoring allowed # and all outlet and group access rights # #sti-view Cleartext-Password := "view" # STI-Access-Level = View-Only, # STI-Env-Mon = Yes, # STI-Outlets = "ALL", # STI-Groups = "ALL"