Advertisement
Guest User

Untitled

a guest
May 29th, 2014
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 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. #auto em1
  10. #iface em1 inet manual
  11. #bond-master bond0
  12.  
  13. auto eth1
  14. iface eth1 inet static
  15. address 10.1.10.3
  16. netmask 255.255.255.0
  17. gateway 10.1.10.1
  18. broadcast 10.1.10.255
  19. network 10.1.10.0
  20. dns-nameserver 10.1.10.1
  21. #bond-master bond0
  22.  
  23. #auto bond0
  24. #iface bond0 inet static
  25. #address 10.1.10.3
  26. #gateway 10.1.10.1
  27. #netmask 255.255.255.00
  28. #broadcast 10.1.10.255
  29. #network 10.1.10.0
  30. #dns-nameserver 10.1.10.1
  31. #bond-mode 1
  32. #bond-miimon 100
  33. #bond-slave eth1 em1
  34. #bond-lacp-rate 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement