› Forums › Network Management › Bridges and Routers › Bridge or Router? Which one would solve MAC limitation? › Reply To: Bridge or Router? Which one would solve MAC limitation?
May 14, 2014 at 8:29 pm
#53323
Participant
I believe that you could do something, eg. translate more private networks to specific public ip addresses, don’t set any NAT via gui, but, in Scripts/Cron>> NAT and Virtual Servers script , eg.
iptables -t nat -A POSTROUTING -o ETH01 -s 192.168.0.0/24 -j SNAT --to-source w.x.y.26
iptables -t nat -A POSTROUTING -o ETH01 -s 192.168.1.0/24 -j SNAT --to-source w.x.y.27
iptables -t nat -A POSTROUTING -o ETH01 -s 192.168.2.0/24 -j SNAT --to-source w.x.y.28
.....................
.....................
But maybe I’ve missed something…
Regards