From 3f844d0bc900e5db40ba74724e2b61e7943682d3 Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Sat, 18 Feb 2017 00:03:54 -0800 Subject: Proxy ND (RFC4389 - or a sub-set thereof). This allows the 'emulation' of bridging. That is hosts in one sub-net reachable via differenet interfaces. Introducate a new API command: ip6 nd proxy this indicates 2 things; 1) that host is reachable out of interface . VPP will thus install that route. 2) NS requests sent to will be responeded to (i.e. proxied). Change-Id: I863f967fdb5097ab3b574769c70afdbfc8d5478a Signed-off-by: Neale Ranns --- src/vnet/fib/fib_entry_src_api.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/vnet/fib/fib_entry_src_api.c') diff --git a/src/vnet/fib/fib_entry_src_api.c b/src/vnet/fib/fib_entry_src_api.c index edc8a47bc17..1277bd65af7 100644 --- a/src/vnet/fib/fib_entry_src_api.c +++ b/src/vnet/fib/fib_entry_src_api.c @@ -116,4 +116,5 @@ fib_entry_src_api_register (void) fib_entry_src_register(FIB_SOURCE_API, &api_src_vft); fib_entry_src_register(FIB_SOURCE_CLI, &api_src_vft); fib_entry_src_register(FIB_SOURCE_DHCP, &api_src_vft); + fib_entry_src_register(FIB_SOURCE_IP6_ND_PROXY, &api_src_vft); } -- cgit 1.2.3-korg