auto lo eth0 eth1 
iface lo inet loopback

{% if 'bonding' in salt['grains.get']('conductor:tags') %}
iface eth0 inet6 manual
  bond-master bond0

iface eth1 inet6 manual
  bond-master bond0

auto bond0
iface bond0 inet6 auto
  bond-slaves eth0 eth1
{% else %}
iface eth0 inet6 auto
{% endif %}
  privext 0
  mtu 8950
  ya-netconfig-fb-disable YES
  ya-netconfig-bb-disable YES
{% if 'ipvs' in salt['grains.get']('conductor:tags') or 'ipvs_tun' in salt['grains.get']('conductor:tags') %}
  ya-slb-tun YES
  ya-slb6-tun YES
{% endif %}
  pre-up ethtool -K eth0 tso off; if lsmod | grep -qE "e1000|igb"; then ethtool -G eth0 rx 4096 tx 4096; fi; true
