Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. family ethernet-switching {
  2. filter port5 {
  3. term port5 {
  4. from {
  5. source-address {
  6. 192.168.1.0/29;
  7. 192.168.1.240/29;
  8. }
  9. }
  10. then accept;
  11. }
  12. term default-term {
  13. then discard;
  14. }
  15. }
  16. }
  17.  
  18. description "PORT-Description";
  19. unit 0 {
  20. family ethernet-switching {
  21. vlan {
  22. members vlan3712;
  23. }
  24. filter {
  25. input port5;
  26. }
  27. }
  28. }
  29.  
  30. and this is my ethernet switching options :
  31. ethernet-switching-options {
  32. secure-access-port {
  33. interface ge-0/0/5.0 {
  34. mac-limit 100 action shutdown;
  35. }
  36. interface ge-0/0/6.0 {
  37. mac-limit 100 action shutdown;
  38. }
  39. }
  40. port-error-disable {
  41. disable-timeout 60;
  42. }
  43. storm-control {
  44. inactive: interface all;
  45. }
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement