mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38: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
254 B
Text
11 lines
254 B
Text
# @TEST-EXEC: bro -r $TRACES/ip6_esp.trace %INPUT >output
|
|
# @TEST-EXEC: btest-diff output
|
|
|
|
# Just check that the event is raised correctly for a packet containing
|
|
# ESP extension headers.
|
|
|
|
event esp_packet(p: pkt_hdr)
|
|
{
|
|
if ( p?$ip6 )
|
|
print p$ip6;
|
|
}
|