Thanks for the reply, I appreciate it. I come from the Juniper world. On the SRX, if you are using DHCP on the WAN conenction, you basically specify the Destination-Address as 0.0.0.0/0 and it will use whatever ip address is assigned to teh WAN interface via DHCP. Heres a snippet of my original Juniper SRX config (Which has been replaced by the PA-500) Example of Destination NAT rule: rule-set Incoming { from zone untrust; rule RDP_3389 { match { destination-address 0.0.0.0/0; destination-port 3389; Example of Security policy to allow RDP traffic in: policy rdp-in-vmutils01 { match { source-address any; destination-address vmutils01; application RDP3389; } then { allow; log { session-init; session-close; In this scenario, even if the wan ip changes, all destination NATs will still function provided I have Dynamic DNS configured correctly on my end. Thanks again. Is there any way to add that as a feature request? and if so, whats the procedure?
... View more