Configured all machines.

This commit is contained in:
Filipe Rodrigues 2023-01-29 19:11:10 +00:00
parent 823b9a4ff8
commit 5e187a0fc8
8 changed files with 318 additions and 44 deletions

3
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,3 @@
{
"editor.formatOnSave": false
}

77
a.gns3
View File

@ -16,7 +16,80 @@
"supplier": null,
"topology": {
"computes": [],
"drawings": [],
"drawings": [
{
"drawing_id": "b433f393-b717-4a50-a399-b4f6a2da1d4e",
"locked": false,
"rotation": 0,
"svg": "<svg width=\"134\" height=\"62\"><text font-family=\"TypeWriter\" font-size=\"10.0\" font-weight=\"bold\" fill=\"#000000\" fill-opacity=\"1.0\">sn5:\n197.10.5.0/24\n2001:197:cafe:5::/64</text></svg>",
"x": -442,
"y": -106,
"z": 2
},
{
"drawing_id": "161c582d-a2ef-4b44-ab4e-0ad2b21ef535",
"locked": false,
"rotation": 0,
"svg": "<svg width=\"134\" height=\"62\"><text font-family=\"TypeWriter\" font-size=\"10.0\" font-weight=\"bold\" fill=\"#000000\" fill-opacity=\"1.0\">sn4:\n197.10.4.0/24\n2001:197:cafe:4::/64</text></svg>",
"x": 7,
"y": -106,
"z": 2
},
{
"drawing_id": "40da6d09-e591-4e58-91f6-ee5272e0e9fb",
"locked": false,
"rotation": 0,
"svg": "<svg width=\"134\" height=\"62\"><text font-family=\"TypeWriter\" font-size=\"10.0\" font-weight=\"bold\" fill=\"#000000\" fill-opacity=\"1.0\">sn3:\n197.10.3.0/24\n2001:197:cafe:3::/64</text></svg>",
"x": -217,
"y": -206,
"z": 2
},
{
"drawing_id": "ff6ebd02-d1a3-4b79-8e1c-266ba7483388",
"locked": false,
"rotation": 0,
"svg": "<svg width=\"134\" height=\"62\"><text font-family=\"TypeWriter\" font-size=\"10.0\" font-weight=\"bold\" fill=\"#000000\" fill-opacity=\"1.0\">vlan 1 - sn6:\n197.10.6.0/24\n2001:197:cafe:6::/64</text></svg>",
"x": -217,
"y": 94,
"z": 2
},
{
"drawing_id": "b319e509-7d4a-488e-a73b-9e545b800da6",
"locked": false,
"rotation": 0,
"svg": "<svg width=\"134\" height=\"62\"><text font-family=\"TypeWriter\" font-size=\"10.0\" font-weight=\"bold\" fill=\"#000000\" fill-opacity=\"1.0\">sn8:\n197.10.8.0/24\n2001:197:cafe:8::/64</text></svg>",
"x": -142,
"y": 269,
"z": 2
},
{
"drawing_id": "013893f8-7cc3-437b-b0a3-f604d3daf014",
"locked": false,
"rotation": 0,
"svg": "<svg width=\"134\" height=\"62\"><text font-family=\"TypeWriter\" font-size=\"10.0\" font-weight=\"bold\" fill=\"#000000\" fill-opacity=\"1.0\">loopback0 - sn9:\n197.10.9.0/24\n2001:197:cafe:9::/64</text></svg>",
"x": -217,
"y": 419,
"z": 2
},
{
"drawing_id": "796a8de7-f0f0-44b2-93f9-e346fde1f6f0",
"locked": false,
"rotation": 0,
"svg": "<svg width=\"134\" height=\"62\"><text font-family=\"TypeWriter\" font-size=\"10.0\" font-weight=\"bold\" fill=\"#000000\" fill-opacity=\"1.0\">loopback0 - sn1:\n197.10.1.0/24\n2001:197:cafe:1::/64</text></svg>",
"x": -367,
"y": -331,
"z": 2
},
{
"drawing_id": "945b8c3c-599b-436d-80b7-02314266ead0",
"locked": false,
"rotation": 0,
"svg": "<svg width=\"134\" height=\"62\"><text font-family=\"TypeWriter\" font-size=\"10.0\" font-weight=\"bold\" fill=\"#000000\" fill-opacity=\"1.0\">loopback0 - sn2:\n197.10.2.0/24\n2001:197:cafe:2::/64</text></svg>",
"x": -67,
"y": -331,
"z": 2
}
],
"links": [
{
"filters": {},
@ -591,5 +664,5 @@
"type": "topology",
"variables": null,
"version": "2.2.35.1",
"zoom": 168
"zoom": 100
}

View File

@ -1,20 +1,61 @@
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
hostname SwR3
ip cef
no ip domain-lookup
boot-start-marker
boot-end-marker
no aaa new-model
memory-size iomem 5
no ip icmp rate-limit unreachable
ip tcp synwait 5
ip cef
no ip domain lookup
ip auth-proxy max-nodata-conns 3
ip admission max-nodata-conns 3
ipv6 unicast-routing
ip tcp synwait-time 5
interface FastEthernet0/0
ip address 197.10.5.3 255.255.255.0
duplex auto
speed auto
ipv6 address 2001:197:CAFE:5::3/64
interface FastEthernet0/1
no ip address
shutdown
duplex auto
speed auto
interface FastEthernet1/0
interface FastEthernet1/1
interface FastEthernet1/2
interface FastEthernet1/3
interface FastEthernet1/4
interface FastEthernet1/5
interface FastEthernet1/6
interface FastEthernet1/7
interface FastEthernet1/8
interface FastEthernet1/9
interface FastEthernet1/10
interface FastEthernet1/11
interface FastEthernet1/12
interface FastEthernet1/13
interface FastEthernet1/14
interface FastEthernet1/15
interface Vlan1
ip address 197.10.6.3 255.255.255.0
ipv6 address 2001:197:CAFE:6::3/64
ip forward-protocol nd
no ip http server
no ip http secure-server
no cdp log mismatch duplex
control-plane
line con 0
exec-timeout 0 0
logging synchronous
privilege level 15
no login
logging synchronous
line aux 0
exec-timeout 0 0
logging synchronous
privilege level 15
no login
logging synchronous
line vty 0 4
login
end

View File

@ -1,20 +1,61 @@
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
hostname SwR4
ip cef
no ip domain-lookup
boot-start-marker
boot-end-marker
no aaa new-model
memory-size iomem 5
no ip icmp rate-limit unreachable
ip tcp synwait 5
ip cef
no ip domain lookup
ip auth-proxy max-nodata-conns 3
ip admission max-nodata-conns 3
ipv6 unicast-routing
ip tcp synwait-time 5
interface FastEthernet0/0
ip address 197.10.4.4 255.255.255.0
duplex auto
speed auto
ipv6 address 2001:197:CAFE:4::4/64
interface FastEthernet0/1
no ip address
shutdown
duplex auto
speed auto
interface FastEthernet1/0
interface FastEthernet1/1
interface FastEthernet1/2
interface FastEthernet1/3
interface FastEthernet1/4
interface FastEthernet1/5
interface FastEthernet1/6
interface FastEthernet1/7
interface FastEthernet1/8
interface FastEthernet1/9
interface FastEthernet1/10
interface FastEthernet1/11
interface FastEthernet1/12
interface FastEthernet1/13
interface FastEthernet1/14
interface FastEthernet1/15
interface Vlan1
ip address 197.10.6.4 255.255.255.0
ipv6 address 2001:197:CAFE:6::4/64
ip forward-protocol nd
no ip http server
no ip http secure-server
no cdp log mismatch duplex
control-plane
line con 0
exec-timeout 0 0
logging synchronous
privilege level 15
no login
logging synchronous
line aux 0
exec-timeout 0 0
logging synchronous
privilege level 15
no login
logging synchronous
line vty 0 4
login
end

View File

@ -1,20 +1,61 @@
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
hostname SwR5
ip cef
no ip domain-lookup
boot-start-marker
boot-end-marker
no aaa new-model
memory-size iomem 5
no ip icmp rate-limit unreachable
ip tcp synwait 5
ip cef
no ip domain lookup
ip auth-proxy max-nodata-conns 3
ip admission max-nodata-conns 3
ipv6 unicast-routing
ip tcp synwait-time 5
interface FastEthernet0/0
ip address 197.10.8.5 255.255.255.0
duplex auto
speed auto
ipv6 address 2001:197:CAFE:8::5/64
interface FastEthernet0/1
no ip address
shutdown
duplex auto
speed auto
interface FastEthernet1/0
interface FastEthernet1/1
interface FastEthernet1/2
interface FastEthernet1/3
interface FastEthernet1/4
interface FastEthernet1/5
interface FastEthernet1/6
interface FastEthernet1/7
interface FastEthernet1/8
interface FastEthernet1/9
interface FastEthernet1/10
interface FastEthernet1/11
interface FastEthernet1/12
interface FastEthernet1/13
interface FastEthernet1/14
interface FastEthernet1/15
interface Vlan1
ip address 197.10.6.5 255.255.255.0
ipv6 address 2001:197:CAFE:6::5/64
ip forward-protocol nd
no ip http server
no ip http secure-server
no cdp log mismatch duplex
control-plane
line con 0
exec-timeout 0 0
logging synchronous
privilege level 15
no login
logging synchronous
line aux 0
exec-timeout 0 0
logging synchronous
privilege level 15
no login
logging synchronous
line vty 0 4
login
end

View File

@ -1,20 +1,45 @@
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
hostname R2
ip cef
no ip domain-lookup
boot-start-marker
boot-end-marker
no aaa new-model
memory-size iomem 5
no ip icmp rate-limit unreachable
ip tcp synwait 5
ip cef
no ip domain lookup
ip auth-proxy max-nodata-conns 3
ip admission max-nodata-conns 3
ipv6 unicast-routing
ip tcp synwait-time 5
interface Loopback0
ip address 197.10.2.2 255.255.255.0
ipv6 address 2001:197:CAFE:2::2/64
interface FastEthernet0/0
ip address 197.10.3.2 255.255.255.0
duplex auto
speed auto
ipv6 address 2001:197:CAFE:3::2/64
interface FastEthernet0/1
ip address 197.10.4.2 255.255.255.0
duplex auto
speed auto
ipv6 address 2001:197:CAFE:4::2/64
ip forward-protocol nd
no ip http server
no ip http secure-server
no cdp log mismatch duplex
control-plane
line con 0
exec-timeout 0 0
logging synchronous
privilege level 15
no login
logging synchronous
line aux 0
exec-timeout 0 0
logging synchronous
privilege level 15
no login
logging synchronous
line vty 0 4
login
end

View File

@ -1,20 +1,45 @@
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
hostname R1
ip cef
no ip domain-lookup
boot-start-marker
boot-end-marker
no aaa new-model
memory-size iomem 5
no ip icmp rate-limit unreachable
ip tcp synwait 5
ip cef
no ip domain lookup
ip auth-proxy max-nodata-conns 3
ip admission max-nodata-conns 3
ipv6 unicast-routing
ip tcp synwait-time 5
interface Loopback0
ip address 197.10.1.1 255.255.255.0
ipv6 address 2001:197:CAFE:1::1/64
interface FastEthernet0/0
ip address 197.10.3.1 255.255.255.0
duplex auto
speed auto
ipv6 address 2001:197:CAFE:3::1/64
interface FastEthernet0/1
ip address 197.10.5.1 255.255.255.0
duplex auto
speed auto
ipv6 address 2001:197:CAFE:5::1/64
ip forward-protocol nd
no ip http server
no ip http secure-server
no cdp log mismatch duplex
control-plane
line con 0
exec-timeout 0 0
logging synchronous
privilege level 15
no login
logging synchronous
line aux 0
exec-timeout 0 0
logging synchronous
privilege level 15
no login
logging synchronous
line vty 0 4
login
end

View File

@ -1,20 +1,45 @@
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
hostname R6
ip cef
no ip domain-lookup
boot-start-marker
boot-end-marker
no aaa new-model
memory-size iomem 5
no ip icmp rate-limit unreachable
ip tcp synwait 5
ip cef
no ip domain lookup
ip auth-proxy max-nodata-conns 3
ip admission max-nodata-conns 3
ipv6 unicast-routing
ip tcp synwait-time 5
interface Loopback0
ip address 197.10.9.6 255.255.255.0
ipv6 address 2001:197:CAFE:9::6/64
interface FastEthernet0/0
ip address 197.10.8.6 255.255.255.0
duplex auto
speed auto
ipv6 address 2001:197:CAFE:8::6/64
interface FastEthernet0/1
no ip address
shutdown
duplex auto
speed auto
ip forward-protocol nd
no ip http server
no ip http secure-server
no cdp log mismatch duplex
control-plane
line con 0
exec-timeout 0 0
logging synchronous
privilege level 15
no login
logging synchronous
line aux 0
exec-timeout 0 0
logging synchronous
privilege level 15
no login
logging synchronous
line vty 0 4
login
end