mirror of
https://github.com/gravitl/netmaker.git
synced 2025-10-22 00:19:39 +08:00
added iptables check cmd
This commit is contained in:
@@ -110,6 +110,7 @@ func iptablesPortForward(entry string, inport string, outport string, isIP bool)
|
||||
return errors.New("could not locate ip for " + entry)
|
||||
}
|
||||
|
||||
if output, _ := ncutils.RunCmd("iptables -t nat -C PREROUTING -p tcp --dport "+inport+" -j DNAT --to-destination "+address+":"+outport, false); output == "" {
|
||||
_, err := ncutils.RunCmd("iptables -t nat -A PREROUTING -p tcp --dport "+inport+" -j DNAT --to-destination "+address+":"+outport, false)
|
||||
if err != nil {
|
||||
return err
|
||||
@@ -121,6 +122,8 @@ func iptablesPortForward(entry string, inport string, outport string, isIP bool)
|
||||
_, err = ncutils.RunCmd("iptables -t nat -A POSTROUTING -j MASQUERADE", false)
|
||||
return err
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// if running in host networking mode, run iptables to map to CoreDNS container
|
||||
func setHostCoreDNSMapping() error {
|
||||
|
Reference in New Issue
Block a user