Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2014
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. root@t605:/# cat /etc/network/interfaces
  2. # This file describes the network interfaces available on your system
  3. # and how to activate them. For more information, see interfaces(5).
  4.  
  5. # The loopback network interface
  6. auto lo
  7. iface lo inet loopback
  8.  
  9. # The primary network interface
  10. auto eth0
  11. iface eth0 inet manual
  12.  
  13. iface eth0 inet6 manual
  14.  
  15. auto br0
  16. iface br0 inet static
  17. address 10.10.10.65
  18. netmask 255.255.0.0
  19. network 10.10.0.0
  20. broadcast 10.10.255.255
  21. bridge_ports eth0
  22. bridge_stp off
  23. bridge_fd 0
  24. bridge_maxwait 0
  25. gateway 10.10.10.10
  26. dns-nameservers 10.10.10.10
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement