summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Leblond <eric@regit.org>2013-09-16 18:27:36 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2013-09-17 13:10:46 +0200
commitf1a9d5d320bb4d19570f9029e028c3acd81b8756 (patch)
tree20caace9c327dccd6a4bb29d4c459ae11b5066b8
parent489c678ff910d55710856d8aef11c7861d84b703 (diff)
Suppress non working examples.
Signed-off-by: Eric Leblond <eric@regit.org> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
-rw-r--r--files/nftables/ipv4-raw6
-rw-r--r--files/nftables/ipv4-security7
-rw-r--r--files/nftables/ipv6-raw6
-rw-r--r--files/nftables/ipv6-security7
4 files changed, 0 insertions, 26 deletions
diff --git a/files/nftables/ipv4-raw b/files/nftables/ipv4-raw
deleted file mode 100644
index 6bc21815..00000000
--- a/files/nftables/ipv4-raw
+++ /dev/null
@@ -1,6 +0,0 @@
-#! nft -f
-
-table raw {
- chain prerouting { hook NF_INET_PRE_ROUTING -300; }
- chain output { hook NF_INET_LOCAL_OUT -300; }
-}
diff --git a/files/nftables/ipv4-security b/files/nftables/ipv4-security
deleted file mode 100644
index 3ac5bd2b..00000000
--- a/files/nftables/ipv4-security
+++ /dev/null
@@ -1,7 +0,0 @@
-#! nft -f
-
-table security {
- chain input { hook NF_INET_LOCAL_IN 50; }
- chain forward { hook NF_INET_FORWARD 50; }
- chain output { hook NF_INET_LOCAL_OUT 50; }
-}
diff --git a/files/nftables/ipv6-raw b/files/nftables/ipv6-raw
deleted file mode 100644
index 54940cab..00000000
--- a/files/nftables/ipv6-raw
+++ /dev/null
@@ -1,6 +0,0 @@
-#! nft -f
-
-table ip6 raw {
- chain prerouting { hook NF_INET_PRE_ROUTING -2147483647; }
- chain output { hook NF_INET_LOCAL_OUT -2147483647; }
-}
diff --git a/files/nftables/ipv6-security b/files/nftables/ipv6-security
deleted file mode 100644
index f379bfd3..00000000
--- a/files/nftables/ipv6-security
+++ /dev/null
@@ -1,7 +0,0 @@
-#! nft -f
-
-table ip6 security {
- chain input { hook NF_INET_LOCAL_IN 50; }
- chain forward { hook NF_INET_FORWARD 50; }
- chain output { hook NF_INET_LOCAL_OUT 50; }
-}