Documentation ¶
Index ¶
- Constants
- func Lock(lockFilePath string, timeout time.Duration) (func() error, error)
- func MakeChainLine(chain string) string
- type Client
- func (c *Client) AppendRule(protocol Protocol, table string, chain string, ruleSpec []string) error
- func (c *Client) ChainExists(protocol Protocol, table string, chain string) (bool, error)
- func (c *Client) DeleteChain(protocol Protocol, table string, chain string) error
- func (c *Client) DeleteRule(protocol Protocol, table string, chain string, ruleSpec []string) error
- func (c *Client) EnsureChain(protocol Protocol, table string, chain string) error
- func (c *Client) InsertRule(protocol Protocol, table string, chain string, ruleSpec []string) error
- func (c *Client) ListRules(table string, chain string) ([]string, error)
- func (c *Client) Restore(data string, flush bool, useIPv6 bool) error
- func (c *Client) Save() ([]byte, error)
- type Interface
- type Protocol
Constants ¶
View Source
const ( NATTable = "nat" FilterTable = "filter" MangleTable = "mangle" RawTable = "raw" AcceptTarget = "ACCEPT" DROPTarget = "DROP" MasqueradeTarget = "MASQUERADE" MarkTarget = "MARK" ReturnTarget = "RETURN" ConnTrackTarget = "CT" NoTrackTarget = "NOTRACK" SNATTarget = "SNAT" DNATTarget = "DNAT" PreRoutingChain = "PREROUTING" ForwardChain = "FORWARD" PostRoutingChain = "POSTROUTING" OutputChain = "OUTPUT" )
View Source
const (
XtablesLockFilePath = "/var/run/xtables.lock"
)
Variables ¶
This section is empty.
Functions ¶
func Lock ¶
Lock acquires the provided file lock. It's thread-safe. It will block until the lock is acquired or the timeout is reached.
func MakeChainLine ¶
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
func (*Client) AppendRule ¶ added in v1.2.1
AppendRule checks if target rule already exists with the protocol, appends it if not.
func (*Client) ChainExists ¶
ChainExists checks if target chain already exists in a table
func (*Client) DeleteChain ¶
DeleteChain deletes all rules from a chain in a table and then delete the chain.
func (*Client) DeleteRule ¶
DeleteRule checks if target rule already exists, deletes the rule if found.
func (*Client) EnsureChain ¶
EnsureChain checks if target chain already exists, creates it if not.
func (*Client) InsertRule ¶
InsertRule checks if target rule already exists, inserts it at the beginning of the chain if not.
type Interface ¶ added in v1.7.3
type Interface interface { EnsureChain(protocol Protocol, table string, chain string) error ChainExists(protocol Protocol, table string, chain string) (bool, error) AppendRule(protocol Protocol, table string, chain string, ruleSpec []string) error InsertRule(protocol Protocol, table string, chain string, ruleSpec []string) error DeleteRule(protocol Protocol, table string, chain string, ruleSpec []string) error DeleteChain(protocol Protocol, table string, chain string) error ListRules(table string, chain string) ([]string, error) Restore(data string, flush bool, useIPv6 bool) error Save() ([]byte, error) }
Click to show internal directories.
Click to hide internal directories.