Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion dpd/p4/sidecar.p4
Original file line numberDiff line numberDiff line change
Expand Up@@ -746,7 +746,11 @@ control NatIngress (
hdr.inner_eth.ether_type = hdr.vlan.ether_type;
hdr.vlan.setInvalid();
}
} else if (meta.uplink_ingress && !meta.is_switch_address) {
} else if (
meta.uplink_ingress &&
!meta.is_switch_address &&
!meta.is_link_local_mcastv6
) {
// If this packet arrived on an Uplink port and it
// wasn't addressed to the switch or to an established
// NAT range, then drop it. This lets us forward traffic
Expand Down