{% extends 'generic/object.html' %} {% load form_helpers %} {% block title %}Cisco ISE Settings{% endblock %} {% block header %}

Cisco ISE Settings

{% endblock %} {% block content %}
Current Configuration
ISE URL {% if config.ise_url %} {{ config.ise_url }} {% else %} Not configured {% endif %}
Username {% if config.ise_username %} {{ config.ise_username }} {% else %} Not configured {% endif %}
Password {% if config.ise_password %} ******** {% else %} Not configured {% endif %}
Timeout {{ config.timeout|default:30 }} seconds
Cache Timeout {{ config.cache_timeout|default:60 }} seconds
Verify SSL {% if config.verify_ssl %} Enabled {% else %} Disabled {% endif %}
Device Mappings
{% if config.device_mappings %} {% for mapping in config.device_mappings %} {% endfor %}
Manufacturer Device Type Lookup Method
{{ mapping.manufacturer|default:"*" }} {{ mapping.device_type|default:"*" }} {% if mapping.lookup == "endpoint" %} Endpoint (MAC lookup via ERS API) {% else %} NAD (IP/hostname via ERS API) {% endif %}
{% else %}
No device mappings configured. The Cisco ISE tab will not appear on any devices.
{% endif %}
Configuration Help

Add to configuration.py:

PLUGINS = ['netbox_cisco_ise']

PLUGINS_CONFIG = {
    'netbox_cisco_ise': {
        'ise_url': 'https://ise.example.com',
        'ise_username': 'ersadmin',
        'ise_password': 'your-password',
        'timeout': 30,
        'cache_timeout': 60,
        'verify_ssl': False,
        # Device mappings control which devices show the tab
        # manufacturer/device_type are regex patterns
        # lookup types:
        #   "nad" - IP/hostname (for switches, routers, WLCs)
        #   "endpoint" - MAC address (for wireless clients)
        'device_mappings': [
            {'manufacturer': 'cisco', 'lookup': 'nad'},
            {'manufacturer': 'vocera', 'lookup': 'endpoint'},
        ],
    }
}
View Documentation
About

This plugin displays Cisco ISE (Identity Services Engine) data on Device pages in NetBox.

Network Access Devices (NAD lookup):

  • ISE registration status
  • IP addresses & model info
  • RADIUS/TACACS+ settings
  • Network device groups

Endpoints (MAC lookup):

  • Session status & details
  • Profiling information
  • Identity group membership
  • Custom attributes

Version 0.1.0

{% endblock %}