Advertisement
Eagleman

Untitled

Jun 30th, 2012
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 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 dhcp
  11. #iface eth0 inet static
  12. # address 192.168.1.10
  13. # netmask 255.255.255.0
  14. # network 192.168.1.0
  15. # broadcast 192.168.0.255
  16. # gateway 192.168.1.1
  17. # dns-nameservers 192.168.1.10 8.8.8.8
  18.  
  19. auto eth0.10
  20. iface eth0.10 inet dhcp
  21. vlan-raw-device eth0
  22.  
  23. auto eth1
  24. #iface eth1 inet dhcp
  25. iface eth1 inet static
  26. address 192.168.1.10
  27. netmask 255.255.255.0
  28. network 192.168.1.0
  29. broadcast 192.168.0.255
  30. # gateway 192.168.1.1
  31. dns-nameservers 192.168.1.10 8.8.8.8
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement