Advertisement
Guest User

Untitled

a guest
Sep 20th, 2021
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. buster works:
  2.  
  3. auto lo
  4. iface lo inet loopback
  5.  
  6. allow-ovs ovsbr0
  7. iface ovsbr0 inet static
  8. address 10.10.189.3
  9. netmask 255.255.255.192
  10. broadcast 10.10.189.63
  11. gateway 10.10.189.1
  12. ovs_type OVSBridge
  13. ovs_ports eno1
  14.  
  15. auto eno1
  16. allow-ovsbr0 eno1
  17. iface eno1 inet manual
  18. ovs_bridge ovsbr0
  19. ovs_type OVSPort
  20.  
  21. bullseye works:
  22. auto lo
  23. iface lo inet loopback
  24.  
  25. allow-ovs ovsbr0
  26. iface ovsbr0 inet static
  27. address 10.10.189.3
  28. netmask 255.255.255.192
  29. broadcast 10.10.189.63
  30. gateway 10.10.189.1
  31. ovs_type OVSBridge
  32. ovs_ports eno1
  33.  
  34. auto eno1
  35. allow-ovsbr0 eno1
  36. iface eno1 inet manual
  37. ovs_bridge ovsbr0
  38. ovs_type OVSPort
  39. post-up ifup ovsbr0
  40. post-down ifdown ovsbr0
  41.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement