Student Name: Yousef Mohammed Yousef Al-Sabbah
Student ID: 120212265
Instructor Name: Malak Ghabayen
This document outlines the configurations and commands necessary to implement BGP, OSPF, EIGRP, and HSRP routing across a multi-department network topology. It provides a high-level view of configuration commands without specific IP addresses.
- Assignment Overview
- Generic Commands for OSPF Configuration
- Specific Department Configurations
- Core Router Configuration
- EIGRP Configuration for Departments
- Verification Commands
The goal of this assignment is to configure BGP, OSPF, EIGRP, and HSRP for full network connectivity across three departments connected to a Core Router. The departments are segmented into different subnets and include various routing protocols tailored to their size and complexity. Additionally, BGP is used for communication between departments, with each department treated as an AS, while HSRP is implemented within the HR department for redundancy.
Below are the high-level steps and commands used to configure OSPF:
- Enable privileged EXEC mode:
enable
- Enter global configuration mode:
configure terminal
- Start the OSPF process with a specific process ID:
router ospf <process-id>
- Configure networks and associate them with OSPF areas:
network <network-ip> <wildcard-mask> area <area-id>
- (Optional) Manually set the router ID for identification in the OSPF topology:
router-id <router-id>
- Save the configuration:
write memory
- Check the OSPF neighbor relationships:
show ip ospf neighbor
- Verify the OSPF routing table:
show ip route ospf
- Inspect OSPF database information:
show ip ospf database
- Enable EIGRP process:
router eigrp <autonomous-system-number>
- Configure networks:
network <network-ip> <wildcard-mask>
- Redistribute BGP routes into EIGRP:
redistribute bgp <as-number>
- Ensure loopback interfaces are included:
network <loopback-ip> 0.0.0.0
- Enable EIGRP process:
router eigrp <autonomous-system-number>
- Configure networks for HR routers:
network <network-ip> <wildcard-mask>
- Implement HSRP for redundancy:
standby <group-number> ip <virtual-ip> standby <group-number> priority <priority-value> standby <group-number> preempt
- Redistribute BGP routes into EIGRP:
redistribute bgp <as-number>
- Enable OSPF process:
router ospf <process-id>
- Configure networks for R&D routers:
network <network-ip> <wildcard-mask> area <area-id>
- Redistribute BGP routes into OSPF:
redistribute bgp <as-number> subnets
- Enable OSPF process:
router ospf <process-id>
- Configure inter-department WAN links:
network <wan-network-ip> <wildcard-mask> area <area-id>
- Redistribute BGP routes into OSPF:
redistribute bgp <as-number> subnets
- Enable BGP and configure AS connections:
router bgp <core-as-number> neighbor <department-router-ip> remote-as <department-as-number>
- Enable EIGRP process:
router eigrp <autonomous-system-number>
- Configure networks for EIGRP:
network <network-ip> <wildcard-mask>
- Redistribute BGP routes into EIGRP:
redistribute bgp <as-number>
- Configure passive interfaces where necessary:
passive-interface <interface>
- Verify OSPF neighbor relationships:
show ip ospf neighbor
- Verify EIGRP neighbors:
show ip eigrp neighbors
- Verify the routing table:
show ip route
- Verify HSRP status:
show standby brief
- Verify BGP connections:
show ip bgp summary
This document provides a streamlined view of the required configurations for enabling BGP, OSPF, EIGRP, and HSRP across the network topology. Detailed command outputs and configurations are available upon request.