9 1 Build a Network: Challenge 1 - ItsMmmike/NET-330_Tech-Journal GitHub Wiki

Build a Network: Challenge 1 (Lab OSPF Net Setup)

Purpose:

  • In this lab we use Packet Tracer to configure a small OSPF Network for the "Foster 202" Company which will be used in the upcoming BGP Lab #9-2 Network Environment.

Materials:

  • Cisco Packet Tracer
  • Lab Packet Tracer Starter File

Objective:

The completed lab environment should look similar to below:

image

===

Working Notes/Documentation:

BTV Router Config

# Configuring Router Hostname
ena
conf t
hostname Mike_BTV-Router

# Configure Interfaces
int fa0/0 # (to BTV-MLS)
ip address 172.16.10.1 255.255.255.0
no shut

int se0/1/0 # (to MTL-Router)
ip address 172.16.0.1 255.255.255.252
no shut

# Configure Routing/OSPF
ena
conf t
ip routing
router ospf 1
network 172.16.0.0 0.0.0.3 area 0
network 172.16.10.0 0.0.0.255 area 0

# Save Configuration
end
enable
copy run start

BTV Multilayer-Switch Config

# Configuring Router Hostname
ena
conf t
hostname Mike_Dist-MLS

# Configure VLAN Interfaces
vlan 10
name GW
int vlan 10 # (to BTV Router Pt.1)
ip address 172.16.10.2 255.255.255.0
no shut

vlan 5
name Users
int vlan 5 # (User-Net GW)
ip address 172.16.5.1 255.255.255.0
no shut

vlan 6
name GW
int vlan 6 # (DC-Net GW)
ip address 172.16.6.1 255.255.255.0
no shut

# Configure Interfaces
int fa0/1 # (to BTV Router Pt.2)
switchport mode access
switchport access vlan 10
no shut

int fa0/2 # (to User-Net)
switchport mode access
switchport access vlan 5
no shut

int fa0/6 # (to DC-Net)
switchport mode access
switchport access vlan 6
no shut

# Configure Routing/OSPF
ena
conf t
router ospf 1
network 172.16.10.0 0.0.0.255 area 0
network 172.16.5.0 0.0.0.255 area 0
network 172.16.6.0 0.0.0.255 area 0

# Save Configuration
end
enable
copy run start

MTR Router Config

# Configuring Router Hostname
ena
conf t
hostname Mike_MTL-Router

# Configure Interfaces
int fa0/0 # (to Montreal-Net)
ip address 172.16.20.1 255.255.255.0
no shut

int se0/1/0 # (to BTV-Router)
ip address 172.16.0.2 255.255.255.252
no shut

# Configure Routing/OSPF
ena
conf t
ip routing
router ospf 1
network 172.16.0.0 0.0.0.3 area 0
network 172.16.20.0 0.0.0.255 area 0

# Save Configuration
end
enable
copy run start

===

Deliverables:

image

Screenshot of the "sh ip route" command being run on the BTV-Router to show the current Routing Table

image

Screenshot of the "sh ip route" command being run on the MTL-Router to show the current Routing Table

image

Screenshot of the "User Laptop" (172.16.5.2) successfully pinging the "Montreal Laptop" (172.16.20.2)