24 lines
746 B
Python
24 lines
746 B
Python
# =============================================================================
|
|
# NetBox Plugins Configuration
|
|
# =============================================================================
|
|
# Mount this file to /etc/netbox/config/plugins.py
|
|
#
|
|
# IMPORTANT: netbox_branching MUST be the last plugin in the list
|
|
# =============================================================================
|
|
|
|
PLUGINS = [
|
|
'netbox_bgp',
|
|
'netbox_topology_views',
|
|
'netbox_branching', # MUST be last
|
|
]
|
|
|
|
PLUGINS_CONFIG = {
|
|
'netbox_branching': {},
|
|
'netbox_bgp': {},
|
|
'netbox_topology_views': {
|
|
'static_image_directory': 'netbox_topology_views/img',
|
|
'allow_coordinates_saving': True,
|
|
'always_save_coordinates': True
|
|
}
|
|
}
|