Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion COMPATIBILITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
|---------|------------------------|------------------------|
| 0.1.1-3 | 4.5.0 | 4.5.x |
| 0.1.4 | 4.5.4 | 4.5.x |
| 0.1.5 | 4.5.0 | 4.5.x |
| 0.1.5-6 | 4.5.0 | 4.5.x |
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

The NetBox DHCP plugin enables NetBox to manage operational DHCP data such as servers, shared networks, subnets, pools, options and host reservations. It serves as a "source of truth" for DHCP servers, such as Kea DHCP, providing data for network automation tools that can be used to configure the DHCP infrastructure.

This works in much the same way in which NetBox provides configuration data for automatic configuration of network components, or [NetBox DNS](https://github.com/peteeckel/netbox-plugin-dns) provides the input necessary to configure DNS infrastructure and zone data.
This works in much the same way in which NetBox provides configuration data for automatic configuration of network components, or [NetBox DNS](https://github.com/sys4/netbox-plugin-dns) provides the input necessary to configure DNS infrastructure and zone data.

<div align="center">
<a href="https://pypi.org/project/netbox-plugin-dhcp/"><img src="https://img.shields.io/pypi/v/netbox-plugin-dhcp" alt="PyPi"/></a>
Expand Down Expand Up @@ -79,7 +79,6 @@ MIT
## Known Issues

* There is an issue that sometimes causes a lock conflict while running the test suite. The symptom is that the tests stop at some point and the `./manage.py test netbox_dhcp` command never returns. The issue does not seem to affect normal operation, just the tests. The specific tests have been disabled for the time being until the issue is resolved.
* Options and Pools cannot be imported via CSV, YAML or JSON.
* Filtering Subnets, Pools etc. by Option is not possible.
* Documentation is still missing.

Expand Down
2 changes: 1 addition & 1 deletion netbox_dhcp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from netbox.plugins import PluginConfig

__version__ = "0.1.5"
__version__ = "0.1.6"


class DHCPConfig(PluginConfig):
Expand Down
2 changes: 1 addition & 1 deletion netbox_dhcp/tests/test_netbox_dhcp.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

class NetBoxDHCPVersionTestCase(SimpleTestCase):
def test_version(self):
assert __version__ == "0.1.5"
assert __version__ == "0.1.6"


class AppTest(APITestCase):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "netbox-plugin-dhcp"
version = "0.1.5"
version = "0.1.6"
description = "NetBox DHCP is a NetBox plugin for DHCP data."
authors = [
{name="Peter Eckel", email="pe@sys4.de"},
Expand Down
Loading