IPv6 ND Router discovery data plane (VPP-1095)

Add API call to send Router Solicitation messages.
Save info from incoming Router Advertisement messages and notify listeners.

Change-Id: Ie518b5492231e03291bd4c4280be4727bfecab46
Signed-off-by: Juraj Sloboda <jsloboda@cisco.com>
This commit is contained in:
Juraj Sloboda
2018-01-15 10:39:21 +01:00
committed by Ole Trøan
parent e1b819efac
commit 4b9669dc11
8 changed files with 747 additions and 9 deletions

View File

@ -65,6 +65,11 @@ def mk_ll_addr(mac):
return addr
def ip6_normalize(ip6):
return socket.inet_ntop(socket.AF_INET6,
socket.inet_pton(socket.AF_INET6, ip6))
class NumericConstant(object):
__metaclass__ = ABCMeta