Build a Netwokr Challenge 1 - devinziegler/Devin-Tech-Journal GitHub Wiki
Configuring BTV
This step is pretty straight forward, add VLANs to dist switch. Add VLANs to the proper interfaces on the switch. Configure sub interfaces on the router.
Configure Sub Interface
- Turn on the selected interface on the router:
int fa0/0
no shut
exit
Turns on interface 0
- Add a sub interface & VLAN:
int fa0/0.5
encapsulation dot1q 5
ip address 172.16.5.1
exit
Adds sub interface for VLAN 5.
Configure OSPF on BTV Router
- Create the OSPF instance:
router ospf 1
- Start Adding directly connected networks:
network 172.16.5.0 0.0.0.255 area 0
network 172.16.6.0 0.0.0.255 area 0
network 172.16.10.0 0.0.0.255 area 0
network 172.16.0.0 0.0.0.3 area 0
Do the same for MTL router using using its directly connected networks (There are only two).