I am having a problem with Xen where all outbound traffic from domU's are showing up as if it was coming from the dom0. Traffic passes both ways without a problem. I do not have NAT enabled. I am using bridging network mode.
Any ideas on how to troubleshoot this issue, or what the problem might be?
I figured it out! Turns out there was, in fact, POSTROUTING options in place through iptables. Deleting them quickly settled the issue, and all source addresses appear as they should. I thought I cleared out everything by using
iptables -F
and thenservice iptables save
(to save my configuration changes). However the rules did not show up when using the commandiptables -L
. That showed no rules.For whatever reason, using
service iptables status
displayed everything. Maybe someone can help explain the difference there.