Compare commits
7 commits
a3aca6b07d
...
7dd2334d5e
Author | SHA1 | Date | |
---|---|---|---|
7dd2334d5e | |||
d463aadbbc | |||
3d119480e5 | |||
38f32833c0 | |||
416662ae33 | |||
e1264e5d52 | |||
18af1c010d |
6 changed files with 82 additions and 4 deletions
BIN
Networks/Main.pkt
(Stored with Git LFS)
BIN
Networks/Main.pkt
(Stored with Git LFS)
Binary file not shown.
|
@ -15,3 +15,6 @@ 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}`.
|
||||
|
|
|
@ -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 branch `feature/lab-1`.
|
||||
Objectives are realized in `../../Networks/Main.pkt` at tag `lab-1`.
|
|
@ -18,6 +18,7 @@
|
|||
> - 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:
|
|
@ -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 branch `feature/lab-4`
|
||||
The lab is realized in `./Networks/Lab 04.ptk` in tag `lab-4`
|
||||
|
||||
## Router Configuration
|
||||
Router `EE`:
|
74
Tutorials/M5 Lab 3 - VLAN Routing/README.md
Normal file
74
Tutorials/M5 Lab 3 - VLAN Routing/README.md
Normal file
|
@ -0,0 +1,74 @@
|
|||
# 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
|
||||
```
|
Loading…
Reference in a new issue