config.py 964 B

12345678910111213141516171819202122
  1. class Config:
  2. WEBEX_TEAM = 'CLEUR 20 NOC'
  3. DNS_DOMAIN = 'ciscolive.network'
  4. DNS_BASE = 'https://dc1-dns.{}:8443/web-services/rest/resource/'.format(
  5. DNS_DOMAIN)
  6. DHCP_BASE = 'https://dc1-dhcp.{}:8443/web-services/rest/resource/'.format(
  7. DNS_DOMAIN)
  8. MONITORING = 'cl-monitoring.' + DNS_DOMAIN
  9. DHCP_SERVER = 'dc1-dhcp.' + DNS_DOMAIN
  10. PI = 'cl-pi.' + DNS_DOMAIN
  11. CMX_GW = 'http://cl-freebsd.{}:8002/api/v0.1/cmx'.format(DNS_DOMAIN)
  12. TOOL_BASE = 'https://tool.{}/n/static/port.html?'.format(DNS_DOMAIN)
  13. AD_DOMAIN = 'ad.' + DNS_DOMAIN
  14. AD_DN_BASE = 'cn=Users' + \
  15. ''.join([', dc={}'.format(x) for x in AD_DOMAIN.split('.')])
  16. TOOL = 'tool.' + DNS_DOMAIN
  17. VCENTER = 'cl-vcenter.' + AD_DOMAIN
  18. SMTP_SERVER = '10.100.252.13'
  19. VPN_SERVER = 'cl-production.ciscolive.eu'
  20. VPN_SERVER_IP = '64.103.25.43'
  21. CISCOLIVE_YEAR = '2020'
  22. PW_RESET_URL = 'https://cl-jump-01.{}:8443'.format(DNS_DOMAIN)