diff options
Diffstat (limited to 'regress')
-rw-r--r-- | regress/sys/netinet6/nd6/nd6_dad.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/regress/sys/netinet6/nd6/nd6_dad.py b/regress/sys/netinet6/nd6/nd6_dad.py index c2d9e80daed..d9fe8d1fd33 100644 --- a/regress/sys/netinet6/nd6/nd6_dad.py +++ b/regress/sys/netinet6/nd6/nd6_dad.py @@ -35,7 +35,7 @@ if os.fork() == 0: os._exit(0) ans=sniff(iface=LOCAL_IF, timeout=3, filter= - "ip6 and src "+lla(REMOTE_MAC)+" and dst ff02::1 and icmp6") + "ip6 and src net fe80::/64 and dst ff02::1 and icmp6") for a in ans: if a and a.type == ETH_P_IPV6 and \ ipv6nh[a.payload.nh] == 'ICMPv6' and \ |