Default information originate

config router bgp
    set as 65002
    set router-id 1.1.1.2
    config neighbor
        edit "1.1.1.1"
            set capability-default-originate enable
            set remote-as 65001
  • This will advertise a default route to the BGP peer without a default route present in the RIB. The default route will be created to be announced to the BGP neighbor only.

Reference

Last updated