danhoutz

EX NETBOOT FILTER

Nov 20th, 2014
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. term ALLOW-NETBOOT-CLIENT {
  2. from {
  3. destination-address {
  4. 255.255.255.255/32;
  5. }
  6. protocol udp;
  7. destination-port bootps;
  8. }
  9. then {
  10. count ALLOW-NETBOOT-CLIENT;
  11. accept;
  12. }
  13. }
  14. term ALLOW-NETBOOT-SERVER {
  15. from {
  16. source-prefix-list {
  17. NETBOOT-SERVERS;
  18. }
  19. protocol udp;
  20. destination-port bootps;
  21. }
  22. then {
  23. count ALLOW-NETBOOT-SERVER;
  24. accept;
  25. }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment