Troubleshooting · 4 min read

Asymmetric routing: why the firewall drops the return packet

Asymmetric routing occurs when traffic from Host A to Host B takes a different network path than the return traffic from B to A. This is common in redundant network designs, multi-ISP environments, and cloud hybrid architectures. The problem: stateful firewalls expect bidirectional symmetry and will drop the return packet if it arrives on an unexpected interface or from an unexpected source, breaking the connection entirely.

How stateful firewalls track connections

Modern firewalls maintain a connection state table that tracks the five-tuple: source IP, destination IP, source port, destination port, and protocol. When Host A initiates a connection to Host B, the firewall creates an entry and permits the reverse traffic (B back to A) only on that specific path and interface. If the return packet arrives from a different upstream router or ISP link, the firewall sees it as a new, unsolicited inbound connection and drops it by default.

This behavior is intentional: it prevents spoofing and unauthorized inbound traffic. However, in asymmetric routing, the return packet is legitimate but arrives on the wrong interface from the firewall's perspective.

Common asymmetric routing scenarios

Diagnosis and solutions

Start by running a traceroute in both directions from the affected hosts. If the forward and reverse paths diverge, asymmetric routing is confirmed. Verify this with packet captures on both the outbound and return interfaces at the firewall.

! On the firewall, capture return traffic:
show capture

! Check connection state table for the session:
show conn | include <source-ip> <dest-ip>

! Verify the firewall is dropping return packets:
show drop | include asymmetric

To resolve asymmetric routing firewall drops, choose one of these approaches:

Most enterprise firewalls support a 'loose' RPF mode that permits established connections on any interface, rather than strict mode that requires the return packet on the same interface as the forward packet. Check your firewall documentation for connection-aware asymmetric routing options.

Prevention and best practice

The cleanest solution is to design your network for symmetric routing from the start. Use consistent IGP metrics and BGP local preference values to ensure outbound and inbound paths align. When redundancy is required, implement it symmetrically: if traffic leaves via ISP-A, ensure return traffic prefers ISP-A as well through careful metric tuning and route advertisement control.

Understanding routing protocol administrative distance is critical when troubleshooting path selection. Different routing sources (static routes, OSPF, BGP, EIGRP) have different precedence, and incorrect distance values can inadvertently create asymmetry.

Administrative Distance reference
Quick lookup for routing protocol precedence across all major vendors
Open →
Practise this on today’s Daily Ops Drill — a free network task every day.
Open the app →
Free tools for this
More from the blog
Which ICMP types to allow through a firewallRead →Rotating router and firewall credentials without an outageRead →