Category Archives: CISCO

Default routes in BGP

There are 3 ways of advertising default route in BGP. Method 1: Using network 0.0.0.0 command. It requires only that the route 0.0.0.0 is present in the Interior Gateway Protocol (IGP) routing table. This is the preferred approach. Method 2: Using default-information originate command. It requires explicit redistribution of the route 0.0.0.0. This protects against… Read More »

Loading

FIB vs RIB

Terminology: RIB – Routing Information Base FIB – Forwarding Information Base RIB This is a routing protocols database of routing prefixes that could potentially be installed in the routing table. Derived from the control plane, it is not used for forwarding. Every protocol such as OSPF, EIGRP, BGP has its own RIB and select their… Read More »

Loading

BGP RIB-Failure

When a Router receives a BGP UPDATE packet that contains Network Layer Reachability Information (NLRI) – this is, a route; the packet is processed in the next order: – Step 1. BGP checks for the NLRI (prefix received) against any BGP inbound filter configured on the Router. – Step 2. If the NLRI is not… Read More »

Loading

BGP Aggregate experiment

The BGP aggregate-address can be used to summarise a set of networks into a single prefix. For this post, I just wanted to show the difference between aggregate-address and aggregate-address with summary only. We have below topology. I’m going to summarise prefixes in R1. R1 config hostname R1 ! interface GigabitEthernet0/0 ip address 10.10.10.1 255.255.255.252… Read More »

Loading

Cisco DHCP Server: Excluding IP Addresses

Most of the time in a small network, we will be using the Layer 3 device as a default gateway and a DHCP server. And most of the time also, we will be excluding the gateway’s ip address from the dhcp pool. Just to save 1 more configuration line and for the sake of knowledge,… Read More »

Loading