Navigation
Example: Configuring NAT Rules Without Defining a Pool
The following configuration performs NAT using the source prefix 20.20.10.0/24 without defining a pool.
[edit services nat]rule src-nat {match-direction input;term t1 {then {translation-type dynamic-nat44;source-prefix 20.20.10.0/24;}}}
The following configuration performs NAT using the destination prefix 20.20.10.0/32 without defining a pool.
[edit services nat]rule src-nat {match-direction input;term t1 {from {destination-address 10.10.10.10/32;then {translation-type dnat44;destination-prefix 20.20.10.0/24;}}}}