The following example configures dynamic source translation:
- [edit services nat]
- pool public {
- address-range low 192.16.2.1 high 192.16.2.32;
- port automatic;
- }
- rule Private-Public {
- match-direction input;
-
- term Translate {
-
- then {
-
- translated {
- source-pool public;
- translation-type source dynamic;
- }
- }
- }
- }