diff options
| author | Ryoga Saito <contact@proelbtn.com> | 2021-08-19 05:37:18 +0000 |
|---|---|---|
| committer | Ryoga Saito <contact@proelbtn.com> | 2021-08-19 05:47:20 +0000 |
| commit | ff7c3ee1cc38c5e5ed4701a49c19d479610739c3 (patch) | |
| tree | 927199a0f8910c9ff2e9ed9306f01f7bbef55ede | |
| parent | a7279c5f43977320599e0c337a3dba06be8fdab9 (diff) | |
bpgd: add "exit" at the end of bgp srv6 setting
without "exit", when frr is starting up, frr fails to load
address-family setting correctly.
Signed-off-by: Ryoga Saito <contact@proelbtn.com>
| -rw-r--r-- | bgpd/bgp_vty.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bgpd/bgp_vty.c b/bgpd/bgp_vty.c index a031b78971..178b5d5e66 100644 --- a/bgpd/bgp_vty.c +++ b/bgpd/bgp_vty.c @@ -17152,6 +17152,7 @@ int bgp_config_write(struct vty *vty) if (strlen(bgp->srv6_locator_name)) vty_out(vty, " locator %s\n", bgp->srv6_locator_name); + vty_endframe(vty, " exit\n"); } |
