Compare commits
3 commits
7dd2334d5e
...
8914a98fbd
Author | SHA1 | Date | |
---|---|---|---|
8914a98fbd | |||
9b76e7b750 | |||
9efb625ba7 |
3 changed files with 40 additions and 2 deletions
BIN
Networks/Main.pkt
(Stored with Git LFS)
BIN
Networks/Main.pkt
(Stored with Git LFS)
Binary file not shown.
|
@ -7,6 +7,8 @@
|
|||
> - Set up load balancing using First-Hop Redundancy Protocol
|
||||
> - Set up DHCP
|
||||
|
||||
The lab is realized in `./Networks/Main.ptk` in tag `lab-3`
|
||||
|
||||
## Inter-VLAN Routing Configuration
|
||||
For each router, configure this replacing `{x}` with the router number:
|
||||
|
||||
|
|
36
Tutorials/M6 Lab 5 - Management VLAN/README.md
Normal file
36
Tutorials/M6 Lab 5 - Management VLAN/README.md
Normal file
|
@ -0,0 +1,36 @@
|
|||
# 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
|
||||
```
|
Loading…
Reference in a new issue