Advertisement
Guest User

Untitled

a guest
Dec 19th, 2014
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. auto lo
  2. iface lo inet loopback
  3.  
  4. auto eth0
  5. iface eth0 inet dhcp
  6.  
  7. auto eth1
  8. iface eth1 inet static
  9. address 10.10.0.1
  10. netmask 255.0.0.0
  11. gateway 10.10.0.1
  12.  
  13. INTERFACES="eth1"
  14.  
  15. default-lease-time 650;
  16.  
  17. max-lease-time 79520;
  18.  
  19. option subnet-mask 255.0.0.0;
  20. option broadcast-address 10.10.0.255;
  21. option routers 10.10.0.2;
  22.  
  23. subnet 10.10.0.0 netmask 255.0.0.0
  24.  
  25. {
  26.  
  27. range 10.10.0.10 10.10.0.250;
  28.  
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement