ipforward.go 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. // Copyright 2015 CNI authors
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. package ip
  15. import (
  16. "io/ioutil"
  17. "github.com/containernetworking/cni/pkg/types/current"
  18. )
  19. func EnableIP4Forward() error {
  20. return echo1("/proc/sys/net/ipv4/ip_forward")
  21. }
  22. func EnableIP6Forward() error {
  23. return echo1("/proc/sys/net/ipv6/conf/all/forwarding")
  24. }
  25. // EnableForward will enable forwarding for all configured
  26. // address families
  27. func EnableForward(ips []*current.IPConfig) error {
  28. v4 := false
  29. v6 := false
  30. for _, ip := range ips {
  31. if ip.Version == "4" && !v4 {
  32. if err := EnableIP4Forward(); err != nil {
  33. return err
  34. }
  35. v4 = true
  36. } else if ip.Version == "6" && !v6 {
  37. if err := EnableIP6Forward(); err != nil {
  38. return err
  39. }
  40. v6 = true
  41. }
  42. }
  43. return nil
  44. }
  45. func echo1(f string) error {
  46. return ioutil.WriteFile(f, []byte("1"), 0644)
  47. }