Skip to main content

Fixing Cisco SD-WAN Blackholes with OMP Send-Backup-Paths

 Fixing Cisco SD-WAN Blackholes with OMP Send-Backup-Paths

The Problem: SD-WAN Blackholes During Link Failures

In Cisco SD-WAN, the Overlay Management Protocol (OMP) is responsible for advertising routes between vEdges. However, by default, vSmart only advertises the best routes based on the OMP best-path selection algorithm.

Let’s take a real-world example:



📍 Scenario:

  • vEdge-1 has two Transport Locators (TLOCs): MPLS (T11) and Biz-Internet (T12).
  • When the MPLS TLOC on vEdge-1 fails, it stops advertising the OMP route to 10.1.1.0/24.
  • vSmart selects the best available route, which still goes via vEdge-1 but over Biz-Internet.
  • Problem? vEdge-3 doesn’t have an overlay tunnel to the Biz-Internet TLOC of vEdge-1.

🔻 Result:

  • The route to 10.1.1.0/24 becomes invalid and unresolved.
  • vEdge-3 completely loses connectivity to the data center despite having a valid tunnel to vEdge-2.
  • Traceroute and ping fail to reach 10.1.1.1.

The Solution: Enabling OMP Send-Backup-Paths



By default, vSmart acts like a BGP Route Reflector, advertising only the best route. However, in SD-WAN environments where full IP reachability between TLOCs is not guaranteed, this behavior can create routing blackholes.

🔧 Fix: Enable Send-Backup-Paths on vSmart to ensure it also advertises the first set of non-best routes.


Configuration on vSmart:


vSmart(config)# omp send-backup-paths vSmart(config-omp)# commit


📈 What Changes?
vSmart now advertises routes via vEdge-2, alongside the best route via vEdge-1.
vEdge-3 learns an alternative path to 10.1.1.0/24 via vEdge-2.
IP reachability is restored, and remote sites can reach the data center again.

Validating the Fix:

1️⃣ Check OMP Routes on vEdge-3:


show omp routes 10.1.1.0/24

Now, we see both primary and backup routes advertised.

2️⃣ Run a Traceroute:



traceroute 10.1.1.1

Traffic now flows via vEdge-2 → Data Center.

Key Takeaways

🔹 vSmart hides backup routes by default under the OMP best-path algorithm.
🔹 In networks with limited TLOC reachability, this can lead to blackholes.
🔹 The OMP Send-Backup-Paths option ensures that remote vEdges receive alternative routes.
🔹 Using the Send-Backup-Paths command, vSmart behaves more like a traditional IGP rather than a strict route-reflector.

Final Thoughts

Enabling OMP Send-Backup-Paths is a simple yet powerful fix to prevent blackholes in Cisco SD-WAN. If you're deploying SD-WAN in a multi-transport environment, this feature is critical to maintaining full reachability during failures.

🔔 Subscribe for more SD-WAN insights!

#CiscoSDWAN #Networking #CCNP #CCIE #Routing #OMP #NetworkTroubleshooting #IT #vSmart #TLOC #BGP #OSPF

https://youtu.be/m4mLsvQNvmw

Comments

Popular posts from this blog

Rectangular Microstrip Patch Antenna

Microstrip is a type of electrical transmission line which can be fabricated using printed circuit board technology, and is used to convey microwave-frequency signals. It consists of a conducting strip separated from a ground plane by a dielectric layer known as the substrate. The most commonly employed microstrip antenna is a rectangular patch which looks like a truncated  microstrip  transmission line. It is approximately of one-half wavelength long. When air is used as the dielectric substrate, the length of the rectangular microstrip antenna is approximately one-half of a free-space  wavelength . As the antenna is loaded with a dielectric as its substrate, the length of the antenna decreases as the relative  dielectric constant  of the substrate increases. The resonant length of the antenna is slightly shorter because of the extended electric "fringing fields" which increase the electrical length of the antenna slightly. An early model of the microst...

Prepare Data for Exploration : weekly challenge 1

Prepare Data for Exploration : weekly challenge 1 #coursera #exploration #weekly #challenge 1 #cybersecurity #coursera #quiz #solution #network Are you prepared to increase your data exploration abilities? The goal of Coursera's Week 1 challenge, "Prepare Data for Exploration," is to provide you the skills and resources you need to turn unprocessed data into insightful information. With the knowledge you'll gain from this course, you can ensure that your data is organised, clean, and ready for analysis. Data preparation is one of the most important processes in any data analysis effort. Inaccurate results and flawed conclusions might emerge from poorly prepared data. You may prepare your data for exploration with Coursera's Weekly Challenge 1. You'll discover industry best practises and insider advice. #answers #questions #flashcard 1 . Question 1 What is the most likely reason that a data analyst would use historical data instead of gathering new data? 1 / 1...

Cracking Passwords Using John the Ripper: A Complete Step-by-Step Guide

Cracking Passwords Using John the Ripper: A Complete Step-by-Step Guide In today's post, we’re diving into a practical lab exercise that shows how to use John the Ripper, one of the most effective password-cracking tools in cybersecurity. Whether you're an IT professional or a cybersecurity student, mastering John the Ripper will help you understand password vulnerabilities and enhance your penetration testing skills. Lab Objective: The goal of this lab is to crack the root password on a Linux system (Support) and extract the password from a password-protected ZIP file (located on IT-Laptop). Both tasks are performed using John the Ripper. Steps to Crack the Root Password on Support: Open the Terminal on the Support system. Change directories to /usr/share/john . List the files and open password.lst to view common password guesses. Use John the Ripper to crack the root password by running john /etc/shadow . Once cracked, the password is stored in the john.pot file for future u...