Advertisement
Guest User

Untitled

a guest
Sep 21st, 2021
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. /etc/network/interfaces
  2.  
  3. # This file describes the network interfaces available on your system
  4. # and how to activate them. For more information, see interfaces(5).
  5.  
  6. source /etc/network/interfaces.d/*
  7.  
  8. # The loopback network interface
  9. auto lo
  10. iface lo inet loopback
  11.  
  12. allow-ovs ovsbr0
  13. iface ovsbr0 inet static
  14. address 10.10.189.3
  15. netmask 255.255.255.192
  16. broadcast 10.10.189.63
  17. gateway 10.10.189.1
  18. ovs_type OVSBridge
  19. ovs_ports eno1
  20.  
  21. allow-ovsbr0 eno1
  22. iface eno1 inet manual
  23. ovs_bridge ovsbr0
  24. ovs_type OVSPort
  25.  
  26.  
  27. /etc/network/if-pre-up.d/openvswitch
  28.  
  29. output set -xv
  30.  
  31. sep 21 18:43:30 shu ifup[663]: if [ -z "${IF_OVS_TYPE}" ]; then
  32. Sep 21 18:43:30 shu ifup[663]: exit 0
  33. Sep 21 18:43:30 shu ifup[663]: fi
  34. Sep 21 18:43:30 shu ifup[663]: + [ -z ]
  35. Sep 21 18:43:30 shu ifup[663]: + exit 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement