Compare commits

..

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

3 changed files with 2 additions and 40 deletions

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

Binary file not shown.

View file

@ -7,8 +7,6 @@
> - Set up load balancing using First-Hop Redundancy Protocol > - Set up load balancing using First-Hop Redundancy Protocol
> - Set up DHCP > - Set up DHCP
The lab is realized in `./Networks/Main.ptk` in tag `lab-3`
## Inter-VLAN Routing Configuration ## Inter-VLAN Routing Configuration
For each router, configure this replacing `{x}` with the router number: For each router, configure this replacing `{x}` with the router number:

View file

@ -1,36 +0,0 @@
# Lab 5 - Management VLAN
> ***Objectives:***
> - Use Lab 03 setup
> - Create Switch `SWC`
> - Create routers `EP`, `ISP` and `NET` and `PC` from Lab 04
> - Assign IP addresses to `SW1-4`
> - Assign IP address to `SWC`
> - Create user on each networking device
## Adding SWC
Configure `SWC`:
```sh
enable
configure terminal
hostname SWC
exit
exit
disable
exit
```
Configure routers replacing `{x}` with the number of the router:
```sh
enable
configure terminal
interface fastEthernet 0/1
ip address 10.123.0.{x} 255.255.0.0
no shutdown
exit
exit
disable
exit
```