Advertisement
Guest User

Untitled

a guest
Sep 12th, 2012
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 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.  
  9. # The WAN network interface
  10. auto eth1
  11. iface eth1 inet static
  12. address 192.168.1.10
  13. netmask 255.255.255.0
  14. network 192.168.1.0
  15. broadcast 192.168.1.255
  16. dns-nameservers 192.168.1.10 8.8.8.8
  17.  
  18. # The WAN VLAN network interface
  19. auto eth1.10
  20. iface eth1.10 inet dhcp
  21. vlan-raw-device eth1
  22. dns-nameservers 192.168.1.10 8.8.8.8
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement