Advertisement
tuipveus

/etc/network/interfaces

Aug 27th, 2011
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.73 KB | None | 0 0
  1. # This file describes the network interfaces available on your system
  2. # and how to activate them. For more information, see interfaces(5).
  3.  
  4. # The loopback network interface
  5. auto lo
  6. iface lo inet loopback
  7.  
  8. # The primary network interface
  9. #0
  10. allow-hotplug eth2
  11. iface eth2 inet dhcp
  12.  
  13. #auto eth1
  14. #iface eth1 inet static
  15. #address 192.168.1.49
  16. #netmask 255.255.255.0
  17. #gateway 192.168.1.50
  18.  
  19. #auto eth1
  20. #iface eth1 inet static
  21. #address 192.168.1.50
  22. #netmask 255.255.255.0
  23. ##gateway 192.168.1.50
  24.  
  25. auto eth1
  26. auto eth2
  27. auto eth3
  28.  
  29. auto bond0
  30. iface bond0 inet static
  31. address 192.168.1.50
  32. netmask 255.255.255.0
  33. network 192.168.1.0
  34. slaves eth0 eth1
  35. bond_mode active-backup
  36. bond_miimon 100
  37. bond_downdelay 200
  38. bond_updelay 200
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement