Skip to content

NetBox plugin to allow users to reorder devices within a rack using a drag and drop UI.

License

Notifications You must be signed in to change notification settings

netbox-community/netbox-reorder-rack

Folders and files

NameName
Last commit message
Last commit date

Latest commit

46bb96b · Mar 13, 2024

History

2 Commits
Mar 13, 2024
Mar 13, 2024
Mar 13, 2024
Mar 13, 2024
Mar 13, 2024
Mar 13, 2024
Mar 13, 2024
Mar 13, 2024

Repository files navigation

Netbox Reorder Rack Plugin

Version Downloads

Allow the ability to reorder rack units in NetBox using a drag and drop interface.

Reorder Rack

Installation

NOTE: For docker please see: Docker install

The plugin is available as a Python package and can be installed with pip.

Run the following commands to install the required package after activating the virtual environment:

source /opt/netbox/venv/bin/activate
pip install netbox-reorder-rack

To ensure the plugin is automatically re-installed during future upgrades, create a file named local_requirements.txt (if it does not exist already) in the NetBox root directory (alongside requirements.txt) and list the netbox-reorder-rack package:

echo netbox-reorder-rack >> local_requirements.txt

Once installed, the plugin needs to be enabled in your configuration.py

# In your configuration.py
PLUGINS = ["netbox_reorder_rack"]

You may need to collect static files and restart NetBox for the plugin to be properly installed.

python3 manage.py collectstatic --no-input
systemctl restart netbox

Compatibility Matrix

netbox version plugin version
>= 3.7.0 >= v1.0.0

Update

To update the plugin, you need to update the package and restart NetBox.

source /opt/netbox/venv/bin/activate
pip install netbox-reorder-rack
python3 manage.py collectstatic --no-input
systemctl restart netbox