netbox-plugin-interface-sync/netbox_interface_sync/__init__.py
Keith Knowles 54e90ecbec
Update __init__.py
Adds Netbox 4 plugin resource locations
2024-05-12 11:58:17 -06:00

29 lines
1.2 KiB
Python

from netbox.plugins import PluginConfig
class Config(PluginConfig):
name = 'netbox_interface_sync'
verbose_name = 'NetBox 4 Interface Synchronization'
description = 'Compare and synchronize components (interfaces, ports, outlets, etc.) between NetBox 4 device types ' \
'and devices'
version = '0.4.0'
author = 'based on work by Victor Golovanenko'
author_email = 'drygdryg2014@yandex.ru'
default_settings = {
# Ignore case and spaces in names when matching components between device type and device
'name_comparison': {
'case-insensitive': True,
'space-insensitive': True
},
# Exclude virtual interfaces (bridge, link aggregation group (LAG), "virtual") from comparison
'exclude_virtual_interfaces': True,
# Add a panel with information about the number of interfaces to the device page
'include_interfaces_panel': False,
# Consider component descriptions when comparing. If this option is set to True, then take into account
# component descriptions when comparing components and synchronizing their attributes, otherwise - ignore
'sync_descriptions': True
}
config = Config