I have a project that requires a kind of reverse NAT. That is, to make one IP address appear as if it is coming from many IP addresses.
I understand that you can give a range of I/P address such as: ## Change source addresses to 1.2.3.4, 1.2.3.5 or 1.2.3.6 # iptables -t nat -A POSTROUTING -o eth0 -j SNAT --to 1.2.3.4-1.2.3.6
however, the other element is I would like it to round robin through the IP address range and not use the “least currently used” IP algorithm.
Does anyone have suggestions on how to accomplish this?
|