Some intelligent person please help me!
ether1 - Users - 172.31.100.100/16
ether2 - InSPire Net - 203.114.137.71/28
ether3 - Servers - 203.114.162.1/28
My ISP has given me a main public IP of 203.114.137.71, they've also given me additional public IP addresses 203.114.162.2-203.114.162.14 where the gateway of those IP addresses 203.114.162.1.
The servers on my network use the public IP addresses and my users use the private IP address 172.31.0.x which NAT through my public IP of 203.114.137.71 using the basic src-nat masquerade.
Problem is, I would like my users to NAT through the public IP address 203.114.162.10, not the 203.114.137.71 address.
How am I able to do this?
=========================
Routes:
# DST-ADDRESS PREF-SRC G GATEWAY DIS INTERFACE
0 ADC 172.31.0.0/16 172.31.100.100 Clients
1 ADC 203.114.137.64/28 203.114.137.71 InSPire Net
2 ADC 203.114.162.0/28 203.114.162.1 Servers
3 A S 0.0.0.0/0 r 203.114.137.65 InSPire Net
NAT:
0 ;;; LAN => WAN
chain=srcnat action=masquerade
1 ;;; uTorrent (Adam Shaw)
chain=dstnat protocol=tcp dst-port=100 action=dst-nat
to-addresses=172.31.0.1 to-ports=100
2 ;;; uTorrent (Jonathan Dix)
chain=dstnat protocol=tcp dst-port=101 action=dst-nat
to-addresses=172.31.0.4 to-ports=101
3 ;;; Web Proxy
chain=dstnat protocol=tcp dst-port=80 action=redirect to-ports=8080
4 ;;; uTorrent (Max Annear)
chain=dstnat protocol=tcp dst-port=102 action=dst-nat
to-addresses=172.31.0.2 to-ports=102