Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable backup for Check Point Gaia via netmiko #166

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Enable backup for Checkpoint Gaia via netmiko
jifoxpa committed Jul 11, 2024
commit 8cce151ff7f28ce5f61e8a64e7f5f006ea8b1936
28 changes: 28 additions & 0 deletions docs/task/task.md
Original file line number Diff line number Diff line change
@@ -110,3 +110,31 @@ class DispatcherMixin:
| ----- | ----------- |
| NORNIR_NAUTOBOT_REVERT_IN_SECONDS | Amount in seconds to revert if a config based method fails. |
| NORNIR_NAUTOBOT_NETMIKO_ENABLE_DEFAULT | Override the default(True) to not automatically call the `enable` function before running commands. |


## Dispatcher Configuration for Nautobot Golden Config

here are the steps needed to configure dispatchers for Nautobot Golden Config.

### checkpoint_gaia

This section describes the **checkpoint_gaia** dispatcher that provides backup functionality for Check Point firewalls.

To configure the dispatcher for Nautobot Golden Config, follow these steps:

1. Go to **Nautobot / Admin / Configuration**.
2. In the **Golden Configuration** section, set the default framework to `"checkpoint_gaia": "netmiko"`.

Here is an example of the configuration in JSON format:

```json
{
"all": "napalm",
"checkpoint_gaia": "netmiko"
}
```

3. Add the Platform **checkpoint_gaia** to the **Platform** model in the Nautobot admin interface.

- **Name**: "checkpoint_gaia"
- **Network driver**: "checkpoint_gaia"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We cover this in a few other places, nautobot-plugin-nornir specifically. I'd say we delete this from here.

Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""nornir dispatcher for checkpoint_gaia."""

from nornir.core.task import Result, Task

from nornir_nautobot.plugins.tasks.dispatcher.default import NapalmDefault, NetmikoDefault
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "nornir-nautobot"
version = "3.2.0"
version = "3.2.1"
description = "Nornir Nautobot"
authors = ["Network to Code, LLC <[email protected]>"]
readme = "README.md"