Advertisement
tuipveus

Tuipveus

May 25th, 2009
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. # The loopback network interface
  2. auto lo
  3. iface lo inet loopback
  4.  
  5. # The primary network interface
  6. #allow-hotplug eth1
  7. #iface eth1 inet static
  8. # address 192.168.1.79
  9. # netmask 255.255.255.0
  10. # network 192.168.1.0
  11. # broadcast 192.168.1.255
  12. # gateway 192.168.1.50
  13. # # dns-* options are implemented by the resolvconf package, if installed
  14. # dns-nameservers 208.67.222.222 208.67.220.220
  15. # dns-search raatikainen.org
  16.  
  17. auto eth0_rename
  18. auto eth1
  19.  
  20. #iface eth0_rename inet static
  21. #iface eth1 inet static
  22.  
  23.  
  24. auto bond0
  25. iface bond0 inet static
  26. address 192.168.1.79
  27. netmask 255.255.255.0
  28. network 192.168.1.0
  29. gateway 192.168.1.50
  30. up /sbin/ifenslave bond0 eth0_rename
  31. up /sbin/ifenslave bond0 eth1
  32. # dns-* options are implemented by the resolvconf package, if installed
  33.  
  34. dns-nameservers 208.67.222.222 208.67.220.220
  35. ns-search raatikainen.org
  36.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement