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

68 lines
874 B
Markdown
Raw Normal View History

2023-12-04 19:58:53 +00:00
# Lab 5 - Management VLAN
> ***Objectives:***
> - Use Lab 03 setup
> - Create Switch `SWC`
2023-12-05 23:08:00 +00:00
> - Merge Lab 04
2023-12-04 19:58:53 +00:00
> - Assign IP addresses to `SW1-4`
> - Assign IP address to `SWC`
> - Create user on each networking device
2023-12-05 10:34:05 +00:00
## 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
```
2023-12-05 23:25:56 +00:00
## Assign IP Addresses
On SW1-4 replace `{x}` with the corresponding switch number:
```sh
enable
configure terminal
interface vlan 10
ip address 10.10.10.{x} 255.255.0.0
exit
exit
disable
exit
```
On `SWC` configure the following:
```sh
enable
configure terminal
interface vlan 1
ip address 10.123.0.4 255.255.0.0
exit
exit
disable
exit
```