Skip to content

Commit

Permalink
Merge pull request containernetworking#513 from mars1024/firewall_docs
Browse files Browse the repository at this point in the history
firewall: fix some typos in docs
  • Loading branch information
dcbw authored Jul 22, 2020
2 parents 6eb8e31 + 813f541 commit d713ec6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions plugins/meta/firewall/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ The following network configuration file
}
},
{
"type": "firewall",
"type": "firewall"
}
]
}
Expand Down Expand Up @@ -72,7 +72,7 @@ look like:
},
{
"type": "firewall",
"backend": "firewalld"
"backend": "firewalld"
}
]
}
Expand Down Expand Up @@ -111,7 +111,7 @@ look like:
},
{
"type": "firewall",
"backend": "iptables"
"backend": "iptables"
}
]
}
Expand All @@ -129,7 +129,7 @@ when containers are created and from where rules will be removed when containers
CNI-FORWARD will have a pair of rules added, one for each direction, using the IPAM assigned IP address
of the container as shown:

`CNI_FORWARD` chain:
- `-s 10.88.0.2 -m conntrack --ctstate RELATED,ESTABLISHED -j CNI-FORWARD`
- `-d 10.88.0.2 -j CNI-FORWARD`
`CNI-FORWARD` chain:
- `-s 10.88.0.2 -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT`
- `-d 10.88.0.2 -j ACCEPT`

0 comments on commit d713ec6

Please sign in to comment.