mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
686be57d0a
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
38 lines
872 B
Go
38 lines
872 B
Go
//go:build linux
|
|
// +build linux
|
|
|
|
package bridge
|
|
|
|
import "github.com/docker/docker/libnetwork/iptables"
|
|
|
|
func (n *bridgeNetwork) setupFirewalld(config *networkConfiguration, i *bridgeInterface) error {
|
|
d := n.driver
|
|
d.Lock()
|
|
driverConfig := d.config
|
|
d.Unlock()
|
|
|
|
// Sanity check.
|
|
if !driverConfig.EnableIPTables {
|
|
return IPTableCfgError(config.BridgeName)
|
|
}
|
|
|
|
iptables.OnReloaded(func() { n.setupIP4Tables(config, i) })
|
|
iptables.OnReloaded(n.portMapper.ReMapAll)
|
|
return nil
|
|
}
|
|
|
|
func (n *bridgeNetwork) setupFirewalld6(config *networkConfiguration, i *bridgeInterface) error {
|
|
d := n.driver
|
|
d.Lock()
|
|
driverConfig := d.config
|
|
d.Unlock()
|
|
|
|
// Sanity check.
|
|
if !driverConfig.EnableIP6Tables {
|
|
return IPTableCfgError(config.BridgeName)
|
|
}
|
|
|
|
iptables.OnReloaded(func() { n.setupIP6Tables(config, i) })
|
|
iptables.OnReloaded(n.portMapperV6.ReMapAll)
|
|
return nil
|
|
}
|