IPv6 NS RS tests and fixes
includes Fix for VPP-584 with API change to remove prefix length from LL programming Change-Id: If860751c35e60255fb977f73bc33e8c2649e728e Signed-off-by: Neale Ranns <nranns@cisco.com>
This commit is contained in:
@ -10,13 +10,14 @@ from scapy.layers.inet6 import IPv6, ICMPv6ND_NS, ICMPv6ND_NA,\
|
||||
ICMPv6NDOptSrcLLAddr, ICMPv6NDOptDstLLAddr, ICMPv6ND_RA, RouterAlert, \
|
||||
IPv6ExtHdrHopByHop
|
||||
from util import ppp, ppc
|
||||
from scapy.utils6 import in6_getnsma, in6_getnsmac
|
||||
from scapy.utils6 import in6_getnsma, in6_getnsmac, in6_ismaddr
|
||||
from scapy.utils import inet_pton, inet_ntop
|
||||
|
||||
def is_ipv6_misc(p):
|
||||
""" Is packet one of uninteresting IPv6 broadcasts? """
|
||||
if p.haslayer(ICMPv6ND_RA):
|
||||
return True
|
||||
if in6_ismaddr(p[IPv6].dst):
|
||||
return True
|
||||
if p.haslayer(IPv6ExtHdrHopByHop):
|
||||
for o in p[IPv6ExtHdrHopByHop].options:
|
||||
if isinstance(o, RouterAlert):
|
||||
|
Reference in New Issue
Block a user