-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from h4ndzdatm0ld/develop
Version Bump
- Loading branch information
Showing
18 changed files
with
294 additions
and
193 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
name: "clab-topo-netconf.yml" | ||
|
||
mgmt: | ||
network: "nornir-netconf-testing" # management network name | ||
ipv4_subnet: "172.100.100.0/24" # ipv4 range | ||
topology: | ||
kinds: | ||
vr-xrv: # clab/clab@123 | ||
image: "h4ndzdatm0ld/vr-xrv:6.1.3" | ||
vr-sros: | ||
image: "h4ndzdatm0ld/sros:latest" | ||
nodes: | ||
xrv-p1: | ||
kind: "vr-xrv" | ||
mgmt_ipv4: "172.100.100.11" | ||
sros-p2: | ||
kind: "vr-sros" | ||
mgmt_ipv4: "172.100.100.12" | ||
links: | ||
# p1 XR port 1 is connected to p2 SROS port 1 | ||
- endpoints: ["xrv-p1:eth1", "sros-p2:eth1"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -118,3 +118,7 @@ tests/stubs/*.pyi | |
|
||
# Docs | ||
docs/README.md | ||
|
||
# containerlab | ||
*.clab-topo-netconf.yaml | ||
*clab-topo-netconf.yml/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,3 +11,5 @@ rules: | |
|
||
ignore: | | ||
.github/ | ||
clab-clab-topo-netconf.yml/ | ||
.clab-topo-netconf.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
all: | ||
children: | ||
vr-sros: | ||
hosts: | ||
clab-clab-topo-netconf.yml-sros-p2: | ||
ansible_host: 172.100.100.12 | ||
vr-xrv: | ||
hosts: | ||
clab-clab-topo-netconf.yml-xrv-p1: | ||
ansible_host: 172.100.100.11 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
name: "clab-topo-netconf.yml" | ||
|
||
mgmt: | ||
network: "nornir-netconf-testing" # management network name | ||
ipv4_subnet: "172.100.100.0/24" # ipv4 range | ||
topology: | ||
kinds: | ||
vr-xrv: # clab/clab@123 | ||
image: "h4ndzdatm0ld/vr-xrv:6.1.3" | ||
vr-sros: | ||
image: "h4ndzdatm0ld/sros:latest" | ||
nodes: | ||
xrv-p1: | ||
kind: "vr-xrv" | ||
mgmt_ipv4: "172.100.100.11" | ||
sros-p2: | ||
kind: "vr-sros" | ||
mgmt_ipv4: "172.100.100.12" | ||
links: | ||
# p1 XR port 1 is connected to p2 SROS port 1 | ||
- endpoints: ["xrv-p1:eth1", "sros-p2:eth1"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "nornir_netconf" | ||
version = "1.0.0" | ||
version = "1.0.1" | ||
description = "Netconf plugin for nornir using ncclient" | ||
authors = ["Hugo Tinoco <[email protected]>", "Patrick Ogenstad <[email protected]>"] | ||
license = "Apache-2.0" | ||
|
@@ -17,7 +17,7 @@ packages = [ | |
|
||
[tool.poetry.dependencies] | ||
python = "^3.7.0" | ||
ncclient = "^0.6.12" | ||
ncclient = "^0.6.9" | ||
xmltodict = "^0.12.0" | ||
nornir = {version = "^3.0.0", allow-prereleases = true} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.