Advertisement
Guest User

Untitled

a guest
Nov 21st, 2014
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. family inet {
  2. filter protect-host {
  3. term limit-icmp {
  4. from {
  5. source-address {
  6. 10.210.0.0/16;
  7. }
  8. protocol icmp;
  9. }
  10. then accept;
  11. }
  12. term limit-ftp {
  13. from {
  14. source-address {
  15. 10.210.0.0/16;
  16. }
  17. protocol tcp;
  18. destination-port 21;
  19. }
  20. then accept;
  21. }
  22. term limit-ssh {
  23. from {
  24. source-address {
  25. 10.210.0.0/16;
  26. }
  27. protocol tcp;
  28. destination-port 22;
  29. }
  30. then accept;
  31. }
  32. term limit-telnet {
  33. from {
  34. source-address {
  35. 10.210.0.0/16;
  36. }
  37. protocol tcp;
  38. destination-port 23;
  39. }
  40. }
  41. term ftp-allow {
  42. from {
  43. source-address {
  44. 172.20.106.0/24;
  45. }
  46. protocol tcp;
  47. source-port 21;
  48. }
  49. then accept;
  50. }
  51. }
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement