- Newest
- Most votes
- Most comments
The behavior you're observing is likely related to how Traffic Mirroring handles certain types of network traffic. When you set up Traffic Mirroring in Amazon VPC, there are some limitations and specific behaviors to be aware of:
-
Traffic Mirroring encapsulates the mirrored packets using VXLAN (Virtual Extensible LAN) headers. This encapsulation is necessary to route the mirrored traffic to the target.
-
When the mirrored traffic reaches the target (in your case, 10.10.10.129), the target needs to decapsulate the VXLAN packets to access the original traffic.
-
The ICMP Type 3 messages you're seeing are likely "Destination Unreachable" messages. These are generated when a packet cannot be delivered to its intended destination for various reasons.
-
In your setup, it appears that after decapsulation, the target (10.10.10.129) is attempting to process or route the original ICMP packets. However, since these packets were mirrored and not intended for actual delivery at the target, the target generates ICMP Type 3 messages in response.
-
This behavior is not necessarily an anomaly, but rather a side effect of how the mirrored traffic is processed at the target.
It's important to note that inbound traffic that is dropped at the traffic mirror source due to security group rules or network ACL rules is not mirrored. However, mirrored outbound traffic is not subject to the outbound security group rules for the traffic mirror source.
To mitigate this behavior, you might consider adjusting your traffic mirror filter to be more specific about the types of traffic you want to mirror, or you may need to configure your monitoring tools (like arkime) to ignore or filter out these ICMP Type 3 messages if they're not relevant to your analysis.
Sources
Understand traffic mirror target concepts - Amazon Virtual Private Cloud
Understand traffic mirror filter concepts - Amazon Virtual Private Cloud
Understanding traffic mirror packet format - Amazon Virtual Private Cloud
Relevant content
- asked 5 years ago
- AWS OFFICIALUpdated 2 years ago