Border reboot: Difference between revisions

From Delft Solutions
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 7: Line 7:
* neighbor <ipv6> shutdown
* neighbor <ipv6> shutdown
* exit
* exit
* ospf
* router ospf
* no default-information originate
* no default-information originate
* exit
* exit
* ospf6
* router ospf6
* no default-information originate
* no default-information originate
* exit
* exit

Revision as of 10:20, 14 February 2024

On a border in `vtysh`, update the running configuration by invoking the following:

  • config
  • router bgp
  • neighbor <ipv4> shutdown
  • neighbor <ipv6> shutdown
  • exit
  • router ospf
  • no default-information originate
  • exit
  • router ospf6
  • no default-information originate
  • exit
  • exit

Undoing the shutdown of the neighbors can be done by invoking `no neighbor <ip> shutdown` in the `router bgp` part of the configuration. And the `no default-information originate` can be undone by invoking `default-information originate` in the corect ospf part of the configuration (ospf or ospf6, depending on which one you wish to re-enable).

A reload/restart of the service will also reset to normal configuration.