https://github.com/kkthxbye-code/netbox-old-search
Adds the old search functionality to NetBox 3.3+
https://github.com/kkthxbye-code/netbox-old-search
netbox netbox-plugin
Last synced: 7 days ago
JSON representation
Adds the old search functionality to NetBox 3.3+
- Host: GitHub
- URL: https://github.com/kkthxbye-code/netbox-old-search
- Owner: kkthxbye-code
- License: apache-2.0
- Created: 2023-07-03T20:41:19.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2025-02-27T18:48:45.000Z (11 months ago)
- Last Synced: 2025-08-28T05:34:27.633Z (5 months ago)
- Topics: netbox, netbox-plugin
- Language: Python
- Homepage:
- Size: 85.9 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# netbox-old-search [](https://pypi.org/project/netbox-old-search/#description)
This plugin brings back the old global search method that was used in netbox prior to NetBox v3.4.0. The plugin is intended for users that prefer the old search method, or prefers to have the option to use both.
## Version Compatibility
| Netbox | Plugin |
|---------------|----------|
| NetBox < 4.0 | <= 0.1.3 |
| NetBox >= 4.0 | >= 1.0.0 |
| NetBox >= 4.2 | >= 1.1.0 |
## Installing
With pip:
```bash
pip install netbox-old-search
```
Then add to `local_requirements.txt`:
```bash
netbox-old-search
```
## Configuration
Enable the plugin in `/opt/netbox/netbox/netbox/configuration.py`:
```python
PLUGINS = [
"netbox_old_search"
]
PLUGINS_CONFIG = {
"netbox_old_search": {
"replace_search": True, # Hijacks the top search bar in netbox, redirecting to this plugins search method instead
"show_menu": False, # Shows a link to the old search form in the plugin menu
},
}
```
## Attribution
A lot of the code is repurposed from the [netbox](https://github.com/netbox-community/netbox) source code from before the old search engine was removed.
## Screenshots
