We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 557c13b commit ed19ff8Copy full SHA for ed19ff8
pillar/base/firewall/snakebite.sls
@@ -0,0 +1,9 @@
1
+firewall:
2
+ snakebite-blackhole-tcp:
3
+ raw: -A INPUT -p tcp --destination-port 56666 -j DROP
4
+ snakebite-blackhole-udp:
5
+ raw: -A INPUT -p udp --destination-port 56666 -j DROP
6
+ snakebite-whitehole-tcp:
7
+ raw: -A INPUT -p tcp --destination-port 56667 -j RETURN
8
+ snakebite-whitehole-udp:
9
+ raw: -A INPUT -p udp --destination-port 56667 -j RETURN
pillar/prod/top.sls
@@ -109,6 +109,7 @@ base:
109
- match: nodegroup
110
- firewall.http
111
- firewall.ftp
112
+ - firewall.snakebite
113
114
'web-pypa':
115
0 commit comments