Skip to main content

Posts

Showing posts from October, 2025

BGP Routing Protocol Practice Lab 01

  BGP Routing Protocol Practice Lab 01 Lab 1: MED and AS-Path Prepend Basic configuration R1: interface Loopback0 ip address 1.1.1.1 255.255.255.255 ! interface FastEthernet0/0  ip address 150.1.1.1 255.255.255.0  no shut ! interface Serial0/0 ip address 10.0.0.1 255.255.255.252 no shut R2: interface Loopback0 ip address 2.2.2.2 255.255.255.255 ! interface Loopback192 ip address 192.1.1.1 255.255.255.0 ! interface Loopback193 ip address 193.1.1.1 255.255.255.0 ! interface Loopback194 ip address 194.1.1.1 255.255.255.0 ! interface Loopback195 ip address 195.1.1.1 255.255.255.0 ! interface Serial0/0 ip address 10.0.0.2 255.255.255.252 no shut ! interface Serial0/1 ip address 10.0.0.9 255.255.255.252 no shut R3: interface Loopback0 ip address 3.3.3.3 255.255.255.255 ! interface FastEthernet0/0 ip address 150.3.3.3 255.255.255.0 no shut ! interface Serial0/1 ip address 10.0.0.10 255.255.255.252 no shut ! interface Serial0/2 ip address 10.0.0.13 255.255.255.252 no shut !...

I-BGP USING FULL MESH NEIGHBORSHIP & BGP SPLIT HORIZON RULE - LAB

 I-BGP USING FULL MESH NEIGHBORSHIP & BGP SPLIT HORIZON RULE Assign the basic IP Addressing as per the routers! Router>enable Router#configure terminal Router(config)#hostname R-1 R-1(config)#interface gig0/0 R-1(config-if)#ip add 1.1.1.1 255.0.0.0 R-1(config-if)#no shut R-1(config-if)#exit R-1(config)#interface gig0/1 R-1(config-if)#ip add 4.4.4.2 255.0.0.0 R-1(config-if)#no shut R-1(config-if)#exit R-1(config)#interface gig0/2 R-1(config-if)#ip add 10.1.1.1 255.0.0.0 R-1(config-if)#no shut R-1(config-if)#exit . Router>enable Router#configure terminal Router(config)#hostname R-2 R-2(config)#interface gig0/0 R-2(config-if)#ip add 1.1.1.2 255.0.0.0 R-2(config-if)#no shut R-2(config-if)#exit R-2(config)#int gig0/1 R-2(config-if)#ip add 2.2.2.1 255.0.0.0 R-2(config-if)#no shut R-2(config-if)#exit R-2(config)#interface gig0/2 R-2(config-if)#ip add 20.1.1.1 255.0.0.0 R-2(config-if)#no shut R-2(config-if)#exit Router>enable Router#configure terminal Router(config)#hostname...

🧭 Understanding OSPF Network Types: A Complete Guide for Network Engineers

 Open Shortest Path First ( OSPF ) is one of the most widely used interior gateway protocols (IGPs) in enterprise and service provider networks. It helps routers dynamically discover the best path to reach every destination within an autonomous system. However, one of the most important — yet often misunderstood — parts of OSPF configuration is “Network Types.” In this article, we’ll break down the different OSPF network types , their uses , benefits , limitations , requirements , and a comparison between them. Whether you’re preparing for CCNA, CCNP , or designing large-scale networks, understanding OSPF network types is critical for efficient routing and convergence. 🧩 What Are OSPF Network Types? OSPF supports several network types that define how routers communicate within a particular link or segment. Each network type affects: How Hello packets are exchanged Whether a Designated Router (DR) and Backup Designated Router (BDR) are elected What kind of adjacen...