Advertisement
Guest User

cyrus_mc

a guest
Apr 15th, 2013
579
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $squid_acls = [ { comment => "acl rule 1", rules => [ { aclname => "noauth",
  2. acltype => "dst",
  3. arg => "192.168.7.0/24" },
  4. { aclname => "noauth2",
  5. acltype => "src",
  6. arg => 192.168.2.0/24" }
  7. ] } ]
  8.  
  9. # Need to expand to this (and obviously there could be more rules, or top level rules (ie: comment, rules can be defined again).
  10.  
  11. # acl rule 1
  12. acl noauth dst 192.168.7.0/24
  13. acl noauth2 src 192.168.2.0/24
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement