We have a phone server on the internal network that is configured to accept inbound connections on a particular external IP. Apparently this server is restricted to only accept connections from 1 external IP at any given time.
As we are migrating to a different external network block, I would like to allow this server to receive inbound connections from 2 different external addresses simultaneously. However, I would like the UTM to use some form of NAT trickery, if possible, so that the internal server will only ever see 1 external IP. In this way, we can seamlessly migrate users to the new external IP and ultimately disable the legacy external IP.
In the current configuration with legacy addressing, we have DNAT and SNAT setup like this:
DNAT
For traffic from: (AnyInternet)
Using service: Any
Going to: External_legacyIP
Change the destination to: Internal_PhoneSystem
SNAT
For traffic from: Internal_PhoneSystem
Using service: Any
Going to: (AnyInternet)
Change the source to: External_legacyIP
Will it work if I insert a Full NAT rule above the DNAT like this:
Full NAT
For traffic from: (AnyInternet)
Using service: Any
Going to: External_newIP
Change the destination to: Internal_PhoneSystem
Change the source to: External_legacyIP
Otherwise, is there another way to accomplish this?
Thank you
This thread was automatically locked due to age.