openwrt-firewall.patch 702 B

12345678910111213141516171819
  1. diff -urN NoCatSplash-0.92.old/libexec/iptables/initialize.fw NoCatSplash-0.92/libexec/iptables/initialize.fw
  2. --- NoCatSplash-0.92.old/libexec/iptables/initialize.fw 2002-12-27 11:44:41.000000000 +0100
  3. +++ NoCatSplash-0.92/libexec/iptables/initialize.fw 2005-04-04 20:45:57.000000000 +0200
  4. @@ -28,13 +28,9 @@
  5. # Load alllll the kernel modules we need.
  6. #
  7. -rmmod ipchains > /dev/null 2>&1 # for RH 7.1 users.
  8. -for module in ip_tables ipt_REDIRECT ipt_MASQUERADE ipt_MARK ipt_REJECT \
  9. - ipt_TOS ipt_LOG iptable_mangle iptable_filter iptable_nat ip_nat_ftp \
  10. - ip_conntrack ipt_mac ipt_state ipt_mark; do
  11. -
  12. - modprobe $module
  13. +for module in ipt_TOS ipt_mac; do
  14. + insmod $module
  15. done