You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jumpserver/apps/assets/const/host.py

84 lines
2.3 KiB

2 years ago
from .base import BaseType
2 years ago
class HostTypes(BaseType):
LINUX = 'linux', 'Linux'
WINDOWS = 'windows', 'Windows'
UNIX = 'unix', 'Unix'
2 years ago
OTHER_HOST = 'other', "Other"
@classmethod
2 years ago
def _get_base_constrains(cls) -> dict:
return {
2 years ago
'*': {
'charset_enabled': True,
'charset': 'utf-8', # default
2 years ago
'domain_enabled': True,
'su_enabled': True,
'su_methods': [
{
'name': 'sudo su',
'id': 'sudo su'
},
{
'name': 'su -',
'id': 'su -'
}
],
},
cls.WINDOWS: {
2 years ago
'su_enabled': False,
},
2 years ago
cls.OTHER_HOST: {
'su_enabled': False,
}
2 years ago
}
@classmethod
def _get_protocol_constrains(cls) -> dict:
return {
'*': {
'choices': ['ssh', 'telnet', 'vnc', 'rdp']
}
}
@classmethod
def _get_automation_constrains(cls) -> dict:
return {
'*': {
'ping_enabled': True,
'gather_facts_enabled': True,
'gather_accounts_enabled': True,
'verify_account_enabled': True,
'change_password_enabled': True,
'create_account_enabled': True,
}
}
@classmethod
def internal_platforms(cls):
return {
cls.LINUX: [
{'name': 'Linux'},
],
cls.UNIX: [
{'name': 'Unix'},
{'name': 'macOS'},
{'name': 'BSD'},
{'name': 'AIX', 'automation': {
'create_account_method': 'create_account_aix',
'change_password_method': 'change_password_aix'
}},
],
cls.WINDOWS: [
{'name': 'Windows'},
{'name': 'Windows-TLS', 'protocol_settings': {
'rdp': {'security': 'tls'},
}},
{'name': 'Windows-RDP', 'protocol_settings': {
'rdp': {'security': 'rdp'},
}}
],
cls.OTHER_HOST: []
}