Lab 9.1: Build a Network Challenge 1 - squatchulator/Tech-Journal GitHub Wiki

Goals of this lab:

  • Only configure Foster 202 Co. Network - ISP's and Remote Sites are the next lab (Challenge 2)
  • Configure Interfaces
  • Configure BTV Multi-Layer Switch VLANs
  • Set up OSPF Routing
  • Ping successfully among BTV-User, BTV-DC, and MTL networks

Configurations

btv-mls
-------
enable
conf t
hostname btv-mls
ip routing
vlan 5 
name Users
vlan 6
name DC
interface vlan 1
no sh
interface vlan 5
no sh
ip address 172.16.5.1 255.255.255.0
interface vlan 6
no sh
ip address 172.16.6.1 255.255.255.0
interface vlan 10
no sh
ip address 172.16.10.1 255.255.255.0
interface range fastethernet0/1
switchport access vlan 10
interface range fastethernet0/2
switchport access vlan 5
interface range fastethernet0/6
switchport access vlan 6
router ospf 1
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

btv-router
----------
enable
conf t
hostname btv-router
interface fastethernet0/0
ip address 172.16.10.1 255.255.255.0
no sh
interface serial0/1/0
ip address 172.16.0.1 255.255.255.252
no sh
router ospf 1
default-information originate
network 172.16.10.0 0.0.0.255 area 0
network 172.16.0.0 0.0.0.3 area 0

mtl-router
----------
enable
conf t
hostname mtl-router
interface fastethernet0/0
ip address 172.16.20.1 255.255.255.0
no sh
interface serial0/1/0
ip address 172.16.0.2 255.255.255.252
no sh
router ospf 1
network 172.16.20.0 0.0.0.255 area 0
network 172.16.0.0 0.0.0.3 area 0