Advertisement
Guest User

Untitled

a guest
Apr 8th, 2021
14
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. auto eno1
  5. iface eno1 inet manual
  6. ovs_type OVSPort
  7. ovs_bridge vmbr0
  8.  
  9. auto eno2
  10. iface eno2 inet manual
  11. ovs_type OVSPort
  12. ovs_bridge vmbr1
  13.  
  14. auto inband
  15. iface inband inet static
  16. address 192.168.111.245/24
  17. gateway 192.168.111.253
  18. ovs_type OVSIntPort
  19. ovs_bridge vmbr1
  20. ovs_options tag=111
  21.  
  22. auto vlan_home
  23. iface vlan_home inet manual
  24. ovs_type OVSIntPort
  25. ovs_bridge vmbr1
  26. ovs_options tag=111
  27.  
  28. auto vlan_guest
  29. iface vlan_guest inet manual
  30. ovs_type OVSIntPort
  31. ovs_bridge vmbr1
  32. ovs_options tag=100
  33.  
  34. auto vlan_mgmt
  35. iface vlan_mgmt inet manual
  36. ovs_type OVSIntPort
  37. ovs_bridge vmbr1
  38. ovs_options tag=128
  39.  
  40. auto vmbr0
  41. iface vmbr0 inet manual
  42. ovs_type OVSBridge
  43. ovs_ports eno1
  44.  
  45. auto vmbr1
  46. iface vmbr1 inet manual
  47. ovs_type OVSBridge
  48. ovs_ports eno2 inband vlan_home vlan_guest vlan_mgmt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement