Advertisement
Guest User

Untitled

a guest
Jul 24th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. #
  2. # DHCP Server Configuration file.
  3. # see /usr/share/doc/dhcp*/dhcpd.conf.example
  4. # see dhcpd.conf(5) man page
  5. #
  6.  
  7. subnet 100.64.0.0 netmask 255.255.255.0 {
  8. option subnet-mask 255.255.255.0;
  9. #option domain-search "";
  10. option domain-name-servers 8.8.8.8;
  11. range 100.64.4.10 100.64.4.100;
  12.  
  13. host machineb {
  14. option host-name "carriage.dundermifflin.com";
  15. hardware ethernet 00:50:56:b4:cd:15;
  16. fixed-address 100.64.4.10;
  17. }
  18.  
  19. host machinec {
  20. option host-name "platen.dundermifflin.com";
  21. hardware ethernet 00:50:56:b4:a2:2f;
  22. fixed-address 100.64.4.11;
  23. }
  24.  
  25. host machined {
  26. option host-name "chase.dundermifflin.com";
  27. hardware ethernet 00:50:56:b4:4d:6e;
  28. fixed-address 100.64.4.12;
  29. }
  30.  
  31. host machinef {
  32. option host-name "saddle.dundermifflin.com";
  33. hardware ethernet 00:50:56:b4:e8:e3;
  34. fixed-address 100.64.4.13;
  35. }
  36. }
  37.  
  38. subnet 10.21.32.0 netmask 255.255.255.0 {
  39. option subnet-mask 255.255.255.0;
  40. #option domain-search "";
  41. option domain-name-servers 8.8.8.8;
  42. range 10.21.32.2 10.21.32.5;
  43.  
  44. host machinee {
  45. option host-name "roller.dundermifflin.com";
  46. hardware ethernet 00:50:56:b4:52:07;
  47. fixed-address 10.21.32.2;
  48. }
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement