Advertisement
Guest User

roy

a guest
Oct 18th, 2011
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 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 eth0
  10. #iface eth0 inet static
  11. # address 192.168.10.254
  12. # netmask 255.255.255.0
  13. # network 192.168.10.0
  14. # broadcast 192.168.10.255
  15. # gateway 192.168.10.1
  16. # # dns-* options are implemented by the resolvconf package, if installed
  17. # dns-nameservers 8.8.8.8
  18. # dns-search karlsbakk.net
  19.  
  20. # This file describes the network interfaces available on your system
  21. # and how to activate them. For more information, see interfaces(5).
  22.  
  23. # The bridge
  24. auto br0
  25. iface br0 inet static
  26. address 192.168.10.254
  27. netmask 255.255.255.0
  28. network 192.168.10.0
  29. broadcast 192.168.10.255
  30. gateway 192.168.10.1
  31. bridge_ports eth0
  32. bridge_fd 9
  33. bridge_hello 2
  34. bridge_maxage 12
  35. bridge_stp off
  36. # dns-* options are implemented by the resolvconf package, if installed
  37. dns-nameservers 213.236.233.92
  38. dns-search karlsbakk.net
  39.  
  40. # The primary network interface - DISABLED
  41. #auto eth0
  42. iface eth0 inet static
  43. address 172.16.0.1
  44. netmask 255.255.255.0
  45. network 172.16.0.0
  46. broadcast 172.16.0.255
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement