Re: Set up NAT with block of IPs from ISP
You would create the additional IPs on the external interface of your ASL.
Create DNAT rules such that all services on eack external IP would be redirected to the corresponding internal IP.
Then create SNAT rules for each internal IP to change the internal IP to the corresponding external IP of your ASL.
Example:
DNAT:
Source: any, Service: any
Dest: 1.2.3.131 (external ASL IP for webserver)
Change Dest to: 192.168.1.131 (internal IP of webserver)
Change service: none
SNAT:
Source: 192.168.1.131, Service: any
Change Source to: 1.2.3.131
Change service: none
This will redirect all incoming traffic on 1.2.3.131 to 192.168.1.131 and have any outbound traffic from 192.168.1.131 appear as if it came from 1.2.3.131.
No sweat.
|