Skip to content

Commit

Permalink
Add iptables mangle table to subctl gather
Browse files Browse the repository at this point in the history
Submariner adds rules to the mangle iptables table
for clamping TCP MSS on all nodes.

Fixes: #36

Signed-off-by: Yossi Boaron <[email protected]>
  • Loading branch information
yboaron authored and skitt committed Aug 12, 2024
1 parent f03f6e5 commit 5edf57c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions internal/gather/cni.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,9 @@ var ipGatewayCmds = map[string]string{
}

var ipTablesCmds = map[string]string{
"iptables": "iptables -L -n -v --line-numbers",
"iptables-nat": "iptables -L -n -v --line-numbers -t nat",
"iptables": "iptables -L -n -v --line-numbers",
"iptables-nat": "iptables -L -n -v --line-numbers -t nat",
"iptables-mangle": "iptables -L -n -v --line-numbers -t mangle",
}

var libreswanCmds = map[string]string{
Expand Down

0 comments on commit 5edf57c

Please sign in to comment.