Compare commits

..

No commits in common. "7dd2334d5ee67ee2ad8d1cf175e55e50b0ff9ddb" and "a3aca6b07d85702ceb813273167a03c47f0aeacd" have entirely different histories.

6 changed files with 4 additions and 82 deletions

BIN
Networks/Main.pkt (Stored with Git LFS)

Binary file not shown.

View file

@ -15,6 +15,3 @@ In this version, the different parts of the network are labelled:
### Unsegmented Version
![Unsegmented View](./Unsegmented.svg)
### Labs
Labs are stored in the `Tutorials` directory in folders named `M{# of meeting} Lab {# of lab} - {title}`.

View file

@ -3,4 +3,4 @@
> - Create Switch 1, Switch 2, Switch 3 and Switch 4.
> - Attach 6 PCs to each Switch
Objectives are realized in `../../Networks/Main.pkt` at tag `lab-1`.
Objectives are realized in `../../Networks/Main.pkt` at branch `feature/lab-1`.

View file

@ -18,7 +18,6 @@
> - Set `SW3` to be spanning-tree root secondary for VLAN 20
> - Configure static IP addresses for at least 3 computers per switch
The lab is realized in `./Networks/Main.ptk` in tag `lab-2`
## Basic Configuration
Run this configuration on each Switch replacing `{x}` with the switch number:

View file

@ -9,7 +9,7 @@
> - Enable OSPF protocol on all routers
> - Try to ping the webserver from the `EE` router
The lab is realized in `./Networks/Lab 04.ptk` in tag `lab-4`
The lab is realized in `./Networks/Lab 04.ptk` in branch `feature/lab-4`
## Router Configuration
Router `EE`:

View file

@ -1,74 +0,0 @@
# Lab 03 - VLAN Routing
> ***Objectives:***
> - Use Lab 02 setup
> - Add the routers `R1` and `R2`
> - Create a subinterface FE0/0.10 for VLAN10
> - Set up VLAN routing
> - Set up load balancing using First-Hop Redundancy Protocol
> - Set up DHCP
## Inter-VLAN Routing Configuration
For each router, configure this replacing `{x}` with the router number:
```sh
enable
configure terminal
hostname R{x}
interface fastEthernet 0/0
no shutdown
interface fastEthernet 0/0.10
ip address 10.10.0.{x} 255.255.0.0
encapsulation dot1q 10
no shutdown
interface fastEthernet 0/0.20
ip address 10.20.0.{x} 255.255.0.0
encapsulation dot1q 20
no shutdown
exit
exit
disable
exit
```
## First-Hop Redundancy Protocol Setup
On each router:
```sh
enable
configure terminal
interface fastEthernet 0/0.10
standby 1 ip 10.10.0.111
interface fastEthernet 0/0.20
standby 2 ip 10.20.0.222
exit
exit
disable
exit
```
## DHCP Configuration
On each router:
```sh
enable
configure terminal
ip dhcp pool Pool10
network 10.10.0.0 255.255.0.0
default-router 10.10.0.111
ip dhcp pool Pool20
network 10.20.0.0 255.255.0.0
default-router 10.20.0.222
exit
exit
disable
exit
```