Advertisement
Guest User

Untitled

a guest
Sep 25th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. # add firewall drop classes
  2. class fw::post {
  3.  
  4. firewall { '910 deny all other input requests':
  5. chain => 'INPUT',
  6. action => 'drop',
  7. proto => 'all',
  8. before => undef,
  9. }
  10.  
  11. firewall { '910 deny all other forward requests':
  12. chain => 'FORWARD',
  13. action => 'drop',
  14. proto => 'all',
  15. before => undef,
  16. }
  17.  
  18. firewall { '910 deny all other output requests':
  19. chain => 'OUTPUT',
  20. action => 'drop',
  21. proto => 'all',
  22. before => undef,
  23. }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement