forked from openconfig/kne
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a110702
commit 47aff5e
Showing
18 changed files
with
1,634 additions
and
365 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: "cdnos-demo" | ||
nodes: { | ||
name: "cdnos1" | ||
vendor: DRIVENETS | ||
config: { | ||
config_file: "default" | ||
config_path: "/config_load" | ||
file: "cdnos1.cfg" | ||
image: "registry.dev.drivenets.net/devops/cdnos_dev_v19_1:19.1.0.101_dev.dev_v19_1" | ||
} | ||
model: "CDNOS" | ||
} | ||
nodes: { | ||
name: "cdnos2" | ||
vendor: DRIVENETS | ||
config: { | ||
config_file: "default" | ||
config_path: "/config_load" | ||
file: "cdnos2.cfg" | ||
image: "registry.dev.drivenets.net/devops/cdnos_dev_v19_1:19.1.0.101_dev.dev_v19_1" | ||
} | ||
model: "CDNOS" | ||
} | ||
links: { | ||
a_node: "cdnos1" | ||
a_int: "eno0" | ||
z_node: "cdnos2" | ||
z_int: "eno0" | ||
} |
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,8 @@ | ||
configure | ||
interfaces | ||
ge10-0/0/0 | ||
ipv4-address 1.1.1.1/24 | ||
admin-state enabled | ||
! | ||
! | ||
commit |
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,8 @@ | ||
configure | ||
interfaces | ||
ge10-0/0/0 | ||
ipv4-address 1.1.1.2/24 | ||
admin-state enabled | ||
! | ||
! | ||
commit |
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,35 @@ | ||
name: "cdnos-multivendor-demo" | ||
nodes: { | ||
name: "srl1" | ||
vendor: NOKIA | ||
model: "ixr6e" | ||
config:{ | ||
# when `image` is not specified under `config`, the "ghcr.io/nokia/srlinux:latest" container image is used by default | ||
# SR Linux can accept both complete config files in JSON format, or partial/full config snippets in the CLI format. | ||
# nodes are configured with a partial config snippet in CLI format that adds configuration relevant for this example lab. | ||
file: "srlinux.cfg" | ||
} | ||
interfaces: { | ||
key: "e1-1" | ||
value: { | ||
name: "ethernet-1/1" | ||
} | ||
} | ||
} | ||
nodes: { | ||
name: "cdnos1" | ||
vendor: DRIVENETS | ||
config: { | ||
config_path: "/config_load" | ||
config_file: "default" | ||
file: "cdnos2.cfg" | ||
image: "registry.dev.drivenets.net/devops/cdnos_dev_v19_1:19.1.0.101_dev.dev_v19_1" | ||
} | ||
model: "CDNOS" | ||
} | ||
links: { | ||
a_node: "srl1" | ||
a_int: "e1-1" | ||
z_node: "cdnos1" | ||
z_int: "eno0" | ||
} |
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 @@ | ||
../multivendor/srlinux.cfg |
Oops, something went wrong.