contoh membuat NAT pada Router JUNIPER

security {
    nat {
        source {
            rule-set TRUST-TO-UNTRUST {
                from zone LOCAL_1;
                to zone UNTRUST;
                rule AKSES-INTERNET {
                    match {
                        source-address 10.10.10.0/24;
                        destination-address 0.0.0.0/0;
                    }
                    then {
                        source-nat {
                            interface;
                        }
                    }
                }
            }
        }
    }
NAT Juniper

Leave a Reply

Your email address will not be published. Required fields are marked *