Advertisement
Guest User

Untitled

a guest
Apr 19th, 2021
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. auto lo
  2. iface lo inet loopback
  3.  
  4. allow-hotplug enp4s0
  5. iface enp4s0 inet static
  6. address 15.4.3.101/8
  7. gateway 15.1.1.1
  8.  
  9. allow-ovs vxlan2
  10. iface vxlan2 inet manual
  11. ovs_type OVSTunnel
  12. ovs_bridge vmbr1
  13. ovs_tunnel_type vxlan
  14. ovs_tunnel_options options:key=flow options:dst_port=4789 options:remote_ip=15.4.3.102
  15.  
  16. allow-ovs ceph
  17. iface ceph inet static
  18. address 14.4.3.101/8
  19. ovs_type OVSIntPort
  20. ovs_bridge vmbr1
  21. ovs_options tag=2
  22. ovs_mtu 1450
  23.  
  24. allow-ovs vxlan3
  25. iface vxlan3 inet manual
  26. ovs_type OVSTunnel
  27. ovs_bridge vmbr1
  28. ovs_tunnel_type vxlan
  29. ovs_tunnel_options options:dst_port=4789 options:key=flow options:remote_ip=15.4.3.103
  30.  
  31. allow-ovs vmbr0
  32. iface vmbr0 inet manual
  33. ovs_type OVSBridge
  34. ovs_ports enp4s0
  35.  
  36. allow-ovs vmbr1
  37. iface vmbr1 inet manual
  38. ovs_type OVSBridge
  39. ovs_ports vxlan2 ceph vxlan3
  40.  
  41. source /etc/network/interfaces.d/*
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement