Lab 8 1B: OSPF PT Activity - ItsMmmike/NET-330_Tech-Journal GitHub Wiki
OSPF PT Activity
Purpose:
- In this lab we learn how to configure and implement OSPF onto a Small Enterprise Environment in order to allow internal networks to be dynamically routed using the Shortest Path First (SFP) algorithm.
Materials:
- Cisco Packet Tracer
- Lab Packet Tracer File
Objective:
The completed lab environment should look similar to below:
Additionally, I used the following Routing Table to help configure the Network Environment above:
Network Name | Network Address | Subnet Mask | Default Gateway | Router acting as Gateway |
---|---|---|---|---|
Border-to-Data Center | 10.6.1.0 | 255.255.255.248 | 10.6.1.1 | Border |
East-Router2 to Data Center | 10.6.1.20 | 255.255.255.252 | 10.6.1.21 | East-Router |
DataCenter-to WestRouter4 | 10.6.1.32 | 255.255.255.252 | 10.6.1.33 | Data Center-Router |
East | 10.6.20.0 | 255.255.255.0 | 10.6.20.1 | East-Router |
West | 10.6.40.0 | 255.255.255.0 | 10.6.40.1 | West-Router |
===
Working Notes/Documentation:
Border Router Configuration
# Configuring Router Hostname
ena
conf t
hostname Mike_Border-Router1
# Configure Interface
int gi0/0 # (to datacenter)
ip address 10.6.1.1 255.255.255.248
no shut
end
# Configure Routing/OSPF
enable
conf t
ip routing
router ospf 1 # Enables OSPF with Process ID 1
network 10.6.1.0 0.0.0.7 area 0 # Configures OSPF Network Advertisement on Area 0
# Save Configuration
end
enable
copy run start
Datacenter Router Configuration
# Configuring Router Hostname
ena
conf t
hostname Mike_DataCenter-Router3
# Configure Interfaces
int gi0/0 # (to East)
ip address 10.6.1.21 255.255.255.252
no shut
int gi0/1 # (to West)
ip address 10.6.1.33 255.255.255.252
no shut
int gi0/2 # (to Border)
ip address 10.6.1.2 255.255.255.248
no shut
end
# Configure Routing/OSPF
enable
conf t
ip routing
router ospf 1
network 10.6.1.0 0.0.0.7 area 0
network 10.6.1.20 0.0.0.3 area 0
network 10.6.1.32 0.0.0.3 area 0
# Save Configuration
end
enable
copy run start
East Router Config
# Configure hostname
Enable
Conf t
Hostname Mike_East-Router2
# Configure Interfaces
Int gi0/0 # (to datacenter)
Ip address 10.6.1.22 255.255.255.252
No shut
Int gi0/1 # (East-Net)
Ip address 10.6.20.1 255.255.255.0
No shut
end
# Configure Routing/OSPF
Enable
Conf t
Ip routing
Router ospf 1
Network 10.6.20.0 0.0.0.255 area 0
Network 10.6.1.20 0.0.0.3 area 0
# Save config
End
Enable
Copy run start
West Router Config
# Configure hostname
Enable
Conf t
Hostname Mike_West-Router4
# Configure Interfaces
Int gi0/0 # (to datacenter)
Ip address 10.6.1.34 255.255.255.252
No shut
Int gi0/1 # (West-Net)
Ip address 10.6.40.1 255.255.255.0
No shut
end
# Configure Routing/OSPF
Enable
Conf t
Ip routing
Router ospf 1
Network 10.6.40.0 0.0.0.255 area 0
Network 10.6.1.32 0.0.0.3 area 0
# Save config
End
Enable
Copy run start
===
Deliverables:
Deliverable 1:
Figure 1: Screenshot of me successfully pinging between the East PC (10.6.20.2) using the West PC (10.6.40.2)
Deliverable 2:
Figures 2.1 + 2.2 + 2.3 + 2.4: Screenshots of the output of the “sh ip route” command being run on the Border, Datacenter, East, and West Routers. This shows that each network has been successfully added to each router’s routing table via OSPF.