Site icon Afzal Badshah, PhD

Advanced Routing Protocols – EIGRP and BGP

Free internet lan modem image

Routing protocols play a crucial role in directing network traffic efficiently. Two advanced routing protocols widely used in large-scale networks are Enhanced Interior Gateway Routing Protocol (EIGRP) and Border Gateway Protocol (BGP).

Enhanced Interior Gateway Routing Protocol (EIGRP)

EIGRP is an advanced routing protocol developed by Cisco Systems. It is designed for use within an autonomous system (AS) and is known for its rapid convergence and low bandwidth usage. EIGRP incorporates features of both distance vector and link-state routing protocols.

Key Concepts:

Configuration:

Enabling EIGRP on interfaces

router eigrp [AS-number]   
network [network-address] [wildcard-mask]

Configuring router ID

router eigrp [AS-number]
eigrp router-id [router-id]

Fine-tuning metrics

  interface [interface-type] [interface-number]
  bandwidth [bandwidth-in-kbps]

Authentication and summarization

  router eigrp [AS-number]
  authentication mode [md5]
  summary-address [summary-address]

AS-number is Autonomous System number

Troubleshooting

Verifying EIGRP neighbors

  show ip eigrp neighbors

Analyzing topology tables

  show ip eigrp topology

Debugging commands

  debug eigrp packets

Border Gateway Protocol (BGP)

BGP is a path vector protocol widely used for routing between different autonomous systems (AS) on the internet. It places emphasis on policy-based routing, allowing administrators to control the selection of network paths.

Key Concepts

Configuration

Establishing BGP sessions

  router bgp [AS-number]
  neighbor [peer-ip] remote-as [peer-AS]

Advertisement of routes

  router bgp [AS-number]
  network [network-address] mask [subnet-mask]

Route filtering and policy implementation

  router bgp [AS-number]
  neighbor [peer-ip] filter-list [access-list] out

BGP route aggregation

  router bgp [AS-number]
  aggregate-address [aggregate-address] summary-only

Best Practices and Optimization

EIGRP

BGP

Security Considerations

EIGRP

BGP

Monitoring and Troubleshooting

EIGRP

BGP

Self Assessment

Exit mobile version