Set up Iner-VLAN routing
This commit is contained in:
parent
416662ae33
commit
38f32833c0
2 changed files with 34 additions and 2 deletions
BIN
Networks/Main.pkt
(Stored with Git LFS)
BIN
Networks/Main.pkt
(Stored with Git LFS)
Binary file not shown.
32
Tutorials/M5 Lab 3 - VLAN Routing/README.md
Normal file
32
Tutorials/M5 Lab 3 - VLAN Routing/README.md
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
# Lab 03 - VLAN Routing
|
||||||
|
> ***Objectives:***
|
||||||
|
> - Use Lab 02 setup
|
||||||
|
> - Add the routers `R1` and `R2`
|
||||||
|
> - Create a subinterface FE0/0.10 for VLAN10
|
||||||
|
|
||||||
|
## Router 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
|
||||||
|
```
|
Loading…
Reference in a new issue