diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2020-07-09 11:57:22 -0400 | 
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2020-07-09 11:57:22 -0400 | 
| commit | 03fba42ebb5947d43728ee5d0e07dbbba009c7cf (patch) | |
| tree | f7271586fc6ab6fc7b6c1dc33567b92edbe4be02 /zebra/zebra_vrf.c | |
| parent | 4030687aab47da7ea11ff2420fdda016e0e7f9d5 (diff) | |
zebra: Allow router-id to be part of the vrf sub node
Modify zebra to accept router-id's as part of the
vrf subnode.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'zebra/zebra_vrf.c')
| -rw-r--r-- | zebra/zebra_vrf.c | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/zebra/zebra_vrf.c b/zebra/zebra_vrf.c index ee1e251a69..d102b02a21 100644 --- a/zebra/zebra_vrf.c +++ b/zebra/zebra_vrf.c @@ -544,6 +544,7 @@ static int vrf_config_write(struct vty *vty)  		zebra_routemap_config_write_protocol(vty, zvrf); +		router_id_write(vty, zvrf);  		if (zvrf_id(zvrf) != VRF_DEFAULT)  			vty_endframe(vty, " exit-vrf\n!\n");  | 
