diff --git a/wan-lab/.clab-wan-lab01.clab.yml.bak b/wan-lab/.clab-wan-lab01.clab.yml.bak index 38f67b8..7bcc178 100644 --- a/wan-lab/.clab-wan-lab01.clab.yml.bak +++ b/wan-lab/.clab-wan-lab01.clab.yml.bak @@ -10,25 +10,29 @@ topology: nodes: #Core Routers p001: + #Loopback 172.18.1.1/32 kind: vr-vjunosswitch image: vrnetlab/vr-vjunosswitch:23.2R1.14 startup-config: p001.junos.cfg p002: - kind: srl - image: ghcr.io/nokia/srlinux:23.7.1 - startup-config: p002.srl.cli + #Loopback 172.18.1.2/32 + kind: vr-vjunosswitch + image: vrnetlab/vr-vjunosswitch:23.2R1.14 + startup-config: p002.junos.cfg #PE Routers pe001: + #Loopback 172.18.10.1/32 kind: vr-vjunosswitch image: vrnetlab/vr-vjunosswitch:23.2R1.14 startup-config: pe001.junos.cfg pe002: + #Loopback 172.18.10.2/32 kind: vr-vjunosswitch image: vrnetlab/vr-vjunosswitch:23.2R1.14 - startup-config: pe002.junos.cfgg + startup-config: pe002.junos.cfg #Clients client1: @@ -39,15 +43,15 @@ topology: links: #Core Interconnect - - endpoints: ["p001:eth1", "p002:e1-1"] + - endpoints: ["p001:eth1", "p002:eth1"] # 172.16.1.0/30 #Core <-> PE #<-p001-> - - endpoints: ["p001:eth2", "pe001:eth1"] - - endpoints: ["p001:eth3", "pe002:eth1"] + - endpoints: ["p001:eth2", "pe001:eth1"] # 172.16.2.0/30 + - endpoints: ["p001:eth3", "pe002:eth1"] # 172.16.2.4/30 #<-p002-> - - endpoints: ["p002:e1-2", "pe001:eth2"] - - endpoints: ["p002:e1-3", "pe002:eth2"] + - endpoints: ["p002:eth2", "pe001:eth2"] # 172.16.3.0/30 + - endpoints: ["p002:eth3", "pe002:eth2"] # 172.16.3.4/30 #pe <-> clients - endpoints: ["pe001:eth3", "client1:eth1"] diff --git a/wan-lab/clab-clab-wan-lab01/ansible-inventory.yml b/wan-lab/clab-clab-wan-lab01/ansible-inventory.yml index de67c8c..78fb4b6 100644 --- a/wan-lab/clab-clab-wan-lab01/ansible-inventory.yml +++ b/wan-lab/clab-clab-wan-lab01/ansible-inventory.yml @@ -8,18 +8,16 @@ all: linux: hosts: clab-clab-wan-lab01-client1: - ansible_host: 172.20.20.4 - clab-clab-wan-lab01-client2: - ansible_host: 172.20.20.5 - srl: - hosts: - clab-clab-wan-lab01-p002: ansible_host: 172.20.20.2 + clab-clab-wan-lab01-client2: + ansible_host: 172.20.20.3 vr-vjunosswitch: hosts: clab-clab-wan-lab01-p001: - ansible_host: 172.20.20.3 - clab-clab-wan-lab01-pe001: - ansible_host: 172.20.20.7 - clab-clab-wan-lab01-pe002: ansible_host: 172.20.20.6 + clab-clab-wan-lab01-p002: + ansible_host: 172.20.20.5 + clab-clab-wan-lab01-pe001: + ansible_host: 172.20.20.4 + clab-clab-wan-lab01-pe002: + ansible_host: 172.20.20.7 diff --git a/wan-lab/clab-clab-wan-lab01/p001/config/startup-config.cfg b/wan-lab/clab-clab-wan-lab01/p001/config/startup-config.cfg index e69de29..adf2f05 100644 --- a/wan-lab/clab-clab-wan-lab01/p001/config/startup-config.cfg +++ b/wan-lab/clab-clab-wan-lab01/p001/config/startup-config.cfg @@ -0,0 +1,30 @@ +interfaces { + ge-0/0/0 { + unit 0 { + family inet { + address 172.16.1.1/30; + } + } + } + ge-0/0/1 { + unit 0 { + family inet { + address 172.16.2.1/30; + } + } + } + ge-0/0/2 { + unit 0 { + family inet { + address 172.16.2.5/30; + } + } + } + lo0 { + unit 0 { + family inet { + address 172.18.1.1/32; + } + } + } +} \ No newline at end of file diff --git a/wan-lab/clab-clab-wan-lab01/p002/config/startup-config.cfg b/wan-lab/clab-clab-wan-lab01/p002/config/startup-config.cfg new file mode 100644 index 0000000..210c508 --- /dev/null +++ b/wan-lab/clab-clab-wan-lab01/p002/config/startup-config.cfg @@ -0,0 +1,30 @@ +interfaces { + ge-0/0/0 { + unit 0 { + family inet { + address 172.16.1.2/30; + } + } + } + ge-0/0/1 { + unit 0 { + family inet { + address 172.16.3.1/30; + } + } + } + ge-0/0/2 { + unit 0 { + family inet { + address 172.16.3.5/30; + } + } + } + lo0 { + unit 0 { + family inet { + address 172.18.1.2/32; + } + } + } +} \ No newline at end of file diff --git a/wan-lab/clab-clab-wan-lab01/pe001/config/startup-config.cfg b/wan-lab/clab-clab-wan-lab01/pe001/config/startup-config.cfg index e69de29..e5bfe0b 100644 --- a/wan-lab/clab-clab-wan-lab01/pe001/config/startup-config.cfg +++ b/wan-lab/clab-clab-wan-lab01/pe001/config/startup-config.cfg @@ -0,0 +1,23 @@ +interfaces { + ge-0/0/0 { + unit 0 { + family inet { + address 172.16.2.2/30; + } + } + } + ge-0/0/1 { + unit 0 { + family inet { + address 172.16.3.2/30; + } + } + } + lo0 { + unit 0 { + family inet { + address 172.18.10.1/32; + } + } + } +} \ No newline at end of file diff --git a/wan-lab/clab-clab-wan-lab01/pe002/config/startup-config.cfg b/wan-lab/clab-clab-wan-lab01/pe002/config/startup-config.cfg index e69de29..b0188ff 100644 --- a/wan-lab/clab-clab-wan-lab01/pe002/config/startup-config.cfg +++ b/wan-lab/clab-clab-wan-lab01/pe002/config/startup-config.cfg @@ -0,0 +1,23 @@ +interfaces { + ge-0/0/0 { + unit 0 { + family inet { + address 172.16.2.6/30; + } + } + } + ge-0/0/1 { + unit 0 { + family inet { + address 172.16.3.6/30; + } + } + } + lo0 { + unit 0 { + family inet { + address 172.18.10.2/32; + } + } + } +} \ No newline at end of file diff --git a/wan-lab/clab-clab-wan-lab01/topology-data.json b/wan-lab/clab-clab-wan-lab01/topology-data.json index 37e3abd..5d2dcb4 100644 --- a/wan-lab/clab-clab-wan-lab01/topology-data.json +++ b/wan-lab/clab-clab-wan-lab01/topology-data.json @@ -6,7 +6,7 @@ "prefix": "clab", "mgmt": { "network": "clab", - "bridge": "br-40df83b0a241", + "bridge": "br-d5a191522580", "ipv4-subnet": "172.20.20.0/24", "ipv4-gw": "172.20.20.1", "ipv6-subnet": "2001:172:20:20::/64", @@ -28,13 +28,13 @@ "image": "ghcr.io/hellt/network-multitool", "mgmt-net": "", "mgmt-intf": "", - "mgmt-ipv4-address": "172.20.20.4", + "mgmt-ipv4-address": "172.20.20.2", "mgmt-ipv4-prefix-length": 24, - "mgmt-ipv6-address": "2001:172:20:20::4", + "mgmt-ipv6-address": "2001:172:20:20::2", "mgmt-ipv6-prefix-length": 64, "mac-address": "", "labels": { - "clab-mgmt-net-bridge": "br-40df83b0a241", + "clab-mgmt-net-bridge": "br-d5a191522580", "clab-node-group": "", "clab-node-kind": "linux", "clab-node-lab-dir": "/home/herz/clab/wan-lab/clab-clab-wan-lab01/client1", @@ -69,13 +69,13 @@ "image": "ghcr.io/hellt/network-multitool", "mgmt-net": "", "mgmt-intf": "", - "mgmt-ipv4-address": "172.20.20.5", + "mgmt-ipv4-address": "172.20.20.3", "mgmt-ipv4-prefix-length": 24, - "mgmt-ipv6-address": "2001:172:20:20::5", + "mgmt-ipv6-address": "2001:172:20:20::3", "mgmt-ipv6-prefix-length": 64, "mac-address": "", "labels": { - "clab-mgmt-net-bridge": "br-40df83b0a241", + "clab-mgmt-net-bridge": "br-d5a191522580", "clab-node-group": "", "clab-node-kind": "linux", "clab-node-lab-dir": "/home/herz/clab/wan-lab/clab-clab-wan-lab01/client2", @@ -110,13 +110,13 @@ "image": "vrnetlab/vr-vjunosswitch:23.2R1.14", "mgmt-net": "", "mgmt-intf": "", - "mgmt-ipv4-address": "172.20.20.3", + "mgmt-ipv4-address": "172.20.20.6", "mgmt-ipv4-prefix-length": 24, - "mgmt-ipv6-address": "2001:172:20:20::3", + "mgmt-ipv6-address": "2001:172:20:20::6", "mgmt-ipv6-prefix-length": 64, "mac-address": "", "labels": { - "clab-mgmt-net-bridge": "br-40df83b0a241", + "clab-mgmt-net-bridge": "br-d5a191522580", "clab-node-group": "", "clab-node-kind": "vr-vjunosswitch", "clab-node-lab-dir": "/home/herz/clab/wan-lab/clab-clab-wan-lab01/p001", @@ -129,85 +129,37 @@ { "host-ip": "", "host-port": 0, - "port": 10008, + "port": 10064, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10040, + "port": 10002, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10069, + "port": 10045, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10020, + "port": 10054, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10081, + "port": 10062, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10097, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10071, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10028, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10046, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10055, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10094, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10032, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10038, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10051, + "port": 10074, "protocol": "tcp" }, { @@ -219,7 +171,349 @@ { "host-ip": "", "host-port": 0, - "port": 10022, + "port": 10034, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10065, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10091, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10006, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10008, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10016, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10085, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10094, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10036, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10082, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10084, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10019, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10097, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10099, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10093, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10095, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10013, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10014, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10032, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10040, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10010, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10098, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10003, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10068, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10072, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10012, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10052, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10083, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10087, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10028, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10041, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10050, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10011, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10058, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10096, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 5000, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10057, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10026, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10033, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10037, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10086, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 22, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 57400, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10020, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10056, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10073, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10015, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10042, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10076, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10080, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10077, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10090, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10007, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10044, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 830, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10066, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10092, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10021, "protocol": "tcp" }, { @@ -228,6 +522,18 @@ "port": 10025, "protocol": "tcp" }, + { + "host-ip": "", + "host-port": 0, + "port": 10043, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10061, + "protocol": "tcp" + }, { "host-ip": "", "host-port": 0, @@ -243,145 +549,25 @@ { "host-ip": "", "host-port": 0, - "port": 10034, + "port": 10004, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10023, + "port": 10017, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10006, + "port": 10069, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10012, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10019, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10091, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10082, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10018, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10083, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10092, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10049, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10062, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10067, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10090, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10079, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10089, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10011, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10044, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10053, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10099, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 161, - "protocol": "udp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10061, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10088, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10084, + "port": 10000, "protocol": "tcp" }, { @@ -393,26 +579,14 @@ { "host-ip": "", "host-port": 0, - "port": 10037, + "port": 10038, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10050, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10093, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10070, - "protocol": "tcp" + "port": 161, + "protocol": "udp" }, { "host-ip": "", @@ -423,7 +597,19 @@ { "host-ip": "", "host-port": 0, - "port": 10010, + "port": 10079, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10088, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10078, "protocol": "tcp" }, { @@ -435,13 +621,216 @@ { "host-ip": "", "host-port": 0, - "port": 10076, + "port": 10051, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10041, + "port": 10055, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10046, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10048, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10031, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10060, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10039, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10071, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10053, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10063, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10027, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10035, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10081, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10059, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10089, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10001, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10022, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10049, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10070, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10075, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10018, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10023, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10067, + "protocol": "tcp" + } + ] + }, + "p002": { + "index": "3", + "shortname": "p002", + "longname": "clab-clab-wan-lab01-p002", + "fqdn": "p002.clab-wan-lab01.io", + "group": "", + "labdir": "/home/herz/clab/wan-lab/clab-clab-wan-lab01/p002", + "kind": "vr-vjunosswitch", + "image": "vrnetlab/vr-vjunosswitch:23.2R1.14", + "mgmt-net": "", + "mgmt-intf": "", + "mgmt-ipv4-address": "172.20.20.5", + "mgmt-ipv4-prefix-length": 24, + "mgmt-ipv6-address": "2001:172:20:20::5", + "mgmt-ipv6-prefix-length": 64, + "mac-address": "", + "labels": { + "clab-mgmt-net-bridge": "br-d5a191522580", + "clab-node-group": "", + "clab-node-kind": "vr-vjunosswitch", + "clab-node-lab-dir": "/home/herz/clab/wan-lab/clab-clab-wan-lab01/p002", + "clab-node-name": "p002", + "clab-node-type": "", + "clab-topo-file": "/home/herz/clab/wan-lab/clab-wan-lab01.clab.yml", + "containerlab": "clab-wan-lab01" + }, + "port-bindings": [ + { + "host-ip": "", + "host-port": 0, + "port": 10057, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10083, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10093, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10014, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10049, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10060, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10067, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10037, "protocol": "tcp" }, { @@ -459,79 +848,19 @@ { "host-ip": "", "host-port": 0, - "port": 10095, + "port": 10019, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 830, + "port": 10038, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10031, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10033, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10043, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10017, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10021, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10086, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10063, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10048, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10054, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10059, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10015, + "port": 10078, "protocol": "tcp" }, { @@ -543,25 +872,7 @@ { "host-ip": "", "host-port": 0, - "port": 10085, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 5000, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10066, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10003, + "port": 10000, "protocol": "tcp" }, { @@ -573,19 +884,91 @@ { "host-ip": "", "host-port": 0, - "port": 10013, + "port": 10012, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10074, + "port": 10022, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10080, + "port": 10034, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10099, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10003, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10046, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10008, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10041, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10088, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10023, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10048, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10051, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10061, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10066, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10032, "protocol": "tcp" }, { @@ -603,121 +986,13 @@ { "host-ip": "", "host-port": 0, - "port": 10027, + "port": 10020, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10052, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10075, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 57400, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10004, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10068, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10014, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10036, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10077, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 22, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10060, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10064, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10073, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10000, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10056, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10057, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10087, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10035, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10039, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10042, + "port": 10044, "protocol": "tcp" }, { @@ -729,13 +1004,235 @@ { "host-ip": "", "host-port": 0, - "port": 10072, + "port": 161, + "protocol": "udp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10036, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10002, + "port": 10052, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10053, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10069, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10086, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10015, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10071, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10077, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10042, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10090, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10054, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 5000, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10017, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10055, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10079, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 22, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10006, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10070, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10050, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10059, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10085, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10092, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10095, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 830, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10013, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10081, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10009, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10033, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10074, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10021, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10084, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10097, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10004, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10005, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10047, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10073, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10068, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10072, "protocol": "tcp" }, { @@ -744,6 +1241,144 @@ "port": 10026, "protocol": "tcp" }, + { + "host-ip": "", + "host-port": 0, + "port": 10039, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10043, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10063, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10089, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10031, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10094, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10029, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10018, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10025, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10027, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10028, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10076, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10030, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10040, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10064, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10035, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10080, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 57400, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10002, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10010, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10011, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10024, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10062, + "protocol": "tcp" + }, { "host-ip": "", "host-port": 0, @@ -753,40 +1388,35 @@ { "host-ip": "", "host-port": 0, - "port": 10078, + "port": 10075, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10056, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10082, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10087, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10091, "protocol": "tcp" } ] }, - "p002": { - "index": "3", - "shortname": "p002", - "longname": "clab-clab-wan-lab01-p002", - "fqdn": "p002.clab-wan-lab01.io", - "group": "", - "labdir": "/home/herz/clab/wan-lab/clab-clab-wan-lab01/p002", - "kind": "srl", - "image": "ghcr.io/nokia/srlinux:23.7.1", - "mgmt-net": "", - "mgmt-intf": "", - "mgmt-ipv4-address": "172.20.20.2", - "mgmt-ipv4-prefix-length": 24, - "mgmt-ipv6-address": "2001:172:20:20::2", - "mgmt-ipv6-prefix-length": 64, - "mac-address": "", - "labels": { - "clab-mgmt-net-bridge": "br-40df83b0a241", - "clab-node-group": "", - "clab-node-kind": "srl", - "clab-node-lab-dir": "/home/herz/clab/wan-lab/clab-clab-wan-lab01/p002", - "clab-node-name": "p002", - "clab-node-type": "ixrd2", - "clab-topo-file": "/home/herz/clab/wan-lab/clab-wan-lab01.clab.yml", - "containerlab": "clab-wan-lab01" - }, - "port-bindings": [ - ] - }, "pe001": { "index": "4", "shortname": "pe001", @@ -798,13 +1428,13 @@ "image": "vrnetlab/vr-vjunosswitch:23.2R1.14", "mgmt-net": "", "mgmt-intf": "", - "mgmt-ipv4-address": "172.20.20.7", + "mgmt-ipv4-address": "172.20.20.4", "mgmt-ipv4-prefix-length": 24, - "mgmt-ipv6-address": "2001:172:20:20::7", + "mgmt-ipv6-address": "2001:172:20:20::4", "mgmt-ipv6-prefix-length": 64, "mac-address": "", "labels": { - "clab-mgmt-net-bridge": "br-40df83b0a241", + "clab-mgmt-net-bridge": "br-d5a191522580", "clab-node-group": "", "clab-node-kind": "vr-vjunosswitch", "clab-node-lab-dir": "/home/herz/clab/wan-lab/clab-clab-wan-lab01/pe001", @@ -817,175 +1447,7 @@ { "host-ip": "", "host-port": 0, - "port": 10078, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10096, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10031, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10060, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10074, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10091, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10099, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10002, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10036, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10051, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10081, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10021, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10043, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10058, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10089, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10016, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10037, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10007, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10027, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10055, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10030, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10033, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10047, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 161, - "protocol": "udp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10005, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10025, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10070, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10059, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10022, + "port": 10018, "protocol": "tcp" }, { @@ -997,121 +1459,7 @@ { "host-ip": "", "host-port": 0, - "port": 10098, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10012, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10020, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10054, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 22, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10000, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10009, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10032, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10014, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10001, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10034, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10042, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10046, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10095, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10067, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10013, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10039, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10040, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10066, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10073, + "port": 10078, "protocol": "tcp" }, { @@ -1123,13 +1471,43 @@ { "host-ip": "", "host-port": 0, - "port": 5000, + "port": 10089, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10083, + "port": 10095, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10030, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10038, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10064, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10094, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10096, "protocol": "tcp" }, { @@ -1141,7 +1519,49 @@ { "host-ip": "", "host-port": 0, - "port": 10044, + "port": 10027, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10031, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10076, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10099, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10016, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10046, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10047, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10071, "protocol": "tcp" }, { @@ -1150,12 +1570,252 @@ "port": 10068, "protocol": "tcp" }, + { + "host-ip": "", + "host-port": 0, + "port": 10088, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 22, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10012, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10039, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10063, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10017, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10022, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10032, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10042, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10056, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10092, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10003, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10054, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10069, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10077, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10093, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10010, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10041, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10048, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10049, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10052, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10080, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 830, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10001, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10025, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10084, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10087, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10013, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10058, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10059, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10024, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10082, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10000, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10026, + "protocol": "tcp" + }, { "host-ip": "", "host-port": 0, "port": 57400, "protocol": "tcp" }, + { + "host-ip": "", + "host-port": 0, + "port": 10029, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10023, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10065, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10007, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10050, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10074, + "protocol": "tcp" + }, { "host-ip": "", "host-port": 0, @@ -1171,175 +1831,19 @@ { "host-ip": "", "host-port": 0, - "port": 10048, + "port": 10053, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10072, + "port": 10073, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10084, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10090, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10017, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10049, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10064, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10045, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10065, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10092, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10079, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10006, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10024, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10029, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10052, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10088, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10010, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10056, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10063, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10076, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10087, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10094, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 830, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10023, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10061, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10018, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10019, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10038, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10069, + "port": 10091, "protocol": "tcp" }, { @@ -1351,85 +1855,79 @@ { "host-ip": "", "host-port": 0, - "port": 10015, + "port": 10020, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10053, + "port": 10006, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10057, + "port": 10002, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10093, + "port": 10033, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10008, + "port": 10037, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10041, + "port": 10079, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10080, + "port": 10005, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10082, + "port": 10098, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10062, + "port": 10083, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10050, + "port": 10021, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10003, + "port": 10034, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10026, + "port": 10036, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10028, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10077, + "port": 10043, "protocol": "tcp" }, { @@ -1441,7 +1939,139 @@ { "host-ip": "", "host-port": 0, - "port": 10071, + "port": 10019, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10070, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10067, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10015, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10081, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 161, + "protocol": "udp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10009, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10062, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10008, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10066, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 5000, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10057, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10061, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10090, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10044, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10040, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10051, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10055, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10060, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10014, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10028, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10045, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10072, "protocol": "tcp" } ] @@ -1457,13 +2087,13 @@ "image": "vrnetlab/vr-vjunosswitch:23.2R1.14", "mgmt-net": "", "mgmt-intf": "", - "mgmt-ipv4-address": "172.20.20.6", + "mgmt-ipv4-address": "172.20.20.7", "mgmt-ipv4-prefix-length": 24, - "mgmt-ipv6-address": "2001:172:20:20::6", + "mgmt-ipv6-address": "2001:172:20:20::7", "mgmt-ipv6-prefix-length": 64, "mac-address": "", "labels": { - "clab-mgmt-net-bridge": "br-40df83b0a241", + "clab-mgmt-net-bridge": "br-d5a191522580", "clab-node-group": "", "clab-node-kind": "vr-vjunosswitch", "clab-node-lab-dir": "/home/herz/clab/wan-lab/clab-clab-wan-lab01/pe002", @@ -1476,19 +2106,43 @@ { "host-ip": "", "host-port": 0, - "port": 10015, + "port": 10034, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10035, + "port": 10066, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10056, + "port": 10090, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10016, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10038, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10077, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10083, "protocol": "tcp" }, { @@ -1500,91 +2154,13 @@ { "host-ip": "", "host-port": 0, - "port": 10075, + "port": 10074, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10093, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10095, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10097, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 5000, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10000, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10027, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10032, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10014, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10026, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10029, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10037, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10039, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10054, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10066, + "port": 10094, "protocol": "tcp" }, { @@ -1599,138 +2175,6 @@ "port": 10007, "protocol": "tcp" }, - { - "host-ip": "", - "host-port": 0, - "port": 10022, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10068, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10096, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10078, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10079, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10011, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10045, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10047, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10057, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10082, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10043, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10094, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10008, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10012, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10046, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10073, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10001, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10041, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10017, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10058, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10024, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10077, - "protocol": "tcp" - }, { "host-ip": "", "host-port": 0, @@ -1740,277 +2184,7 @@ { "host-ip": "", "host-port": 0, - "port": 10076, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10030, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10033, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10016, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10040, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10048, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10059, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10067, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10013, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10052, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10089, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10072, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10088, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10003, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10031, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10018, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10019, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10070, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10074, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10084, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 161, - "protocol": "udp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10087, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10098, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 830, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10004, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10049, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10061, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10020, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10064, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10092, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10002, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10006, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10023, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10034, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10062, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10071, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10080, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10083, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10028, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10091, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10009, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10038, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10065, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10069, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10090, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10036, + "port": 10035, "protocol": "tcp" }, { @@ -2022,37 +2196,25 @@ { "host-ip": "", "host-port": 0, - "port": 10021, + "port": 10097, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10042, + "port": 10037, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10051, + "port": 10046, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10053, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10086, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 57400, + "port": 10049, "protocol": "tcp" }, { @@ -2064,13 +2226,43 @@ { "host-ip": "", "host-port": 0, - "port": 10044, + "port": 22, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10050, + "port": 10089, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10027, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10030, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10053, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10012, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10013, "protocol": "tcp" }, { @@ -2082,13 +2274,199 @@ { "host-ip": "", "host-port": 0, - "port": 10025, + "port": 10045, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10081, + "port": 10070, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10075, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10000, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10018, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10020, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10050, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10073, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10004, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10006, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10017, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10067, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10041, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10052, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 5000, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10033, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10061, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10065, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10095, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10098, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10014, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10026, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10021, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10029, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10064, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 57400, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10003, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10028, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10036, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10069, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10015, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10019, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10002, "protocol": "tcp" }, { @@ -2100,7 +2478,259 @@ { "host-ip": "", "host-port": 0, - "port": 22, + "port": 10086, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10043, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10076, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10082, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10096, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10011, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10068, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10071, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 830, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10057, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10080, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10001, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10039, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10051, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10054, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10058, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10009, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10031, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10062, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10079, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10042, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10092, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10047, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10048, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10024, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10088, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10044, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10056, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10072, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10087, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10093, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10059, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10091, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 161, + "protocol": "udp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10040, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10025, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10032, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10078, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10084, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10008, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10023, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10081, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10022, "protocol": "tcp" } ] @@ -2111,13 +2741,13 @@ "a": { "node": "p001", "interface": "eth1", - "mac": "aa:c1:ab:45:92:3b", + "mac": "aa:c1:ab:42:45:f6", "peer": "z" }, "z": { "node": "p002", - "interface": "e1-1", - "mac": "aa:c1:ab:5a:f0:ea", + "interface": "eth1", + "mac": "aa:c1:ab:fd:dd:5e", "peer": "a" } }, @@ -2125,13 +2755,13 @@ "a": { "node": "p001", "interface": "eth2", - "mac": "aa:c1:ab:c9:53:09", + "mac": "aa:c1:ab:33:06:d1", "peer": "z" }, "z": { "node": "pe001", "interface": "eth1", - "mac": "aa:c1:ab:9d:ad:95", + "mac": "aa:c1:ab:3e:c8:92", "peer": "a" } }, @@ -2139,41 +2769,41 @@ "a": { "node": "p001", "interface": "eth3", - "mac": "aa:c1:ab:59:07:31", + "mac": "aa:c1:ab:f2:85:a9", "peer": "z" }, "z": { "node": "pe002", "interface": "eth1", - "mac": "aa:c1:ab:37:a6:da", + "mac": "aa:c1:ab:cb:2f:6e", "peer": "a" } }, { "a": { "node": "p002", - "interface": "e1-2", - "mac": "aa:c1:ab:7e:22:33", + "interface": "eth2", + "mac": "aa:c1:ab:2b:97:46", "peer": "z" }, "z": { "node": "pe001", "interface": "eth2", - "mac": "aa:c1:ab:52:c0:dd", + "mac": "aa:c1:ab:b8:35:03", "peer": "a" } }, { "a": { "node": "p002", - "interface": "e1-3", - "mac": "aa:c1:ab:8c:88:ec", + "interface": "eth3", + "mac": "aa:c1:ab:af:ab:bf", "peer": "z" }, "z": { "node": "pe002", "interface": "eth2", - "mac": "aa:c1:ab:26:1f:3a", + "mac": "aa:c1:ab:80:61:a6", "peer": "a" } }, @@ -2181,13 +2811,13 @@ "a": { "node": "pe001", "interface": "eth3", - "mac": "aa:c1:ab:f7:ed:53", + "mac": "aa:c1:ab:7d:d9:66", "peer": "z" }, "z": { "node": "client1", "interface": "eth1", - "mac": "aa:c1:ab:10:ef:08", + "mac": "aa:c1:ab:21:33:3d", "peer": "a" } }, @@ -2195,13 +2825,13 @@ "a": { "node": "pe002", "interface": "eth3", - "mac": "aa:c1:ab:da:79:d5", + "mac": "aa:c1:ab:1c:50:86", "peer": "z" }, "z": { "node": "client2", "interface": "eth1", - "mac": "aa:c1:ab:ce:37:48", + "mac": "aa:c1:ab:20:94:63", "peer": "a" } } diff --git a/wan-lab/clab-wan-lab01.clab.yml b/wan-lab/clab-wan-lab01.clab.yml index 6b7fd1b..7bcc178 100644 --- a/wan-lab/clab-wan-lab01.clab.yml +++ b/wan-lab/clab-wan-lab01.clab.yml @@ -19,7 +19,7 @@ topology: #Loopback 172.18.1.2/32 kind: vr-vjunosswitch image: vrnetlab/vr-vjunosswitch:23.2R1.14 - startup-config: p002.srl.cli + startup-config: p002.junos.cfg #PE Routers pe001: @@ -32,7 +32,7 @@ topology: #Loopback 172.18.10.2/32 kind: vr-vjunosswitch image: vrnetlab/vr-vjunosswitch:23.2R1.14 - startup-config: pe002.junos.cfgg + startup-config: pe002.junos.cfg #Clients client1: