The following configuration example shows full-cone NAT with source static processing.
- [edit services]
- nat {
-
- pool static_nat_range {
- address-range low 10.200.253.1 high 10.200.253.5;
- }
-
- rule static_nat_rule {
-
- term sample-term {
- nat-type full-cone;
-
- from {
-
- source-address-range {
- low 10.100.136.1 high 10.100.136.5;
- }
- }
-
- then {
-
- translated {
- source-pool static_nat_range;
-
- translation-type {
- source static;
- }
- }
- }
- }
- }
- }