Advertisement
lifeboy

Untitled

Oct 8th, 2018
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.20 KB | None | 0 0
  1. yster4:
  2.  
  3. auto lo
  4. iface lo inet loopback
  5.  
  6. iface eno2 inet manual
  7.  
  8. iface ens2 inet manual
  9.  
  10. iface ens3 inet manual
  11.  
  12. auto eno1
  13. iface eno1 inet static
  14.     address  172.16.10.104
  15.     netmask  255.255.255.0
  16. #corosync pmxfs
  17.  
  18. auto bond0
  19. iface bond0 inet static
  20.     address  10.10.10.4
  21.     netmask  255.255.255.0
  22.     bond-slaves ens2 ens3
  23.     bond-miimon 100
  24.     bond-mode 802.3ad
  25.     bond-xmit-hash-policy layer2
  26.  
  27. auto vmbr0
  28. iface vmbr0 inet static
  29.     address  192.168.0.204
  30.     netmask  255.255.255.0
  31.     gateway  192.168.0.1
  32.     bridge-ports eno2
  33.     bridge-stp off
  34.     bridge-fd 0
  35.     bridge-vlan-aware yes
  36.     bridge-vids 2-4094
  37.  
  38. yster5:
  39.  
  40. auto lo
  41. iface lo inet loopback
  42.  
  43. auto eno1
  44. iface eno1 inet static
  45.     address  172.16.10.105
  46.     netmask  255.255.255.0
  47. #corosync pmxfs
  48.  
  49. iface eno2 inet manual
  50.  
  51. iface ens3 inet manual
  52.  
  53. iface ens2 inet manual
  54.  
  55. auto bond0
  56. iface bond0 inet static
  57.     address  10.10.10.5
  58.     netmask  255.255.255.0
  59.     bond-slaves ens2 ens3
  60.     bond-miimon 100
  61.     bond-mode 802.3ad
  62.     bond-xmit-hash-policy layer2
  63.  
  64. auto vmbr0
  65. iface vmbr0 inet static
  66.     address  192.168.0.205
  67.     netmask  255.255.255.0
  68.     gateway  192.168.0.1
  69.     bridge-ports eno2
  70.     bridge-stp off
  71.     bridge-fd 0
  72.     bridge-vlan-aware yes
  73.     bridge-vids 2-4094
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement