I have to connect two LANs: LAN1: 10.10.0.0/16 and LAN2: 192.168.0.0/16. I can't do simple routing, because 192.168.0.0/16 net is prohibited in LAN1, so I am thinking of using Full cone nat (1:1) to translate 192.168.x.y/16 to 10.11.x.y/16. Each translation is done by this rules:
iptables -t nat -A PREROUTING -d 10.11.0.0/16 -j DNAT --to-destination 192.168.0.0/16
iptables -t nat -A POSTROUTING -s 192.168.0.0/16 -j SNAT --to-source 10.11.0.0/16
But I will have to enter 254*254*2 rules, what will, I think, result in enormous performance degradation. So, is there a way to write such one-to-one translation with minimum number of rules?
I am not sure if it is present in all kernels, but what you may be looking for is the NETMAP target.
From the iptables man page
Like the first answer said, use -j NETMAP:
It's probably a good idea to add -d 10.10.0.0/16 in the POSTROUTING row as well.
You can do this with a small shell script
But I think thereis an error. I think it should be /32 and not /16.