Hello,

I'm new to Juniper. Currently I want to restrict allow only packet with
allowed source can send out:

In Cisco IOS:
##
ip access-list standard acl_limit_ip
  permit 172.16.1.100
  deny   any
##


When i come to Juniper, I tried to convert something like below:

##
        filter acl_limit_ip {
            term Permit {
                from {
                    source-address {
                        172.16.1.100/32;
                    }
                }
                then accept;
            }
            term Deny {
                then discard;
            }
##

Really thanks for someone help me figure out the problem.
_______________________________________________
juniper-nsp mailing list [email protected]
https://puck.nether.net/mailman/listinfo/juniper-nsp

Reply via email to