Fix command order in tallow.conf man page

An ipset needs to be created before an iptables rule can reference it.
This commit is contained in:
puneetse
2019-09-20 16:50:10 -07:00
committed by Auke Kok
parent 71e0fc6cca
commit 96fa692bf6
+2 -2
View File
@@ -61,11 +61,11 @@ before tallow starts up and remove them afterwards. To create them
manually, you can use the following commands:
```
iptables -t filter -I INPUT 1 -m set --match-set tallow src -j DROP
ipset create tallow hash:ip family inet timeout 3600
iptables -t filter -I INPUT 1 -m set --match-set tallow src -j DROP
ip6tables -t filter -I INPUT 1 -m set --match-set tallow6 src -j DROP
ipset create tallow6 hash:ip family inet6 timeout 3600
ip6tables -t filter -I INPUT 1 -m set --match-set tallow6 src -j DROP
```
## SEE ALSO