ST1Tutorials/Tutorials/M6 Lab 5 - Management VLAN/README.md

37 lines
570 B
Markdown

# 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
```