Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. term ALLOW-CBT-IN {
  2. from {
  3. source-address {
  4. 10.40.40.199/32;
  5. }
  6. destination-address {
  7. 192.168.75.200/32;
  8. }
  9. }
  10. then accept;
  11. }
  12. term ALLOW-CBT-OUT {
  13. from {
  14. source-address {
  15. 192.168.75.200/32;
  16. }
  17. destination-address {
  18. 10.40.40.199/32;
  19. }
  20. }
  21. then accept;
  22. }
  23. term BLOCK-ALL {
  24. from {
  25. source-address {
  26. 192.168.0.0/16;
  27. 10.0.0.0/8;
  28. 172.16.0.0/12;
  29. }
  30. destination-address {
  31. 192.168.75.200/32;
  32. }
  33. }
  34. then {
  35. reject;
  36. }
  37. }
  38.  
  39.  
  40.  
  41.  
  42. unit 75 {
  43. family inet {
  44. filter {
  45. input BLOCK-40-VLAN;
  46. }
  47. address 192.168.75.254/24;
  48. }
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement