Advertisement
tekgeek

interfaces

Sep 14th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. # The loopback network interface
  2. auto lo
  3. iface lo inet loopback
  4.  
  5.  
  6.  
  7. auto cloudbr0
  8. allow-ovs cloudbr0
  9. iface cloudbr0 inet static
  10. address 192.168.0.100
  11. netmask 255.255.255.0
  12. gateway 192.168.0.1
  13. dns-nameservers 1.1.1.1 8.8.8.8
  14. ovs_type OVSBridge
  15. ovs_ports enp131s0f1
  16.  
  17.  
  18.  
  19. allow-cloudbr0 enp131s0f1
  20. iface enp131s0f1 inet manual
  21. ovs_bridge cloudbr0
  22. ovs_type OVSPort
  23.  
  24.  
  25.  
  26.  
  27. #auto cloudbr1
  28. #allow-ovs cloudbr1
  29. #iface cloudbr1 inet dhcp
  30. # ovs_type OVSBridge
  31. # ovs_ports enp131s0f0
  32.  
  33.  
  34.  
  35. #allow-cloudbr1 enp131s0f0
  36. #iface enp131s0f0 inet manual
  37. # ovs_bridge cloudbr1
  38. # ovs_type OVSPort
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement