Advertisement
Guest User

Untitled

a guest
May 1st, 2012
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. interfaces file:
  2.  
  3. iface eth0 inet static
  4. address 192.168.10.254
  5. network 192.168.10.0/11
  6. netmask 255.255.255.0
  7. broadcast 192.168.10.255
  8. auto eth0
  9.  
  10. dnsmasq config file:
  11.  
  12. # deactivate DNS
  13. port=0
  14. # listen on specific interface and/or address
  15. interface=eth0
  16. listen-address=192.168.10.1
  17. bind-interfaces
  18. no-resolv
  19. ## DHCP configuration
  20. dhcp-range=192.168.10.50,192.168.10.150,12h
  21. # detect PXE clients
  22. dhcp-vendorclass=set:pxe,PXEClient
  23. # MACs we serve
  24. dhcp-host=00:80:64:54:e9:d4
  25. # do not send default route and DNS server options
  26. dhcp-option=option:router
  27. dhcp-option=option:dns-server
  28. # ignore request from unknown hosts
  29. dhcp-ignore=tag:!known
  30. # and ignore non-PXE booting
  31. dhcp-ignore=tag:!pxe
  32. ## TFTP configuration
  33. enable-tftp
  34. tftp-root=/svr/tftp
  35. dhcp-boot=/svr/tftp/fdos.144
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement