Trying to NAT ips in different network using iptables.
KVM host with ip 10.10.11.36 on bridge br0.
Two vms are running with ip 192.168.11.60 and 192.168.11.57 sharing bridge br0.
Want to NAT all request coming on 10.10.11.60 to 192.168.11.60.
How can this be done with out using SNAT.
tried this:
On host bridge br0 created an alias br0:0 with ip 192.168.11.36 and specified this in guest as gateway.
NAT rule.
DNAT all -- anywhere 10.10.11.60 to:192.168.11.60
ofcourse rule counter is not increasing,
How to make NAT work here?