mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 23:58:20 +00:00

- Accessible at script-layer through 'mobile_ipv6_message' event. - All Mobile IPv6 analysis now enabled through --enable-mobile-ipv6 configure-time option, otherwise the mobility header, routing type 2, and Home Address Destination option are ignored.
11 lines
385 B
Text
11 lines
385 B
Text
# @TEST-REQUIRES: grep -q "#define ENABLE_MOBILE_IPV6" $BUILD/config.h
|
|
# @TEST-EXEC: bro -b -r $TRACES/mobile-ipv6/ipv6-mobile-hoa.trace %INPUT >output
|
|
# @TEST-EXEC: btest-diff output
|
|
|
|
# Just check that the orig of the connection is the Home Address, but the
|
|
# source in the header is the actual source address.
|
|
event new_packet(c: connection, p: pkt_hdr)
|
|
{
|
|
print c$id;
|
|
print p;
|
|
}
|