Fixed NAT pool
Hi guys,
I setup a firewall rules with a fixed range of IP addresses as source traffic toward a large group of IPs as destination and NAT (sNAT) using a fixed range of IP addresses too.
The two ranges of IPs are equal:
Here's the FW rule:
edit 53 set srcintf "LANs" set dstintf "VPNinterface" set srcaddr "LAN_pool" set dstaddr "VPN_ENC" set action accept set schedule "always" set service "ALL" set nat enable set fixedport enable set ippool enable set poolname "VPN_pool" next
Here are the objects definition:
config firewall address edit "LAN_pool" set type iprange set associated-interface "LANs" set start-ip 172.25.3.196 set end-ip 172.25.3.209 next end
config firewall ippool edit "VPN_pool" set type one-to-one set startip 192.168.3.196 set endip 192.168.3.209 next end
How can I make sure 172.25.3.199 always uses 192.168.3.199 and so on: .200 to .200...
Thanks in advance!
P.S. I found this on KB, still I find it a bit weird. Anyone used it?
