send-to-self.sh 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. #!/bin/sh -e
  2. # ====================================================================
  3. #
  4. # --------------------------------------------------------------------
  5. IF1=eth0
  6. IF2=eth1
  7. IF3=eth2
  8. IF4=eth3
  9. # ====================================================================
  10. #
  11. # --------------------------------------------------------------------
  12. IP1=10.0.0.1/24
  13. IP2=10.0.0.2/24
  14. IP3=10.0.0.3/24
  15. IP4=10.0.0.4/24
  16. # ====================================================================
  17. #
  18. # --------------------------------------------------------------------
  19. TBL1=500
  20. TBL2=501
  21. TBL3=502
  22. TBL4=503
  23. # ====================================================================
  24. # move local routing rule to lower priority
  25. # --------------------------------------------------------------------
  26. ip rule add pref 1000 lookup local
  27. #ip rule del pref 0
  28. # ====================================================================
  29. # only reply to ARP requests for addresses configured on the device
  30. # --------------------------------------------------------------------
  31. echo 1 > /proc/sys/net/ipv4/conf/all/arp_ignore
  32. # ====================================================================
  33. # configure device and force packets of bound sockets out on eth1
  34. # --------------------------------------------------------------------
  35. ip address add dev ${IF1} ${IP1}
  36. echo 1 > /proc/sys/net/ipv4/conf/${IF1}/accept_local
  37. ip link set ${IF1} up
  38. ip rule add pref ${TBL1} oif ${IF1} lookup ${TBL1}
  39. ip route add default dev ${IF1} table ${TBL1}
  40. # ====================================================================
  41. # configure device and force packets of bound sockets out on eth2
  42. # --------------------------------------------------------------------
  43. ip address add dev ${IF2} ${IP2}
  44. echo 1 > /proc/sys/net/ipv4/conf/${IF2}/accept_local
  45. ip link set ${IF2} up
  46. ip rule add pref ${TBL2} oif ${IF2} lookup ${TBL2}
  47. ip route add default dev ${IF2} table ${TBL2}
  48. # ====================================================================
  49. # configure device and force packets of bound sockets out on ${IF3}
  50. # --------------------------------------------------------------------
  51. ip address add dev ${IF3} ${IP3}
  52. echo 1 > /proc/sys/net/ipv4/conf/${IF3}/accept_local
  53. ip link set ${IF3} up
  54. ip rule add pref ${TBL3} oif ${IF3} lookup ${TBL3}
  55. ip route add default dev ${IF3} table ${TBL3}
  56. # ====================================================================
  57. # configure device and force packets of bound sockets out on ${IF4}
  58. # --------------------------------------------------------------------
  59. ip address add dev ${IF4} ${IP4}
  60. echo 1 > /proc/sys/net/ipv4/conf/${IF4}/accept_local
  61. ip link set ${IF4} up
  62. ip rule add pref ${TBL4} oif ${IF4} lookup ${TBL4}
  63. ip route add default dev ${IF4} table ${TBL4}