We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efe00aa commit 32b509aCopy full SHA for 32b509a
1 file changed
systemvm/debian/root/health_checks/iptables_check.py
@@ -36,8 +36,7 @@ def main():
36
srcPortText = "--dport " + formatPort(portForward["sourcePortStart"], portForward["sourcePortEnd"], ":")
37
dstText = destIp + ":" + formatPort(portForward["destPortStart"], portForward["destPortEnd"], "-")
38
for algo in [["PREROUTING", "--to-destination"],
39
- ["OUTPUT", "--to-destination"],
40
- ["POSTROUTING", "--to-source"]]:
+ ["OUTPUT", "--to-destination"]]:
41
entriesExpected.append([algo[0], srcIpText, srcPortText, algo[1] + " " + dstText])
42
43
fetchIpTableEntriesCmd = "iptables-save | grep " + destIp
0 commit comments