diff --git a/Networks/Main.pkt b/Networks/Main.pkt index 862938b..29e45af 100644 --- a/Networks/Main.pkt +++ b/Networks/Main.pkt @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:41a0673ce1bbbc3ed713c8556d233bb90f9ca480a104beb8b229c9fae3b63410 -size 309541 +oid sha256:aedd9693f45c6f658d3a51e6d6b27c56863d4979601dc519dfb901ede08f05fe +size 202212 diff --git a/Tutorials/M5 Lab 3 - VLAN Routing/README.md b/Tutorials/M5 Lab 3 - VLAN Routing/README.md new file mode 100644 index 0000000..2f9b9f9 --- /dev/null +++ b/Tutorials/M5 Lab 3 - VLAN Routing/README.md @@ -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 +```