diff options
author | Sebastien Merle <sebastien@netdef.org> | 2020-05-26 14:01:03 +0200 |
---|---|---|
committer | Sebastien Merle <sebastien@netdef.org> | 2020-07-17 17:39:05 +0200 |
commit | 98a3fb0ab9b92443c0c92e073d3f184b88dcbfc6 (patch) | |
tree | 6155c3a53f8207b224c2f8fac522069cfc1dbdef /zebra/zserv.h | |
parent | Merge pull request #6752 from xThaid/evpn_neigh_fix (diff) | |
download | frr-98a3fb0ab9b92443c0c92e073d3f184b88dcbfc6.tar.xz frr-98a3fb0ab9b92443c0c92e073d3f184b88dcbfc6.zip |
zebra: add IPv6 router-id
* add a vrf sub-command `[no] ipv6 router-id X:X::X:X`.
* add command `[no] ipv6 router-id X:X::X:X [vrf NAME]` for backward
compatibility.
* add a vrf sub-command `[no] ip router-id A.B.C.D` and make the old
one without `ip` an alias for it.
* add a command `[no] ip router-id A.B.C.D [vrf NAME]` for backward
comptibility and make the old one without `ip` an alias for it.
* add command `show ip router-id [vrf NAME]` and make
the old one without `ip` an alias for it.
* add command `show ipv6 router-id [vrf NAME]`.
* add ZAPI commands `ZEBRA_ROUTER_ID_V6_ADD`,
`ZEBRA_ROUTER_ID_V6_DELETE` and `ZEBRA_ROUTER_ID_V6_UPDATE`
for deamons to get notified of the IPv6 router-id.
* update zebra documentation.
Signed-off-by: Sebastien Merle <sebastien@netdef.org>
Diffstat (limited to 'zebra/zserv.h')
-rw-r--r-- | zebra/zserv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zserv.h b/zebra/zserv.h index f2a452381..3eb0a9151 100644 --- a/zebra/zserv.h +++ b/zebra/zserv.h @@ -135,7 +135,7 @@ struct zserv { vrf_bitmap_t redist_default[AFI_MAX]; /* Router-id information. */ - vrf_bitmap_t ridinfo; + vrf_bitmap_t ridinfo[AFI_MAX]; bool notify_owner; |