Luckily the docs haven't mentioned support for ipMasq for both plugins so far.
Even if anyone has attempted to enable the feature in their configuration files it didn't have the desired effect for the network.
plugin.NetConf
Master string `json:"master"`
Mode string `json:"mode"`
- IPMasq bool `json:"ipMasq"`
MTU int `json:"mtu"`
}
return err
}
- if n.IPMasq {
- chain := "CNI-" + n.Name
- if err = ip.SetupIPMasq(ip.Network(&result.IP4.IP), chain); err != nil {
- return err
- }
- }
-
return result.Print()
}
plugin.NetConf
Master string `json:"master"`
Mode string `json:"mode"`
- IPMasq bool `json:"ipMasq"`
MTU int `json:"mtu"`
}
return err
}
- if n.IPMasq {
- chain := "CNI-" + n.Name
- if err = ip.SetupIPMasq(ip.Network(&result.IP4.IP), chain); err != nil {
- return err
- }
- }
-
return result.Print()
}