123456789101112131415161718192021222324252627 |
- package local
- import (
- "net"
- "github.com/gravitl/netmaker/netclient/ncutils"
- )
- func setRoute(iface string, addr *net.IPNet, address string) error {
- var err error
- _, _ = ncutils.RunCmd("route add -net "+addr.String()+" -interface "+iface, false)
- return err
- }
- func deleteRoute(iface string, addr *net.IPNet, address string) error {
- var err error
- _, _ = ncutils.RunCmd("route delete -net "+addr.String()+" -interface "+iface, false)
- return err
- }
- func setCidr(iface, address string, addr *net.IPNet) {
- ncutils.RunCmd("route add -net "+addr.String()+" -interface "+iface, false)
- }
- func removeCidr(iface string, addr *net.IPNet, address string) {
- ncutils.RunCmd("route delete -net "+addr.String()+" -interface "+iface, false)
- }
|