daily pastebin goal
33%
SHARE
TWEET

Untitled

a guest May 2nd, 2016 58 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. auto lo
  2. iface lo inet loopback
  3.  
  4.  
  5. auto eth0
  6. allow-bond0 eth0
  7. iface eth0 inet manual
  8.         bond-master bond0
  9.  
  10.  
  11. auto eth1
  12. allow-bond0 eth1
  13. iface eth1 inet manual
  14.         bond-master bond0
  15.  
  16.  
  17. auto eth2
  18. allow-bond0 eth2
  19. iface eth2 inet manual
  20.         bond-master bond0
  21.  
  22.  
  23. auto eth3
  24. iface eth3 inet static
  25.         address 212.51.145.2
  26.         netmask 255.255.255.252
  27.         gateway 212.51.145.1
  28.         pre-up    ifup ifb0
  29.         post-up   tc qdisc add dev eth3 ingress || true
  30.         post-up   tc filter add dev eth3 parent ffff: protocol all u32 match u32 0 0 action mirred egress redirect dev ifb0 || true
  31.         pre-down  tc filter del dev eth3 parent ffff: protocol all u32 match u32 0 0 action mirred egress redirect dev ifb0 || true
  32.         pre-down  tc qdisc del dev eth3 ingress || true
  33.         post-down ifdown ifb0 || true
  34. iface eth3 inet6 static
  35.         address 2a02:168:200f::2
  36.         netmask 64
  37.         gateway 2a02:168:200f::1
  38.  
  39.  
  40. auto ifb0
  41. iface ifb0 inet manual
  42.  
  43.  
  44. auto bond0
  45. iface bond0 inet manual
  46.         bond-slaves none
  47.         bond-mode 802.3ad
  48.         bond-ad_select bandwidth
  49.         bond-lacp_rate slow
  50.         bond-miimon 100
  51.         bond-use_carrier 1
  52.         bond-downdelay 200
  53.         bond-updelay 200
  54.         bond-primary eth0 eth1 eth2
  55.  
  56.  
  57. auto bond0.1
  58. iface bond0.1 inet static
  59.         vlan-raw-device bond0
  60.         address 10.0.0.1
  61.         netmask 255.255.0.0
  62.         dns-nameservers 10.0.0.1 10.0.0.2
  63.         dns-search lan.alvhaus.ch
  64. iface bond0.1 inet6 static
  65.         vlan-raw-device bond0
  66.         address 2a02:168:200f:ff00::1
  67.         netmask 56
  68.         dns-nameservers 2a02:168:200f:ff00::1 2a02:168:200f:ff00::2
  69.  
  70.  
  71. auto bond0.10
  72. iface bond0.10 inet static
  73.         vlan-raw-device bond0
  74.         address 10.222.0.1
  75.         netmask 255.255.0.0
  76. iface bond0.10 inet6 static
  77.         vlan-raw-device bond0
  78.         address 2a02:168:200f:de00::1
  79.         netmask 56
  80.  
  81.  
  82. iface tap0 inet static
  83.         address 10.200.0.1
  84.         netmask 255.255.0.0
  85. iface tap0 inet6 static
  86.         address 2a02:168:200f:c800::1
  87.         netmask 56
RAW Paste Data
Top