nftables-mk.confd 899 B

123456789101112131415161718192021222324252627
  1. # /etc/conf.d/nftables
  2. # Location in which nftables initscript will save set rules on
  3. # service shutdown
  4. NFTABLES_SAVE="/var/lib/nftables/rules-save"
  5. # Options to pass to nft on save
  6. SAVE_OPTIONS="-n"
  7. # Save state on stopping nftables
  8. SAVE_ON_STOP="yes"
  9. # Only for OpenRC systems.
  10. # Set to "hard" or "soft" to panic when stopping instead of
  11. # clearing the rules
  12. # Soft panic loads a ruleset dropping any new or invalid connections
  13. # Hard panic loads a ruleset dropping all traffic
  14. PANIC_ON_STOP=""
  15. # If you need to log nftables messages as soon as nftables starts,
  16. # AND your logger does NOT depend on the network, then you may wish
  17. # to uncomment the next line.
  18. # If your logger depends on the network, and you uncomment this line
  19. # you will create an unresolvable circular dependency during startup.
  20. # After commenting or uncommenting this line, you must run 'rc-update -u'.
  21. #rc_use="logger"