Guest User

Untitled

a guest
Nov 12th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. # /etc/network/interfaces
  2.  
  3. auto lo
  4. iface lo inet loopback
  5.  
  6. auto bond0
  7. iface bond0 inet static
  8. address 192.168.1.155
  9. netmask 255.255.255.0
  10. gateway 192.168.1.1
  11. # Bonding
  12. bond-slaves none
  13. bond-primary eth0
  14. bond-mode active-backup
  15. bond-miimon 100
  16. bond-downdelay 200
  17. bond-updelay 200
  18.  
  19. allow-hotplug wlan0
  20. iface wlan0 inet manual
  21. # Bonding
  22. bond-master bond0
  23. bond-primary eth0
  24. bond-mode active-backup
  25. wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
  26.  
  27. allow-hotplug eth0
  28. iface eth0 inet manual
  29. # Bonding
  30. bond-master bond0
  31. bond-primary eth0
  32. bond-mode active-backup
  33.  
  34. allow-hotplug usb0
  35. iface usb0 inet static
  36. address 192.168.42.42
  37. netmask 255.255.255.0
  38. broadcast 192.168.42.255
Add Comment
Please, Sign In to add comment