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/device.py

55 lines
1.5 KiB

2 years ago
from django.utils.translation import gettext_lazy as _
2 years ago
from .base import BaseType
2 years ago
class DeviceTypes(BaseType):
GENERAL = 'general', _("General")
SWITCH = 'switch', _("Switch")
ROUTER = 'router', _("Router")
FIREWALL = 'firewall', _("Firewall")
@classmethod
2 years ago
def _get_base_constrains(cls) -> dict:
return {
'*': {
'charset_enabled': False,
2 years ago
'domain_enabled': True,
'su_enabled': False,
}
}
@classmethod
def _get_protocol_constrains(cls) -> dict:
return {
'*': {
'choices': ['ssh', 'telnet']
}
}
@classmethod
def _get_automation_constrains(cls) -> dict:
return {
2 years ago
'*': {
'ansible_enabled': True,
'ansible_config': {
'ansible_connection': 'local',
},
2 years ago
'ping_enabled': True,
'gather_facts_enabled': False,
'gather_accounts_enabled': False,
'verify_account_enabled': False,
'change_secret_enabled': False,
'push_account_enabled': False,
2 years ago
}
}
@classmethod
def internal_platforms(cls):
return {
cls.GENERAL: [{'name': 'General'}, {'name': 'Cisco'}, {'name': 'Huawei'}, {'name': 'H3C'}],
cls.SWITCH: [],
cls.ROUTER: [],
cls.FIREWALL: []
}