Routing Configuration Guide, Cisco IOS XE Catalyst SD-WAN Release 17.x

PDF

Configure Cisco SD-WAN Controller route filtering by TLOC color using a CLI template

Want to summarize with AI?

Log in

Overview

Describes how you can outbound transport filter, adjust dampening intervals for flapping links, and define custom color compatibility. Use this procedure to implement control plane optimizations through CLI templates on both controllers and edge devices.


Enable route filtering using a CLI template

Before you begin

By default, CLI templates execute commands in global configuration mode. For more information about using CLI templates, see CLI Add-On Feature Templates and CLI Templates.

This configuration applies to a Cisco SD-WAN Controller.

Procedure

1.

Enter OMP mode.

omp 
2.

Enter filter-route configuration mode.

filter-route 
3.

Enable route filtering.

outbound tloc-color 
omp
 filter-route
  outbound tloc-color
!

Configure the update interval for route filtering by TLOC color using a CLI template

Before you begin

By default, CLI templates execute commands in global configuration mode.

For more information about using CLI templates, see CLI Add-On Feature Templates and CLI Templates.

This configuration applies to a Cisco IOS XE Catalyst SD-WAN device.

Procedure

1.

Enter OMP configuration mode.

omp 
2.

Configure the update interval, in seconds, in the range 60 to 1200.

timers
tloc-color-cap-update-interval interval 

Example:

omp      
  no shutdown
  ecmp-limit       6
  graceful-restart
  no as-dot-notation
  timers  
   holdtime                       15
   tloc-color-cap-update-interval 120
   graceful-restart-timer         120
  exit    
  address-family ipv4
   advertise ospf external
   advertise connected
   advertise static
  !       
  address-family ipv6
   advertise ospf external
   advertise connected
   advertise static
  !       
 !        
!

Override default TLOC color compatibility for Cisco SD-WAN Controller route filtering by TLOC color using a CLI template

Before you begin

By default, CLI templates execute commands in global configuration mode.

For more information about using CLI templates, see CLI Add-On Feature Templates and CLI Templates.

You can override the default logic if necessary and do one of the following:

  • Configure two TLOC colors to be compatible even if they are incompatible by default.

  • Configure two TLOC colors to be incompatible even if they are compatible by default.

This may be helpful in specific unconventional scenarios.

This configuration applies to a Cisco SD-WAN Controller.

Procedure

1.

Enter system mode.

system 
2.

Enter TLOC color compatibility mode.

tloc-color-compatibility 
3.

Enter one or more of the following.

  • To configure two TLOC colors to be compatible, do the following:

    compatible first-color second-color 
  • To configure two TLOC colors to be incompatible, do the following:

    incompatible first-color second-color 

This example does the following:

  • Configures the lte and private1 TLOC colors to be compatible

  • Configures the private1 and private2 TLOC colors to be compatible

  • Configures the lte and default TLOC colors to be incompatible

  • Configures the lte and 3g TLOC colors to be incompatible

system
 host-name vm1
 system-ip 10.0.10.1
 site-id               100
 tloc-color-compatibility
  compatible lte private1
  !
  compatible private1 private2
  !
  incompatible lte default
  !
  incompatible lte 3g
  !
 !