Fix nodeport service compat with default-deny fw

This commit is contained in:
Maru Newby
2015-12-16 22:35:10 +00:00
parent 91f67372bf
commit a5e00da867
3 changed files with 65 additions and 10 deletions

View File

@@ -84,7 +84,8 @@ const (
type Table string
const (
TableNAT Table = "nat"
TableNAT Table = "nat"
TableFilter Table = "filter"
)
type Chain string
@@ -93,6 +94,7 @@ const (
ChainPostrouting Chain = "POSTROUTING"
ChainPrerouting Chain = "PREROUTING"
ChainOutput Chain = "OUTPUT"
ChainInput Chain = "INPUT"
)
const (