From 7723e8d3fd86a2e00b99df6fbb64083c23c1e637 Mon Sep 17 00:00:00 2001 From: Philippe Guibert Date: Thu, 12 Dec 2019 16:06:59 +0100 Subject: zebra: link layer config and notification, implementation in zebra zebra implements zebra api for configuring link layer information. that can be an arp entry (for ipv4) or ipv6 neighbor discovery entry. This can also be an ipv4/ipv6 entry associated to an underlay ipv4 address, as it is used in gre point to multipoint interfaces. this api will also be used as monitoring. an hash list is instantiated into zebra (this is the vrf bitmap). each client interested in those entries in a specific vrf, will listen for following messages: entries added, removed, or who-has messages. Signed-off-by: Philippe Guibert --- lib/log.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib/log.c') diff --git a/lib/log.c b/lib/log.c index 9a8a91b004..6e8df99512 100644 --- a/lib/log.c +++ b/lib/log.c @@ -467,7 +467,9 @@ static const struct zebra_desc_table command_types[] = { DESC_ENTRY(ZEBRA_EVPN_REMOTE_NH_DEL), DESC_ENTRY(ZEBRA_NHRP_NEIGH_ADDED), DESC_ENTRY(ZEBRA_NHRP_NEIGH_REMOVED), - DESC_ENTRY(ZEBRA_NHRP_NEIGH_GET)}; + DESC_ENTRY(ZEBRA_NHRP_NEIGH_GET), + DESC_ENTRY(ZEBRA_NHRP_NEIGH_REGISTER), + DESC_ENTRY(ZEBRA_NHRP_NEIGH_UNREGISTER)}; #undef DESC_ENTRY -- cgit v1.2.3