iptables.confd 687 B

1234567891011121314151617181920
  1. # /etc/conf.d/iptables
  2. # Location in which iptables initscript will save set rules on
  3. # service shutdown
  4. IPTABLES_SAVE="/var/lib/iptables/rules-save"
  5. # Options to pass to iptables-save and iptables-restore
  6. SAVE_RESTORE_OPTIONS="-c"
  7. # Save state on stopping iptables
  8. SAVE_ON_STOP="yes"
  9. # If you need to log iptables messages as soon as iptables starts,
  10. # AND your logger does NOT depend on the network, then you may wish
  11. # to uncomment the next line.
  12. # If your logger depends on the network, and you uncomment this line
  13. # you will create an unresolvable circular dependency during startup.
  14. # After commenting or uncommenting this line, you must run 'rc-update -u'.
  15. #rc_use="logger"