netbox-dns


Namenetbox-dns JSON
Version 0.17.0 PyPI version JSON
download
home_pagehttps://github.com/auroraresearchlab/netbox-dns
SummaryNetbox Dns is a netbox plugin for managing zone, nameserver and record inventory.
upload_time2023-02-06 09:32:00
maintainer
docs_urlNone
authorAurora Research Lab
requires_python>=3.8,<4.0
licenseMIT
keywords netbox netbox-plugin dns
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <h1 align="center">NetBox DNS</h1>

<p align="center"><i>NetBox DNS is a NetBox plugin for managing DNS data.</i></p>

<div align="center">
<a href="https://pypi.org/project/netbox-dns/"><img src="https://img.shields.io/pypi/v/netbox-dns" alt="PyPi"/></a>
<a href="https://github.com/auroraresearchlab/netbox-dns/stargazers"><img src="https://img.shields.io/github/stars/auroraresearchlab/netbox-dns" alt="Stars Badge"/></a>
<a href="https://github.com/auroraresearchlab/netbox-dns/network/members"><img src="https://img.shields.io/github/forks/auroraresearchlab/netbox-dns" alt="Forks Badge"/></a>
<a href="https://github.com/auroraresearchlab/netbox-dns/pulls"><img src="https://img.shields.io/github/issues-pr/auroraresearchlab/netbox-dns" alt="Pull Requests Badge"/></a>
<a href="https://github.com/auroraresearchlab/netbox-dns/issues"><img src="https://img.shields.io/github/issues/auroraresearchlab/netbox-dns" alt="Issues Badge"/></a>
<a href="https://github.com/auroraresearchlab/netbox-dns/graphs/contributors"><img alt="GitHub contributors" src="https://img.shields.io/github/contributors/auroraresearchlab/netbox-dns?color=2b9348"></a>
<a href="https://github.com/auroraresearchlab/netbox-dns/blob/master/LICENSE"><img src="https://img.shields.io/github/license/auroraresearchlab/netbox-dns?color=2b9348" alt="License Badge"/></a>
</div>

## Features

* Manage name servers
* Manage DNS zone information, automatically generating SOA and NS records
* Automatically create and update PTR records for A and AAAA records
* Optionally organize zones in views to cater for split horizon DNS and multi site deployments

NetBox DNS is using the standardized NetBox plugin interface, so it also takes advantage of the NetBox tagging and change log features.

## Requirements

* NetBox 3.4 or higher
* Python 3.8 or higher

## Installation & Configuration

### Installation

```
$ source /opt/netbox/venv/bin/activate
(venv) $ pip install netbox-dns
```

### Configuration

Add the plugin to the NetBox config. `~/netbox/configuration.py`

```python
PLUGINS = [
    "netbox_dns",
]
```

To permanently mount the plugin when updating NetBox:

```
echo netbox-dns >> ~/netbox/local_requirements.txt
```

To add the required netbox_dns tables to your database run the following command from your NetBox directory:

```
./manage.py migrate
```

