diff --git a/clab-pe-exp-7/ansible-inventory.yml b/clab-pe-exp-7/ansible-inventory.yml index 77a2f08..376076c 100644 --- a/clab-pe-exp-7/ansible-inventory.yml +++ b/clab-pe-exp-7/ansible-inventory.yml @@ -12,12 +12,26 @@ all: ansible_password: admin hosts: clab-pe-exp-7-rt1: - ansible_host: 172.20.20.5 + ansible_host: 172.20.20.8 clab-pe-exp-7-rt2: - ansible_host: 172.20.20.3 + ansible_host: 172.20.20.9 + cisco_iol: + vars: + # ansible_connection: set ansible_connection variable if required + ansible_user: admin + ansible_password: admin + hosts: + clab-pe-exp-7-sw1: + ansible_host: 172.20.20.6 + clab-pe-exp-7-sw2: + ansible_host: 172.20.20.2 linux: hosts: clab-pe-exp-7-client1: - ansible_host: 172.20.20.2 + ansible_host: 172.20.20.7 clab-pe-exp-7-client2: - ansible_host: 172.20.20.4 \ No newline at end of file + ansible_host: 172.20.20.5 + clab-pe-exp-7-client3: + ansible_host: 172.20.20.4 + clab-pe-exp-7-client4: + ansible_host: 172.20.20.3 \ No newline at end of file diff --git a/clab-pe-exp-7/authorized_keys b/clab-pe-exp-7/authorized_keys index fdbc113..a6c3e5b 100644 --- a/clab-pe-exp-7/authorized_keys +++ b/clab-pe-exp-7/authorized_keys @@ -1,3 +1,3 @@ -ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDSFe9QlnPPZ77cA1fMgPZ7VqhgN7vb2mV7HkXZwAttzAceOBZzCv6jl8lQoUDQhUy3spZRTmaQC/6CWJg0LmFLRk5STfTJGxj+3Qp/roJb4tLG4WOXFphSOBzY5DklCfU1jvIvR0lHRH/FcqjiGCNbg0SQK3ijYLPCsG0+NeNacMQri+/GkSd5wvJPOug4pCYuzf8x6PzbHa9FGTXXOMkVKrMQcHF+tAiU4yWBqjv/lshH6aEA+E3p8Cznfu8xxiBu4pLad0Ed7i5PeXUH5gHXF+bRwHKtyAjJAUpunVg7hgyGmXGl7D+yHcf60M0bd/0LZztJBj1MKxu50QluGIAQuBsK5Zdf97zkCuTbwypTpLx/rIj0tVX7FPhdjO2ubXa11aKhtTdaOq/0Jx24MgTJZTqv3TN+abmtPnDuAlZUhbxKEX408dNgQvUnH0fRwfsdkoYOhurNV4B7Rz7tYZ7cKhC/uHQDNslw8Z7R52JlMprDBxT1ap5jvtOhIo/7WKc= ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHbR12oyqkSYcxGmqRoH4hI/RYChbqPF8KFBmeik1twu ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILLRRYg0z5DoKq+67DeZFUo+dOqz2GedGKHHjGHiMMNo +ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDSFe9QlnPPZ77cA1fMgPZ7VqhgN7vb2mV7HkXZwAttzAceOBZzCv6jl8lQoUDQhUy3spZRTmaQC/6CWJg0LmFLRk5STfTJGxj+3Qp/roJb4tLG4WOXFphSOBzY5DklCfU1jvIvR0lHRH/FcqjiGCNbg0SQK3ijYLPCsG0+NeNacMQri+/GkSd5wvJPOug4pCYuzf8x6PzbHa9FGTXXOMkVKrMQcHF+tAiU4yWBqjv/lshH6aEA+E3p8Cznfu8xxiBu4pLad0Ed7i5PeXUH5gHXF+bRwHKtyAjJAUpunVg7hgyGmXGl7D+yHcf60M0bd/0LZztJBj1MKxu50QluGIAQuBsK5Zdf97zkCuTbwypTpLx/rIj0tVX7FPhdjO2ubXa11aKhtTdaOq/0Jx24MgTJZTqv3TN+abmtPnDuAlZUhbxKEX408dNgQvUnH0fRwfsdkoYOhurNV4B7Rz7tYZ7cKhC/uHQDNslw8Z7R52JlMprDBxT1ap5jvtOhIo/7WKc= diff --git a/clab-pe-exp-7/nornir-simple-inventory.yml b/clab-pe-exp-7/nornir-simple-inventory.yml index 0a1a89b..5e31f13 100644 --- a/clab-pe-exp-7/nornir-simple-inventory.yml +++ b/clab-pe-exp-7/nornir-simple-inventory.yml @@ -3,19 +3,39 @@ rt1: username: admin password: admin platform: cisco_c8000v - hostname: 172.20.20.5 + hostname: 172.20.20.8 rt2: username: admin password: admin platform: cisco_c8000v - hostname: 172.20.20.3 + hostname: 172.20.20.9 +sw1: + username: admin + password: admin + platform: cisco_iol + hostname: 172.20.20.6 +sw2: + username: admin + password: admin + platform: cisco_iol + hostname: 172.20.20.2 client1: username: password: platform: linux - hostname: 172.20.20.2 + hostname: 172.20.20.7 client2: username: password: platform: linux - hostname: 172.20.20.4 \ No newline at end of file + hostname: 172.20.20.5 +client3: + username: + password: + platform: linux + hostname: 172.20.20.4 +client4: + username: + password: + platform: linux + hostname: 172.20.20.3 \ No newline at end of file diff --git a/clab-pe-exp-7/rt1/config/startup-config.cfg b/clab-pe-exp-7/rt1/config/startup-config.cfg new file mode 100755 index 0000000..4498275 --- /dev/null +++ b/clab-pe-exp-7/rt1/config/startup-config.cfg @@ -0,0 +1,262 @@ +Building configuration... + +Current configuration : 6573 bytes +! +! Last configuration change at 15:21:27 UTC Tue Apr 21 2026 by admin +! +version 17.13 +service timestamps debug datetime msec +service timestamps log datetime msec +platform qfp utilization monitor load 80 +platform punt-keepalive disable-kernel-core +platform sslvpn use-pd +platform console serial +! +hostname rt1 +! +boot-start-marker +boot-end-marker +! +! +vrf definition clab-mgmt + description Containerlab management VRF (DO NOT DELETE) + ! + address-family ipv4 + exit-address-family + ! + address-family ipv6 + exit-address-family +! +no aaa new-model +! +! +! +! +! +! +! +! +! +! +! +! +ip domain name example.com +! +! +! +login on-success log +! +! +subscriber templating +ipv6 unicast-routing +! +! +! +! +! +! +! +! +! +! +! +! +pae +! +! +crypto pki trustpoint SLA-TrustPoint + enrollment pkcs12 + revocation-check crl + hash sha256 +! +crypto pki trustpoint TP-self-signed-2527443348 + enrollment selfsigned + subject-name cn=IOS-Self-Signed-Certificate-2527443348 + revocation-check none + rsakeypair TP-self-signed-2527443348 + hash sha256 +! +! +crypto pki certificate chain SLA-TrustPoint + certificate ca 01 + 30820321 30820209 A0030201 02020101 300D0609 2A864886 F70D0101 0B050030 + 32310E30 0C060355 040A1305 43697363 6F312030 1E060355 04031317 43697363 + 6F204C69 63656E73 696E6720 526F6F74 20434130 1E170D31 33303533 30313934 + 3834375A 170D3338 30353330 31393438 34375A30 32310E30 0C060355 040A1305 + 43697363 6F312030 1E060355 04031317 43697363 6F204C69 63656E73 696E6720 + 526F6F74 20434130 82012230 0D06092A 864886F7 0D010101 05000382 010F0030 + 82010A02 82010100 A6BCBD96 131E05F7 145EA72C 2CD686E6 17222EA1 F1EFF64D + CBB4C798 212AA147 C655D8D7 9471380D 8711441E 1AAF071A 9CAE6388 8A38E520 + 1C394D78 462EF239 C659F715 B98C0A59 5BBB5CBD 0CFEBEA3 700A8BF7 D8F256EE + 4AA4E80D DB6FD1C9 60B1FD18 FFC69C96 6FA68957 A2617DE7 104FDC5F EA2956AC + 7390A3EB 2B5436AD C847A2C5 DAB553EB 69A9A535 58E9F3E3 C0BD23CF 58BD7188 + 68E69491 20F320E7 948E71D7 AE3BCC84 F10684C7 4BC8E00F 539BA42B 42C68BB7 + C7479096 B4CB2D62 EA2F505D C7B062A4 6811D95B E8250FC4 5D5D5FB8 8F27D191 + C55F0D76 61F9A4CD 3D992327 A8BB03BD 4E6D7069 7CBADF8B DF5F4368 95135E44 + DFC7C6CF 04DD7FD1 02030100 01A34230 40300E06 03551D0F 0101FF04 04030201 + 06300F06 03551D13 0101FF04 05300301 01FF301D 0603551D 0E041604 1449DC85 + 4B3D31E5 1B3E6A17 606AF333 3D3B4C73 E8300D06 092A8648 86F70D01 010B0500 + 03820101 00507F24 D3932A66 86025D9F E838AE5C 6D4DF6B0 49631C78 240DA905 + 604EDCDE FF4FED2B 77FC460E CD636FDB DD44681E 3A5673AB 9093D3B1 6C9E3D8B + D98987BF E40CBD9E 1AECA0C2 2189BB5C 8FA85686 CD98B646 5575B146 8DFC66A8 + 467A3DF4 4D565700 6ADF0F0D CF835015 3C04FF7C 21E878AC 11BA9CD2 55A9232C + 7CA7B7E6 C1AF74F6 152E99B7 B1FCF9BB E973DE7F 5BDDEB86 C71E3B49 1765308B + 5FB0DA06 B92AFE7F 494E8A9E 07B85737 F3A58BE1 1A48A229 C37C1E69 39F08678 + 80DDCD16 D6BACECA EEBC7CF9 8428787B 35202CDC 60E4616A B623CDBD 230E3AFB + 418616A9 4093E049 4D10AB75 27E86F73 932E35B5 8862FDAE 0275156F 719BB2F0 + D697DF7F 28 + quit +crypto pki certificate chain TP-self-signed-2527443348 + certificate self-signed 01 + 30820330 30820218 A0030201 02020101 300D0609 2A864886 F70D0101 0B050030 + 31312F30 2D060355 04030C26 494F532D 53656C66 2D536967 6E65642D 43657274 + 69666963 6174652D 32353237 34343333 3438301E 170D3236 30343231 31353139 + 35305A17 0D333630 34323031 35313935 305A3031 312F302D 06035504 030C2649 + 4F532D53 656C662D 5369676E 65642D43 65727469 66696361 74652D32 35323734 + 34333334 38308201 22300D06 092A8648 86F70D01 01010500 0382010F 00308201 + 0A028201 0100C794 0244F6BE 5A0E8EC1 3D0A0163 1CD6FFF6 F25157A3 CB997E1C + BC52ADF9 94C031A2 E5DDF66A FD40B40C 7C8EEB9D DC649C9B 2E0A2AEE 37FB0DD2 + 7B37AFE2 E4FE76E2 DD819BB2 BD37EBDF D8CA0B04 01552C8B FB1BB2DD 790BEE77 + CBE53D35 0E73C650 2B51078A 1014DF99 B0C2DC77 AE1E093D 56183450 C1EEE4D4 + 7BCE740C 115F0173 6E35E18A D16B8D11 63E3AE7D F517A17F 5C747F4F 21705915 + 2FF4FD71 9E477661 66F6F79C 8FB91CF4 681B2D7A 5C77755B 5D0C7A57 5BF67E19 + 5CA28ECC B3A83C57 2E800811 7CD9CC19 21D90F3A 66C3C242 FB03499A 51255515 + 66418001 8802B00F D5210EE2 39857BEC 408992C8 98ABE766 4C778800 E4957EA2 + CE117994 9BA70203 010001A3 53305130 1D060355 1D0E0416 0414B18D 8F36514F + 8E54910F EED18E93 8318C741 44E4301F 0603551D 23041830 168014B1 8D8F3651 + 4F8E5491 0FEED18E 938318C7 4144E430 0F060355 1D130101 FF040530 030101FF + 300D0609 2A864886 F70D0101 0B050003 82010100 6297789D B46B0D96 830D9BB9 + D29FD184 A6B74611 196EC00C A26978A0 4E321AFD 964B55B8 93C38E80 6514A850 + B670BAA3 12EB8F1A F6F76F50 F9DDDBAC 4445C1F6 8CF565C4 DAD4965D 5B2270EC + 2B993C25 8BB0EB7F 75E3EAE8 B8F36B66 3F49B524 5CDF2BC5 60B9B5C0 AC4F56A3 + 04B11938 A335598E 1F2F1E6F 2F19C9F3 6556D091 DF2A2E85 2A9D144E 015DB801 + 2D504FC8 F29ECCB5 DD6014E5 569E5611 9E4946BA E73EC04F BE4412E5 2057D395 + 6444839B 7AC9C828 848EB03D 9E3A33A0 71795F9C 2CB8C866 A8305B6E 08D7219D + 81CFB37D 052218A8 73FAD394 A28C6339 449237D5 B96FE2DF 846B3E7B 2BB7C70B + 918BB2BE 2B40DFAC C8D0500E 76F7F1B1 059AB499 + quit +! +! +! +! +! +! +! +! +! +license udi pid C8000V sn 9YSATP0T8WR +license boot level network-premier addon dna-premier +memory free low-watermark processor 201711 +diagnostic bootup level minimal +! +! +spanning-tree extend system-id +! +! +username admin privilege 15 password 0 admin +! +redundancy +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +interface GigabitEthernet1 + description Containerlab management interface + vrf forwarding clab-mgmt + ip address 10.0.0.15 255.255.255.0 + negotiation auto + ipv6 address 2001:DB8::2/64 + no mop enabled + no mop sysid +! +interface GigabitEthernet2 + no ip address + negotiation auto + no mop enabled + no mop sysid +! +interface GigabitEthernet2.10 + encapsulation dot1Q 10 + ip address 10.0.10.1 255.255.255.0 +! +interface GigabitEthernet3 + no ip address + negotiation auto + no mop enabled + no mop sysid +! +interface GigabitEthernet3.20 + encapsulation dot1Q 20 + ip address 10.0.20.253 255.255.255.0 +! +ip forward-protocol nd +! +no ip http server +ip http secure-server +ip route vrf clab-mgmt 0.0.0.0 0.0.0.0 10.0.0.2 +ip ssh maxstartups 128 +ip ssh bulk-mode 131072 +ip ssh server algorithm mac hmac-sha2-512 +! +! +ipv6 route vrf clab-mgmt ::/0 2001:DB8::1 +! +! +! +! +control-plane +! +! +mgcp behavior rsip-range tgcp-only +mgcp behavior comedia-role none +mgcp behavior comedia-check-media-src disable +mgcp behavior comedia-sdp-force disable +! +mgcp profile default +! +! +! +! +! +! +line con 0 + logging synchronous + stopbits 1 +line aux 0 +line vty 0 4 + logging synchronous + login local + length 0 + transport input all +! +! +netconf detailed-error +netconf max-sessions 16 +! +! +! +! +! +netconf-yang +restconf +end \ No newline at end of file diff --git a/clab-pe-exp-7/rt2/config/startup-config.cfg b/clab-pe-exp-7/rt2/config/startup-config.cfg new file mode 100755 index 0000000..9f46718 --- /dev/null +++ b/clab-pe-exp-7/rt2/config/startup-config.cfg @@ -0,0 +1,262 @@ +Building configuration... + +Current configuration : 6573 bytes +! +! Last configuration change at 15:24:43 UTC Tue Apr 21 2026 by admin +! +version 17.13 +service timestamps debug datetime msec +service timestamps log datetime msec +platform qfp utilization monitor load 80 +platform punt-keepalive disable-kernel-core +platform sslvpn use-pd +platform console serial +! +hostname rt2 +! +boot-start-marker +boot-end-marker +! +! +vrf definition clab-mgmt + description Containerlab management VRF (DO NOT DELETE) + ! + address-family ipv4 + exit-address-family + ! + address-family ipv6 + exit-address-family +! +no aaa new-model +! +! +! +! +! +! +! +! +! +! +! +! +ip domain name example.com +! +! +! +login on-success log +! +! +subscriber templating +ipv6 unicast-routing +! +! +! +! +! +! +! +! +! +! +! +! +pae +! +! +crypto pki trustpoint SLA-TrustPoint + enrollment pkcs12 + revocation-check crl + hash sha256 +! +crypto pki trustpoint TP-self-signed-2527443348 + enrollment selfsigned + subject-name cn=IOS-Self-Signed-Certificate-2527443348 + revocation-check none + rsakeypair TP-self-signed-2527443348 + hash sha256 +! +! +crypto pki certificate chain SLA-TrustPoint + certificate ca 01 + 30820321 30820209 A0030201 02020101 300D0609 2A864886 F70D0101 0B050030 + 32310E30 0C060355 040A1305 43697363 6F312030 1E060355 04031317 43697363 + 6F204C69 63656E73 696E6720 526F6F74 20434130 1E170D31 33303533 30313934 + 3834375A 170D3338 30353330 31393438 34375A30 32310E30 0C060355 040A1305 + 43697363 6F312030 1E060355 04031317 43697363 6F204C69 63656E73 696E6720 + 526F6F74 20434130 82012230 0D06092A 864886F7 0D010101 05000382 010F0030 + 82010A02 82010100 A6BCBD96 131E05F7 145EA72C 2CD686E6 17222EA1 F1EFF64D + CBB4C798 212AA147 C655D8D7 9471380D 8711441E 1AAF071A 9CAE6388 8A38E520 + 1C394D78 462EF239 C659F715 B98C0A59 5BBB5CBD 0CFEBEA3 700A8BF7 D8F256EE + 4AA4E80D DB6FD1C9 60B1FD18 FFC69C96 6FA68957 A2617DE7 104FDC5F EA2956AC + 7390A3EB 2B5436AD C847A2C5 DAB553EB 69A9A535 58E9F3E3 C0BD23CF 58BD7188 + 68E69491 20F320E7 948E71D7 AE3BCC84 F10684C7 4BC8E00F 539BA42B 42C68BB7 + C7479096 B4CB2D62 EA2F505D C7B062A4 6811D95B E8250FC4 5D5D5FB8 8F27D191 + C55F0D76 61F9A4CD 3D992327 A8BB03BD 4E6D7069 7CBADF8B DF5F4368 95135E44 + DFC7C6CF 04DD7FD1 02030100 01A34230 40300E06 03551D0F 0101FF04 04030201 + 06300F06 03551D13 0101FF04 05300301 01FF301D 0603551D 0E041604 1449DC85 + 4B3D31E5 1B3E6A17 606AF333 3D3B4C73 E8300D06 092A8648 86F70D01 010B0500 + 03820101 00507F24 D3932A66 86025D9F E838AE5C 6D4DF6B0 49631C78 240DA905 + 604EDCDE FF4FED2B 77FC460E CD636FDB DD44681E 3A5673AB 9093D3B1 6C9E3D8B + D98987BF E40CBD9E 1AECA0C2 2189BB5C 8FA85686 CD98B646 5575B146 8DFC66A8 + 467A3DF4 4D565700 6ADF0F0D CF835015 3C04FF7C 21E878AC 11BA9CD2 55A9232C + 7CA7B7E6 C1AF74F6 152E99B7 B1FCF9BB E973DE7F 5BDDEB86 C71E3B49 1765308B + 5FB0DA06 B92AFE7F 494E8A9E 07B85737 F3A58BE1 1A48A229 C37C1E69 39F08678 + 80DDCD16 D6BACECA EEBC7CF9 8428787B 35202CDC 60E4616A B623CDBD 230E3AFB + 418616A9 4093E049 4D10AB75 27E86F73 932E35B5 8862FDAE 0275156F 719BB2F0 + D697DF7F 28 + quit +crypto pki certificate chain TP-self-signed-2527443348 + certificate self-signed 01 + 30820330 30820218 A0030201 02020101 300D0609 2A864886 F70D0101 0B050030 + 31312F30 2D060355 04030C26 494F532D 53656C66 2D536967 6E65642D 43657274 + 69666963 6174652D 32353237 34343333 3438301E 170D3236 30343231 31353139 + 35315A17 0D333630 34323031 35313935 315A3031 312F302D 06035504 030C2649 + 4F532D53 656C662D 5369676E 65642D43 65727469 66696361 74652D32 35323734 + 34333334 38308201 22300D06 092A8648 86F70D01 01010500 0382010F 00308201 + 0A028201 0100B6D4 74CA17BD 1656D149 1E68CA1F 001DC64B 04ED8850 8802DCCD + C19EDF07 AEEDEBE9 E3D8330D C24A27B3 1B42790F BB940DAE 17C14D1F 6D13E672 + 5DA79C20 538DD478 D4DE0229 A5B1DE39 55C4F034 D09223D6 8FE51B79 36ACB5DE + 46929FD8 6291645F 0D6BD506 15C6183F 2FAD85CD D2AA17EB C658961E 3747BCE6 + 3031176C 8B70EDC7 93C069FE C3B8D214 FEAA0EB5 3EC1B925 BEAD6E1F 856869C2 + D8E7FD66 764B8C76 3B1D000C E0E302AF CD24A7E4 095152FB 11915E2D 6D4BD6FE + A831C4B3 666F86A9 BA82F171 8784C1E8 B0FAEA5C 86DED4AC 5EDBEE9F 78BBA066 + 5AB217CF 72B167FB 8B353362 7913D65B B94543A0 51812DBC 0CEAA361 E04BCA9F + 5BABBE04 FB490203 010001A3 53305130 1D060355 1D0E0416 04146C9F 98CB36A3 + 7373346C D803EFCD A652E702 2BC6301F 0603551D 23041830 1680146C 9F98CB36 + A3737334 6CD803EF CDA652E7 022BC630 0F060355 1D130101 FF040530 030101FF + 300D0609 2A864886 F70D0101 0B050003 82010100 86299508 8964F51C 90E11973 + 39F9FBCF 008BDA04 DEEB45A6 986DB19E AD76CA73 ADE516F6 163454CF C4002BD3 + 7FC57D51 D7689910 FB0A2E60 CD90A5BA F09A84B4 FABC29AC 76D66CD2 721EC6DA + C7C54C17 38BBEB21 8D58F9D5 C49A1720 B4D16D6C A4E0C2A5 2AF86B25 FE32396A + 89D40057 7531E38F B7602C12 67C3CD64 A001463C 5CC98D9F 60B1C70C 46280880 + 7E70E7A0 AF158749 DAE93115 34FC8382 4680D964 8836675B C63D97F4 358992C9 + CC70763B E3FF6FFD 8A82EA42 70001E46 5FF9C231 7549F5F8 B12E7A2D D36AB8D0 + F067F6F7 2745A9D2 3D47194F 41453819 91A2DE9A CF269BBA 742083BC C3942864 + 04632888 E511F166 3BC23C09 52688518 EA455A74 + quit +! +! +! +! +! +! +! +! +! +license udi pid C8000V sn 9YSATP0T8WR +license boot level network-premier addon dna-premier +memory free low-watermark processor 201711 +diagnostic bootup level minimal +! +! +spanning-tree extend system-id +! +! +username admin privilege 15 password 0 admin +! +redundancy +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +interface GigabitEthernet1 + description Containerlab management interface + vrf forwarding clab-mgmt + ip address 10.0.0.15 255.255.255.0 + negotiation auto + ipv6 address 2001:DB8::2/64 + no mop enabled + no mop sysid +! +interface GigabitEthernet2 + no ip address + negotiation auto + no mop enabled + no mop sysid +! +interface GigabitEthernet2.10 + encapsulation dot1Q 10 + ip address 10.0.10.2 255.255.255.0 +! +interface GigabitEthernet3 + no ip address + negotiation auto + no mop enabled + no mop sysid +! +interface GigabitEthernet3.20 + encapsulation dot1Q 20 + ip address 10.0.20.254 255.255.255.0 +! +ip forward-protocol nd +! +no ip http server +ip http secure-server +ip route vrf clab-mgmt 0.0.0.0 0.0.0.0 10.0.0.2 +ip ssh maxstartups 128 +ip ssh bulk-mode 131072 +ip ssh server algorithm mac hmac-sha2-512 +! +! +ipv6 route vrf clab-mgmt ::/0 2001:DB8::1 +! +! +! +! +control-plane +! +! +mgcp behavior rsip-range tgcp-only +mgcp behavior comedia-role none +mgcp behavior comedia-check-media-src disable +mgcp behavior comedia-sdp-force disable +! +mgcp profile default +! +! +! +! +! +! +line con 0 + logging synchronous + stopbits 1 +line aux 0 +line vty 0 4 + logging synchronous + login local + length 0 + transport input all +! +! +netconf detailed-error +netconf max-sessions 16 +! +! +! +! +! +netconf-yang +restconf +end \ No newline at end of file diff --git a/clab-pe-exp-7/sw1/NETMAP b/clab-pe-exp-7/sw1/NETMAP new file mode 100644 index 0000000..e8ee624 --- /dev/null +++ b/clab-pe-exp-7/sw1/NETMAP @@ -0,0 +1,4 @@ +7:0/0 513:0/0 +7:0/1 513:0/1 +7:0/2 513:0/2 +7:0/3 513:0/3 diff --git a/clab-pe-exp-7/sw1/boot_config.txt b/clab-pe-exp-7/sw1/boot_config.txt new file mode 100644 index 0000000..ae02343 --- /dev/null +++ b/clab-pe-exp-7/sw1/boot_config.txt @@ -0,0 +1,54 @@ +hostname sw1 +! +no aaa new-model +! +ip domain name lab +! +ip cef +! +ipv6 unicast-routing +! +no ip domain lookup +! +username admin privilege 15 secret admin +! +vrf definition clab-mgmt + description clab-mgmt + address-family ipv4 + ! + address-family ipv6 + ! +! +interface Ethernet0/0 + + no switchport + + vrf forwarding clab-mgmt + description clab-mgmt + ip address 172.20.20.6 255.255.255.0 + ipv6 address 3fff:172:20:20::6/64 + no shutdown +! +interface Ethernet0/1 + no shutdown +! +interface Ethernet0/2 + no shutdown +! +interface Ethernet0/3 + no shutdown +! +ip forward-protocol nd +! +ip route vrf clab-mgmt 0.0.0.0 0.0.0.0 Ethernet0/0 172.20.20.1 +ipv6 route vrf clab-mgmt ::/0 Ethernet0/0 3fff:172:20:20::1 +! +ip ssh version 2 +crypto key generate rsa modulus 2048 +! +line vty 0 4 + login local + transport input ssh +! + +end diff --git a/clab-pe-exp-7/sw1/iouyap.ini b/clab-pe-exp-7/sw1/iouyap.ini new file mode 100644 index 0000000..427e47e --- /dev/null +++ b/clab-pe-exp-7/sw1/iouyap.ini @@ -0,0 +1,11 @@ +[default] +base_port = 49000 +netmap = /iol/NETMAP +[513:0/0] +eth_dev = eth0 +[513:0/1] +eth_dev = eth1 +[513:0/2] +eth_dev = eth2 +[513:0/3] +eth_dev = eth3 diff --git a/clab-pe-exp-7/sw1/nvram_00007 b/clab-pe-exp-7/sw1/nvram_00007 new file mode 100644 index 0000000..ea540d4 Binary files /dev/null and b/clab-pe-exp-7/sw1/nvram_00007 differ diff --git a/clab-pe-exp-7/sw2/NETMAP b/clab-pe-exp-7/sw2/NETMAP new file mode 100644 index 0000000..c1330ed --- /dev/null +++ b/clab-pe-exp-7/sw2/NETMAP @@ -0,0 +1,4 @@ +8:0/0 513:0/0 +8:0/1 513:0/1 +8:0/2 513:0/2 +8:0/3 513:0/3 diff --git a/clab-pe-exp-7/sw2/boot_config.txt b/clab-pe-exp-7/sw2/boot_config.txt new file mode 100644 index 0000000..be19a19 --- /dev/null +++ b/clab-pe-exp-7/sw2/boot_config.txt @@ -0,0 +1,54 @@ +hostname sw2 +! +no aaa new-model +! +ip domain name lab +! +ip cef +! +ipv6 unicast-routing +! +no ip domain lookup +! +username admin privilege 15 secret admin +! +vrf definition clab-mgmt + description clab-mgmt + address-family ipv4 + ! + address-family ipv6 + ! +! +interface Ethernet0/0 + + no switchport + + vrf forwarding clab-mgmt + description clab-mgmt + ip address 172.20.20.2 255.255.255.0 + ipv6 address 3fff:172:20:20::2/64 + no shutdown +! +interface Ethernet0/1 + no shutdown +! +interface Ethernet0/2 + no shutdown +! +interface Ethernet0/3 + no shutdown +! +ip forward-protocol nd +! +ip route vrf clab-mgmt 0.0.0.0 0.0.0.0 Ethernet0/0 172.20.20.1 +ipv6 route vrf clab-mgmt ::/0 Ethernet0/0 3fff:172:20:20::1 +! +ip ssh version 2 +crypto key generate rsa modulus 2048 +! +line vty 0 4 + login local + transport input ssh +! + +end diff --git a/clab-pe-exp-7/sw2/iouyap.ini b/clab-pe-exp-7/sw2/iouyap.ini new file mode 100644 index 0000000..427e47e --- /dev/null +++ b/clab-pe-exp-7/sw2/iouyap.ini @@ -0,0 +1,11 @@ +[default] +base_port = 49000 +netmap = /iol/NETMAP +[513:0/0] +eth_dev = eth0 +[513:0/1] +eth_dev = eth1 +[513:0/2] +eth_dev = eth2 +[513:0/3] +eth_dev = eth3 diff --git a/clab-pe-exp-7/sw2/nvram_00008 b/clab-pe-exp-7/sw2/nvram_00008 new file mode 100644 index 0000000..3eb9eff Binary files /dev/null and b/clab-pe-exp-7/sw2/nvram_00008 differ diff --git a/clab-pe-exp-7/topology-data.json b/clab-pe-exp-7/topology-data.json index d49ce8c..5cdb533 100644 --- a/clab-pe-exp-7/topology-data.json +++ b/clab-pe-exp-7/topology-data.json @@ -6,7 +6,7 @@ "prefix": "clab", "mgmt": { "network": "clab", - "bridge": "br-fbcb7a176683", + "bridge": "br-d8ff3904f0e9", "ipv4-subnet": "172.20.20.0/24", "ipv4-gw": "172.20.20.1", "ipv6-subnet": "3fff:172:20:20::/64", @@ -15,7 +15,7 @@ } } }, - "ssh-pub-keys": ["ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDSFe9QlnPPZ77cA1fMgPZ7VqhgN7vb2mV7HkXZwAttzAceOBZzCv6jl8lQoUDQhUy3spZRTmaQC/6CWJg0LmFLRk5STfTJGxj+3Qp/roJb4tLG4WOXFphSOBzY5DklCfU1jvIvR0lHRH/FcqjiGCNbg0SQK3ijYLPCsG0+NeNacMQri+/GkSd5wvJPOug4pCYuzf8x6PzbHa9FGTXXOMkVKrMQcHF+tAiU4yWBqjv/lshH6aEA+E3p8Cznfu8xxiBu4pLad0Ed7i5PeXUH5gHXF+bRwHKtyAjJAUpunVg7hgyGmXGl7D+yHcf60M0bd/0LZztJBj1MKxu50QluGIAQuBsK5Zdf97zkCuTbwypTpLx/rIj0tVX7FPhdjO2ubXa11aKhtTdaOq/0Jx24MgTJZTqv3TN+abmtPnDuAlZUhbxKEX408dNgQvUnH0fRwfsdkoYOhurNV4B7Rz7tYZ7cKhC/uHQDNslw8Z7R52JlMprDBxT1ap5jvtOhIo/7WKc=","ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHbR12oyqkSYcxGmqRoH4hI/RYChbqPF8KFBmeik1twu","ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILLRRYg0z5DoKq+67DeZFUo+dOqz2GedGKHHjGHiMMNo"], + "ssh-pub-keys": ["ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHbR12oyqkSYcxGmqRoH4hI/RYChbqPF8KFBmeik1twu","ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILLRRYg0z5DoKq+67DeZFUo+dOqz2GedGKHHjGHiMMNo","ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDSFe9QlnPPZ77cA1fMgPZ7VqhgN7vb2mV7HkXZwAttzAceOBZzCv6jl8lQoUDQhUy3spZRTmaQC/6CWJg0LmFLRk5STfTJGxj+3Qp/roJb4tLG4WOXFphSOBzY5DklCfU1jvIvR0lHRH/FcqjiGCNbg0SQK3ijYLPCsG0+NeNacMQri+/GkSd5wvJPOug4pCYuzf8x6PzbHa9FGTXXOMkVKrMQcHF+tAiU4yWBqjv/lshH6aEA+E3p8Cznfu8xxiBu4pLad0Ed7i5PeXUH5gHXF+bRwHKtyAjJAUpunVg7hgyGmXGl7D+yHcf60M0bd/0LZztJBj1MKxu50QluGIAQuBsK5Zdf97zkCuTbwypTpLx/rIj0tVX7FPhdjO2ubXa11aKhtTdaOq/0Jx24MgTJZTqv3TN+abmtPnDuAlZUhbxKEX408dNgQvUnH0fRwfsdkoYOhurNV4B7Rz7tYZ7cKhC/uHQDNslw8Z7R52JlMprDBxT1ap5jvtOhIo/7WKc="], "nodes": { "client1": { "index": "0", @@ -28,14 +28,15 @@ "image": "ghcr.io/srl-labs/network-multitool:latest", "mgmt-net": "", "mgmt-intf": "", - "mgmt-ipv4-address": "172.20.20.2", + "mgmt-ipv4-address": "172.20.20.7", "mgmt-ipv4-prefix-length": 24, - "mgmt-ipv6-address": "3fff:172:20:20::2", + "mgmt-ipv6-address": "3fff:172:20:20::7", "mgmt-ipv6-prefix-length": 64, "mac-address": "", "labels": { "clab-git-branch": "main", - "clab-mgmt-net-bridge": "br-fbcb7a176683", + "clab-git-hash": "e2d39a8", + "clab-mgmt-net-bridge": "br-d8ff3904f0e9", "clab-node-group": "", "clab-node-kind": "linux", "clab-node-lab-dir": "/home/dodin/Documents/container/clab-pe-exp-7/client1", @@ -47,6 +48,12 @@ "containerlab": "pe-exp-7" }, "port-bindings": [ + { + "host-ip": "", + "host-port": 0, + "port": 443, + "protocol": "tcp" + }, { "host-ip": "", "host-port": 0, @@ -76,12 +83,6 @@ "host-port": 0, "port": 22, "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 443, - "protocol": "tcp" } ] }, @@ -96,14 +97,15 @@ "image": "ghcr.io/srl-labs/network-multitool:latest", "mgmt-net": "", "mgmt-intf": "", - "mgmt-ipv4-address": "172.20.20.4", + "mgmt-ipv4-address": "172.20.20.5", "mgmt-ipv4-prefix-length": 24, - "mgmt-ipv6-address": "3fff:172:20:20::4", + "mgmt-ipv6-address": "3fff:172:20:20::5", "mgmt-ipv6-prefix-length": 64, "mac-address": "", "labels": { "clab-git-branch": "main", - "clab-mgmt-net-bridge": "br-fbcb7a176683", + "clab-git-hash": "e2d39a8", + "clab-mgmt-net-bridge": "br-d8ff3904f0e9", "clab-node-group": "", "clab-node-kind": "linux", "clab-node-lab-dir": "/home/dodin/Documents/container/clab-pe-exp-7/client2", @@ -115,12 +117,75 @@ "containerlab": "pe-exp-7" }, "port-bindings": [ + { + "host-ip": "", + "host-port": 0, + "port": 80, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 8080, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 11443, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 1180, + "protocol": "tcp" + }, { "host-ip": "", "host-port": 0, "port": 22, "protocol": "tcp" }, + { + "host-ip": "", + "host-port": 0, + "port": 443, + "protocol": "tcp" + } + ] + }, + "client3": { + "index": "2", + "shortname": "client3", + "longname": "clab-pe-exp-7-client3", + "fqdn": "client3.pe-exp-7.io", + "group": "", + "labdir": "/home/dodin/Documents/container/clab-pe-exp-7/client3", + "kind": "linux", + "image": "ghcr.io/srl-labs/network-multitool:latest", + "mgmt-net": "", + "mgmt-intf": "", + "mgmt-ipv4-address": "172.20.20.4", + "mgmt-ipv4-prefix-length": 24, + "mgmt-ipv6-address": "3fff:172:20:20::4", + "mgmt-ipv6-prefix-length": 64, + "mac-address": "", + "labels": { + "clab-git-branch": "main", + "clab-git-hash": "e2d39a8", + "clab-mgmt-net-bridge": "br-d8ff3904f0e9", + "clab-node-group": "", + "clab-node-kind": "linux", + "clab-node-lab-dir": "/home/dodin/Documents/container/clab-pe-exp-7/client3", + "clab-node-longname": "clab-pe-exp-7-client3", + "clab-node-name": "client3", + "clab-node-type": "", + "clab-owner": "dodin", + "clab-topo-file": "/home/dodin/Documents/container/pe-exp-7.clab.yml", + "containerlab": "pe-exp-7" + }, + "port-bindings": [ { "host-ip": "", "host-port": 0, @@ -150,11 +215,86 @@ "host-port": 0, "port": 1180, "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 22, + "protocol": "tcp" + } + ] + }, + "client4": { + "index": "3", + "shortname": "client4", + "longname": "clab-pe-exp-7-client4", + "fqdn": "client4.pe-exp-7.io", + "group": "", + "labdir": "/home/dodin/Documents/container/clab-pe-exp-7/client4", + "kind": "linux", + "image": "ghcr.io/srl-labs/network-multitool:latest", + "mgmt-net": "", + "mgmt-intf": "", + "mgmt-ipv4-address": "172.20.20.3", + "mgmt-ipv4-prefix-length": 24, + "mgmt-ipv6-address": "3fff:172:20:20::3", + "mgmt-ipv6-prefix-length": 64, + "mac-address": "", + "labels": { + "clab-git-branch": "main", + "clab-git-hash": "e2d39a8", + "clab-mgmt-net-bridge": "br-d8ff3904f0e9", + "clab-node-group": "", + "clab-node-kind": "linux", + "clab-node-lab-dir": "/home/dodin/Documents/container/clab-pe-exp-7/client4", + "clab-node-longname": "clab-pe-exp-7-client4", + "clab-node-name": "client4", + "clab-node-type": "", + "clab-owner": "dodin", + "clab-topo-file": "/home/dodin/Documents/container/pe-exp-7.clab.yml", + "containerlab": "pe-exp-7" + }, + "port-bindings": [ + { + "host-ip": "", + "host-port": 0, + "port": 11443, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 1180, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 22, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 443, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 80, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 8080, + "protocol": "tcp" } ] }, "rt1": { - "index": "2", + "index": "4", "shortname": "rt1", "longname": "clab-pe-exp-7-rt1", "fqdn": "rt1.pe-exp-7.io", @@ -164,14 +304,15 @@ "image": "vrnetlab/cisco_c8000v:17.13.01a", "mgmt-net": "", "mgmt-intf": "", - "mgmt-ipv4-address": "172.20.20.5", + "mgmt-ipv4-address": "172.20.20.8", "mgmt-ipv4-prefix-length": 24, - "mgmt-ipv6-address": "3fff:172:20:20::5", + "mgmt-ipv6-address": "3fff:172:20:20::8", "mgmt-ipv6-prefix-length": 64, "mac-address": "", "labels": { "clab-git-branch": "main", - "clab-mgmt-net-bridge": "br-fbcb7a176683", + "clab-git-hash": "e2d39a8", + "clab-mgmt-net-bridge": "br-d8ff3904f0e9", "clab-node-group": "", "clab-node-kind": "cisco_c8000v", "clab-node-lab-dir": "/home/dodin/Documents/container/clab-pe-exp-7/rt1", @@ -186,163 +327,7 @@ { "host-ip": "", "host-port": 0, - "port": 10099, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10050, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10055, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10092, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10025, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10034, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10044, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10046, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10051, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10005, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10015, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10022, - "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": 10058, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10063, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10097, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10098, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10017, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10043, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10057, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10067, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10069, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 5000, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10042, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10049, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10066, + "port": 10009, "protocol": "tcp" }, { @@ -354,109 +339,13 @@ { "host-ip": "", "host-port": 0, - "port": 10060, + "port": 10053, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10081, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10088, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10014, - "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": 10024, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10045, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10056, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10077, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10082, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10002, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10016, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10023, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10087, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10089, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10096, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10062, + "port": 10066, "protocol": "tcp" }, { @@ -468,133 +357,13 @@ { "host-ip": "", "host-port": 0, - "port": 161, - "protocol": "udp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10013, + "port": 10023, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10026, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10035, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10029, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10059, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10065, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10086, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10008, - "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": 10036, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10037, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10038, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10054, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10075, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10007, - "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": 10068, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10073, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10084, + "port": 10082, "protocol": "tcp" }, { @@ -606,169 +375,13 @@ { "host-ip": "", "host-port": 0, - "port": 10032, + "port": 10036, "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": 10080, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10000, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10003, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10018, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10048, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10061, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10071, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10072, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10021, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10030, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10041, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10085, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10091, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10019, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10020, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10083, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10006, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10064, - "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": 10090, - "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": 10012, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10070, + "port": 10050, "protocol": "tcp" }, { @@ -786,7 +399,91 @@ { "host-ip": "", "host-port": 0, - "port": 22, + "port": 10078, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10080, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10092, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10000, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10045, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10048, + "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": 10070, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10022, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10037, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10060, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10093, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10073, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10028, "protocol": "tcp" }, { @@ -795,6 +492,12 @@ "port": 10033, "protocol": "tcp" }, + { + "host-ip": "", + "host-port": 0, + "port": 10046, + "protocol": "tcp" + }, { "host-ip": "", "host-port": 0, @@ -804,13 +507,451 @@ { "host-ip": "", "host-port": 0, - "port": 10053, + "port": 10054, "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10058, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10064, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10075, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10088, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10091, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10098, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 5000, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10011, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10012, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10014, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10029, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10044, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10061, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10087, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10002, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10008, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10017, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10026, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10042, + "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": 10018, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10030, + "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": 10081, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10085, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10089, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 22, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10005, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10007, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10020, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10027, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10034, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10049, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10063, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10067, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10083, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10096, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10041, + "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": 10069, + "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": 10016, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10025, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10035, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10038, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10043, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10086, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10031, + "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": 10065, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10068, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10099, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10010, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10021, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10024, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10055, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10059, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10072, + "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": 10003, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10013, + "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": 10062, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10079, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10084, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 161, + "protocol": "udp" } ] }, "rt2": { - "index": "3", + "index": "5", "shortname": "rt2", "longname": "clab-pe-exp-7-rt2", "fqdn": "rt2.pe-exp-7.io", @@ -820,14 +961,15 @@ "image": "vrnetlab/cisco_c8000v:17.13.01a", "mgmt-net": "", "mgmt-intf": "", - "mgmt-ipv4-address": "172.20.20.3", + "mgmt-ipv4-address": "172.20.20.9", "mgmt-ipv4-prefix-length": 24, - "mgmt-ipv6-address": "3fff:172:20:20::3", + "mgmt-ipv6-address": "3fff:172:20:20::9", "mgmt-ipv6-prefix-length": 64, "mac-address": "", "labels": { "clab-git-branch": "main", - "clab-mgmt-net-bridge": "br-fbcb7a176683", + "clab-git-hash": "e2d39a8", + "clab-mgmt-net-bridge": "br-d8ff3904f0e9", "clab-node-group": "", "clab-node-kind": "cisco_c8000v", "clab-node-lab-dir": "/home/dodin/Documents/container/clab-pe-exp-7/rt2", @@ -839,6 +981,252 @@ "containerlab": "pe-exp-7" }, "port-bindings": [ + { + "host-ip": "", + "host-port": 0, + "port": 10076, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10095, + "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": 10061, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10058, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10069, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10080, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10024, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10036, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10049, + "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": 10065, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10093, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10097, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10011, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10017, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10025, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 22, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10030, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10077, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10089, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10081, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10013, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10056, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10075, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10053, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10064, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10088, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10090, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10021, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10026, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10041, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10063, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10000, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10019, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10057, + "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": 10045, + "protocol": "tcp" + }, { "host-ip": "", "host-port": 0, @@ -848,7 +1236,151 @@ { "host-ip": "", "host-port": 0, - "port": 10046, + "port": 10066, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10001, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10006, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10007, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10098, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10079, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10087, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 5000, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 830, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10010, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10022, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10038, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10059, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10060, + "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": 10005, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10020, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10023, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10054, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10055, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10004, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10009, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10018, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10047, "protocol": "tcp" }, { @@ -866,43 +1398,7 @@ { "host-ip": "", "host-port": 0, - "port": 10088, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10089, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10024, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10013, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10025, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10038, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10055, + "port": 10085, "protocol": "tcp" }, { @@ -911,384 +1407,12 @@ "port": 10092, "protocol": "tcp" }, - { - "host-ip": "", - "host-port": 0, - "port": 10095, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10012, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10066, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10071, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10075, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10084, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 830, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10060, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10011, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10016, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10019, - "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": 10059, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10063, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10002, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10091, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10098, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10065, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10044, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10021, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10017, - "protocol": "tcp" - }, { "host-ip": "", "host-port": 0, "port": 10027, "protocol": "tcp" }, - { - "host-ip": "", - "host-port": 0, - "port": 10040, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10096, - "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": 10008, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10032, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10064, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10067, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10081, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10083, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10090, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10014, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10023, - "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": 10069, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10094, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10000, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10051, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10058, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10078, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10082, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10085, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10086, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10036, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10035, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10054, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10077, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10003, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10007, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10033, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10034, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10037, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10047, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10053, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10056, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10005, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10087, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10070, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10030, - "protocol": "tcp" - }, { "host-ip": "", "host-port": 0, @@ -1298,97 +1422,19 @@ { "host-ip": "", "host-port": 0, - "port": 10039, + "port": 10044, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10043, + "port": 10096, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10045, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10076, - "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": 10029, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10079, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10093, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10020, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10006, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10015, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10028, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10042, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10057, - "protocol": "tcp" - }, - { - "host-ip": "", - "host-port": 0, - "port": 10068, + "port": 10052, "protocol": "tcp" }, { @@ -1400,49 +1446,49 @@ { "host-ip": "", "host-port": 0, - "port": 10004, + "port": 10078, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 5000, + "port": 10084, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 22, + "port": 10012, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10010, + "port": 10035, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10018, + "port": 10039, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10022, + "port": 10067, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10026, + "port": 10070, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10072, + "port": 10071, "protocol": "tcp" }, { @@ -1454,16 +1500,178 @@ { "host-ip": "", "host-port": 0, - "port": 10080, + "port": 10083, "protocol": "tcp" }, { "host-ip": "", "host-port": 0, - "port": 10001, + "port": 10002, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10028, + "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": 10040, + "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": 10082, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10086, + "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": 10033, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10091, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10051, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10003, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10015, + "protocol": "tcp" + }, + { + "host-ip": "", + "host-port": 0, + "port": 10046, "protocol": "tcp" } ] + }, + "sw1": { + "index": "6", + "shortname": "sw1", + "longname": "clab-pe-exp-7-sw1", + "fqdn": "sw1.pe-exp-7.io", + "group": "", + "labdir": "/home/dodin/Documents/container/clab-pe-exp-7/sw1", + "kind": "cisco_iol", + "image": "registry.uttnetgroup.fr/ung/vrnetlab/cisco_iol:L2-17.15.1", + "mgmt-net": "", + "mgmt-intf": "", + "mgmt-ipv4-address": "172.20.20.6", + "mgmt-ipv4-prefix-length": 24, + "mgmt-ipv6-address": "3fff:172:20:20::6", + "mgmt-ipv6-prefix-length": 64, + "mac-address": "", + "labels": { + "clab-git-branch": "main", + "clab-git-hash": "e2d39a8", + "clab-mgmt-net-bridge": "br-d8ff3904f0e9", + "clab-node-group": "", + "clab-node-kind": "cisco_iol", + "clab-node-lab-dir": "/home/dodin/Documents/container/clab-pe-exp-7/sw1", + "clab-node-longname": "clab-pe-exp-7-sw1", + "clab-node-name": "sw1", + "clab-node-type": "l2", + "clab-owner": "dodin", + "clab-topo-file": "/home/dodin/Documents/container/pe-exp-7.clab.yml", + "containerlab": "pe-exp-7" + }, + "port-bindings": [ + ] + }, + "sw2": { + "index": "7", + "shortname": "sw2", + "longname": "clab-pe-exp-7-sw2", + "fqdn": "sw2.pe-exp-7.io", + "group": "", + "labdir": "/home/dodin/Documents/container/clab-pe-exp-7/sw2", + "kind": "cisco_iol", + "image": "registry.uttnetgroup.fr/ung/vrnetlab/cisco_iol:L2-17.15.1", + "mgmt-net": "", + "mgmt-intf": "", + "mgmt-ipv4-address": "172.20.20.2", + "mgmt-ipv4-prefix-length": 24, + "mgmt-ipv6-address": "3fff:172:20:20::2", + "mgmt-ipv6-prefix-length": 64, + "mac-address": "", + "labels": { + "clab-git-branch": "main", + "clab-git-hash": "e2d39a8", + "clab-mgmt-net-bridge": "br-d8ff3904f0e9", + "clab-node-group": "", + "clab-node-kind": "cisco_iol", + "clab-node-lab-dir": "/home/dodin/Documents/container/clab-pe-exp-7/sw2", + "clab-node-longname": "clab-pe-exp-7-sw2", + "clab-node-name": "sw2", + "clab-node-type": "l2", + "clab-owner": "dodin", + "clab-topo-file": "/home/dodin/Documents/container/pe-exp-7.clab.yml", + "containerlab": "pe-exp-7" + }, + "port-bindings": [ + ] } }, "links": [ @@ -1472,13 +1680,13 @@ "a": { "node": "rt1", "interface": "eth1", - "mac": "aa:c1:ab:3b:c5:6f", + "mac": "aa:c1:ab:fa:86:91", "peer": "z" }, "z": { "node": "rt2", "interface": "eth1", - "mac": "aa:c1:ab:58:e6:29", + "mac": "aa:c1:ab:04:32:b2", "peer": "a" } } @@ -1488,13 +1696,45 @@ "a": { "node": "rt1", "interface": "eth2", - "mac": "aa:c1:ab:5e:fd:20", + "mac": "aa:c1:ab:39:a7:cf", + "peer": "z" + }, + "z": { + "node": "sw1", + "interface": "eth1", + "mac": "aa:c1:ab:7c:57:35", + "peer": "a" + } + } + }, + { + "endpoints": { + "a": { + "node": "sw1", + "interface": "eth2", + "mac": "aa:c1:ab:0e:1a:6f", "peer": "z" }, "z": { "node": "client1", "interface": "eth1", - "mac": "aa:c1:ab:63:91:2b", + "mac": "aa:c1:ab:47:30:08", + "peer": "a" + } + } + }, + { + "endpoints": { + "a": { + "node": "sw1", + "interface": "eth3", + "mac": "aa:c1:ab:62:8d:71", + "peer": "z" + }, + "z": { + "node": "client2", + "interface": "eth1", + "mac": "aa:c1:ab:38:99:86", "peer": "a" } } @@ -1504,13 +1744,45 @@ "a": { "node": "rt2", "interface": "eth2", - "mac": "aa:c1:ab:2d:9b:6b", + "mac": "aa:c1:ab:21:c8:03", "peer": "z" }, "z": { - "node": "client2", + "node": "sw2", "interface": "eth1", - "mac": "aa:c1:ab:ba:00:d2", + "mac": "aa:c1:ab:f9:49:ce", + "peer": "a" + } + } + }, + { + "endpoints": { + "a": { + "node": "sw2", + "interface": "eth2", + "mac": "aa:c1:ab:33:4f:97", + "peer": "z" + }, + "z": { + "node": "client3", + "interface": "eth1", + "mac": "aa:c1:ab:1d:0d:3a", + "peer": "a" + } + } + }, + { + "endpoints": { + "a": { + "node": "sw2", + "interface": "eth3", + "mac": "aa:c1:ab:76:c3:b1", + "peer": "z" + }, + "z": { + "node": "client4", + "interface": "eth1", + "mac": "aa:c1:ab:60:a2:d7", "peer": "a" } } diff --git a/pe-exp-7.clab.yml b/pe-exp-7.clab.yml index 9764746..2097da9 100644 --- a/pe-exp-7.clab.yml +++ b/pe-exp-7.clab.yml @@ -2,20 +2,50 @@ name: pe-exp-7 topology: nodes: - client1: - kind: linux - image: ghcr.io/srl-labs/network-multitool:latest - client2: - kind: linux - image: ghcr.io/srl-labs/network-multitool:latest rt1: kind: cisco_c8000v image: vrnetlab/cisco_c8000v:17.13.01a rt2: kind: cisco_c8000v image: vrnetlab/cisco_c8000v:17.13.01a + sw1: + kind: cisco_iol + type: l2 + image: registry.uttnetgroup.fr/ung/vrnetlab/cisco_iol:L2-17.15.1 + sw2: + kind: cisco_iol + type: l2 + image: registry.uttnetgroup.fr/ung/vrnetlab/cisco_iol:L2-17.15.1 + client1: + kind: linux + image: ghcr.io/srl-labs/network-multitool:latest + exec: + - ip link set eth1 up + - ip addr add 10.0.20.1/24 dev eth1 + client2: + kind: linux + image: ghcr.io/srl-labs/network-multitool:latest + exec: + - ip link set eth1 up + - ip addr add 10.0.20.2/24 dev eth1 + client3: + kind: linux + image: ghcr.io/srl-labs/network-multitool:latest + exec: + - ip link set eth1 up + - ip addr add 10.0.20.3/24 dev eth1 + client4: + kind: linux + image: ghcr.io/srl-labs/network-multitool:latest + exec: + - ip link set eth1 up + - ip addr add 10.0.20.4/24 dev eth1 links: - endpoints: [ "rt1:eth1", "rt2:eth1" ] - - endpoints: [ "rt1:eth2", "client1:eth1" ] - - endpoints: [ "rt2:eth2", "client2:eth1" ] + - endpoints: [ "rt1:eth2", "sw1:Ethernet0/1" ] + - endpoints: [ "sw1:Ethernet0/2", "client1:eth1" ] + - endpoints: [ "sw1:Ethernet0/3", "client2:eth1" ] + - endpoints: [ "rt2:eth2", "sw2:Ethernet0/1" ] + - endpoints: [ "sw2:Ethernet0/2", "client3:eth1" ] + - endpoints: [ "sw2:Ethernet0/3", "client4:eth1" ] diff --git a/pe-exp-7.clab.yml.annotations.json b/pe-exp-7.clab.yml.annotations.json index 04a4bf6..c1af255 100644 --- a/pe-exp-7.clab.yml.annotations.json +++ b/pe-exp-7.clab.yml.annotations.json @@ -8,8 +8,8 @@ { "id": "client1", "position": { - "x": 380, - "y": 480 + "x": 280, + "y": 560 }, "icon": "client", "interfacePattern": "eth{n}" @@ -17,8 +17,8 @@ { "id": "client2", "position": { - "x": 560, - "y": 480 + "x": 420, + "y": 560 }, "icon": "client", "interfacePattern": "eth{n}" @@ -40,6 +40,42 @@ }, "icon": "pe", "interfacePattern": "eth" + }, + { + "id": "client3", + "position": { + "x": 520, + "y": 560 + }, + "icon": "client", + "interfacePattern": "eth{n}" + }, + { + "id": "sw1", + "position": { + "x": 360, + "y": 460 + }, + "icon": "switch", + "interfacePattern": "Ethernet0/{n}" + }, + { + "id": "sw2", + "position": { + "x": 580, + "y": 460 + }, + "icon": "switch", + "interfacePattern": "Ethernet0/{n}" + }, + { + "id": "client4", + "position": { + "x": 640, + "y": 560 + }, + "icon": "client", + "interfacePattern": "eth{n}" } ], "edgeAnnotations": [],