diff options
author | Igor Ryzhov <iryzhov@nfware.com> | 2021-06-21 17:04:46 +0200 |
---|---|---|
committer | Igor Ryzhov <iryzhov@nfware.com> | 2021-06-21 17:04:46 +0200 |
commit | f5eef2d5a8a471fe6e4ec4f6acfa3dbf190eda5d (patch) | |
tree | 58ed00dffe8ba1f1c64ca0b6dfa3153da9ec6e43 /ripd | |
parent | Merge pull request #8841 from volta-networks/fix_ospf6_bad_seqnum (diff) | |
download | frr-f5eef2d5a8a471fe6e4ec4f6acfa3dbf190eda5d.tar.xz frr-f5eef2d5a8a471fe6e4ec4f6acfa3dbf190eda5d.zip |
lib: remove vrf-interface config when removing the VRF
If we have the following configuration:
```
vrf red
smth
exit-vrf
!
interface red vrf red
smth
```
And we delete the VRF using "no vrf red" command, we end up with:
```
interface red
smth
```
Interface config is preserved but moved to the default VRF.
This is not an expected behavior. We should remove the interface config
when the VRF is deleted.
Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
Diffstat (limited to 'ripd')
-rw-r--r-- | ripd/ripd.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ripd/ripd.c b/ripd/ripd.c index c6c82fb65..7d940efd9 100644 --- a/ripd/ripd.c +++ b/ripd/ripd.c @@ -3690,6 +3690,8 @@ void rip_vrf_init(void) { vrf_init(rip_vrf_new, rip_vrf_enable, rip_vrf_disable, rip_vrf_delete, rip_vrf_enable); + + vrf_cmd_init(NULL, &ripd_privs); } void rip_vrf_terminate(void) |