Full reference: [Using Plugins - NetBox Documentation](https://netbox.readthedocs.io/en/stable/plugins/)

## Screenshots

![Zones](https://raw.githubusercontent.com/auroraresearchlab/netbox-dns/main/docs/images/ZoneList.png)

![Zone Detail](https://raw.githubusercontent.com/auroraresearchlab/netbox-dns/main/docs/images/ZoneDetail.png)

![Records](https://raw.githubusercontent.com/auroraresearchlab/netbox-dns/main/docs/images/RecordList.png)

![Record Detail](https://raw.githubusercontent.com/auroraresearchlab/netbox-dns/main/docs/images/RecordDetail.png)

## Contribute

Contributions are always welcome! Please see: [contributing guide](CONTRIBUTING.md)

## License

MIT

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/auroraresearchlab/netbox-dns",
    "name": "netbox-dns",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8,<4.0",
    "maintainer_email": "",
    "keywords": "netbox,netbox-plugin,dns",
    "author": "Aurora Research Lab",
    "author_email": "info@auroraresearchlab.com",
    "download_url": "https://files.pythonhosted.org/packages/bc/78/444f1e7d265eb9c5c5bc1a2bdd927d4af29a76057fd4116552909c0bcb6c/netbox_dns-0.17.0.tar.gz",
    "platform": null,
    "description": "<h1 align=\"center\">NetBox DNS</h1>\n\n<p align=\"center\"><i>NetBox DNS is a NetBox plugin for managing DNS data.</i></p>\n\n<div align=\"center\">\n<a href=\"https://pypi.org/project/netbox-dns/\"><img src=\"https://img.shields.io/pypi/v/netbox-dns\" alt=\"PyPi\"/></a>\n<a href=\"https://github.com/auroraresearchlab/netbox-dns/stargazers\"><img src=\"https://img.shields.io/github/stars/auroraresearchlab/netbox-dns\" alt=\"Stars Badge\"/></a>\n<a href=\"https://github.com/auroraresearchlab/netbox-dns/network/members\"><img src=\"https://img.shields.io/github/forks/auroraresearchlab/netbox-dns\" alt=\"Forks Badge\"/></a>\n<a href=\"https://github.com/auroraresearchlab/netbox-dns/pulls\"><img src=\"https://img.shields.io/github/issues-pr/auroraresearchlab/netbox-dns\" alt=\"Pull Requests Badge\"/></a>\n<a href=\"https://github.com/auroraresearchlab/netbox-dns/issues\"><img src=\"https://img.shields.io/github/issues/auroraresearchlab/netbox-dns\" alt=\"Issues Badge\"/></a>\n<a href=\"https://github.com/auroraresearchlab/netbox-dns/graphs/contributors\"><img alt=\"GitHub contributors\" src=\"https://img.shields.io/github/contributors/auroraresearchlab/netbox-dns?color=2b9348\"></a>\n<a href=\"https://github.com/auroraresearchlab/netbox-dns/blob/master/LICENSE\"><img src=\"https://img.shields.io/github/license/auroraresearchlab/netbox-dns?color=2b9348\" alt=\"License Badge\"/></a>\n</div>\n\n## Features\n\n* Manage name servers\n* Manage DNS zone information, automatically generating SOA and NS records\n* Automatically create and update PTR records for A and AAAA records\n* Optionally organize zones in views to cater for split horizon DNS and multi site deployments\n\nNetBox DNS is using the standardized NetBox plugin interface, so it also takes advantage of the NetBox tagging and change log features.\n\n## Requirements\n\n* NetBox 3.4 or higher\n* Python 3.8 or higher\n\n## Installation & Configuration\n\n### Installation\n\n```\n$ source /opt/netbox/venv/bin/activate\n(venv) $ pip install netbox-dns\n```\n\n### Configuration\n\nAdd the plugin to the NetBox config. `~/netbox/configuration.py`\n\n```python\nPLUGINS = [\n    \"netbox_dns\",\n]\n```\n\nTo permanently mount the plugin when updating NetBox:\n\n```\necho netbox-dns >> ~/netbox/local_requirements.txt\n```\n\nTo add the required netbox_dns tables to your database run the following command from your NetBox directory:\n\n```\n./manage.py migrate\n```\n\nFull reference: [Using Plugins - NetBox Documentation](https://netbox.readthedocs.io/en/stable/plugins/)\n\n## Screenshots\n\n![Zones](https://raw.githubusercontent.com/auroraresearchlab/netbox-dns/main/docs/images/ZoneList.png)\n\n![Zone Detail](https://raw.githubusercontent.com/auroraresearchlab/netbox-dns/main/docs/images/ZoneDetail.png)\n\n![Records](https://raw.githubusercontent.com/auroraresearchlab/netbox-dns/main/docs/images/RecordList.png)\n\n![Record Detail](https://raw.githubusercontent.com/auroraresearchlab/netbox-dns/main/docs/images/RecordDetail.png)\n\n## Contribute\n\nContributions are always welcome! Please see: [contributing guide](CONTRIBUTING.md)\n\n## License\n\nMIT\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Netbox Dns is a netbox plugin for managing zone, nameserver and record inventory.",
    "version": "0.17.0",
    "split_keywords": [
        "netbox",
        "netbox-plugin",
        "dns"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dda4ad2ddaa61b9e4d2b528b4b5704efe852c6fb7237d99d115f385f6cfe35f4",
                "md5": "7dd95efc926eb5842fa9202cdef6c743",
                "sha256": "fe494454d181eec67a5b46c4c774f367b90c3c794f1034de31a7d583aaaeba7b"
            },
            "downloads": -1,
            "filename": "netbox_dns-0.17.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "7dd95efc926eb5842fa9202cdef6c743",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8,<4.0",
            "size": 60394,
            "upload_time": "2023-02-06T09:31:58",
            "upload_time_iso_8601": "2023-02-06T09:31:58.855982Z",
            "url": "https://files.pythonhosted.org/packages/dd/a4/ad2ddaa61b9e4d2b528b4b5704efe852c6fb7237d99d115f385f6cfe35f4/netbox_dns-0.17.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc78444f1e7d265eb9c5c5bc1a2bdd927d4af29a76057fd4116552909c0bcb6c",
                "md5": "ae9afd3b03d8ebd7fe36df3dd4911c40",
                "sha256": "14e87441eb9985c699c12d0dafce911da05c7b66c6fca5f77073966bb5f6b9c2"
            },
            "downloads": -1,
            "filename": "netbox_dns-0.17.0.tar.gz",
            "has_sig": false,
            "md5_digest": "ae9afd3b03d8ebd7fe36df3dd4911c40",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8,<4.0",
            "size": 32411,
            "upload_time": "2023-02-06T09:32:00",
            "upload_time_iso_8601": "2023-02-06T09:32:00.036671Z",
            "url": "https://files.pythonhosted.org/packages/bc/78/444f1e7d265eb9c5c5bc1a2bdd927d4af29a76057fd4116552909c0bcb6c/netbox_dns-0.17.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-02-06 09:32:00",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "auroraresearchlab",
    "github_project": "netbox-dns",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "netbox-dns"
}
        
Elapsed time: 0.03824s