projects
/
config
/
nftables.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
d684d1e
)
nftables-workstation.nft: remove unneeded semicolons
author
Antonio Ospite <ao2@ao2.it>
Thu, 26 Apr 2018 12:56:40 +0000
(14:56 +0200)
committer
Antonio Ospite <ao2@ao2.it>
Thu, 26 Apr 2018 13:02:31 +0000
(15:02 +0200)
nftables-workstation.nft
patch
|
blob
|
history
diff --git
a/nftables-workstation.nft
b/nftables-workstation.nft
index
fd227f5
..
7261291
100644
(file)
--- a/
nftables-workstation.nft
+++ b/
nftables-workstation.nft
@@
-39,7
+39,7
@@
table inet filter {
}
chain input {
}
chain input {
- type filter hook input priority 0
;
+ type filter hook input priority 0
ct state established,related accept
ct state invalid drop
ct state established,related accept
ct state invalid drop
@@
-123,13
+123,13
@@
table inet filter {
}
chain forward {
}
chain forward {
- type filter hook forward priority 0
;
+ type filter hook forward priority 0
limit rate 3/minute burst 10 packets log prefix "[FORWARD]: "
counter reject
}
chain output {
limit rate 3/minute burst 10 packets log prefix "[FORWARD]: "
counter reject
}
chain output {
- type filter hook output priority 0
;
+ type filter hook output priority 0
counter accept
}
}
counter accept
}
}