Advertisement
ScratchMonkey

dhcpd.conf fails to push options to fixed-address clients

Feb 15th, 2022
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.66 KB | None | 0 0
  1. ddns-domainname "dhcp.lsi.lan";
  2. ddns-update-style interim;
  3. update-optimization off;
  4. update-conflict-detection off;
  5. zone dhcp.lsi.lan. {
  6. primary 127.0.0.1;
  7. }
  8. zone 6.96.10.in-addr.arpa. {
  9. primary 127.0.0.1;
  10. }
  11. failover peer "dhcp-backup" {
  12. secondary;
  13. address 10.0.0.132;
  14. port 647;
  15. peer address 10.0.0.128;
  16. peer port 647;
  17. max-response-delay 60;
  18. max-unacked-updates 10;
  19. load balance max seconds 3;
  20. }
  21. log-facility local5;
  22. authoritative;
  23. one-lease-per-client on;
  24. dynamic-bootp-lease-length 604800;
  25. option space MSFT;
  26. option MSFT.release-on-shutdown code 2 = unsigned integer 32;
  27. default-lease-time 259200;
  28. max-lease-time 259200;
  29. option domain-name "lsi.lan";
  30. option domain-search "lsi.lan", "dhcp.lsi.lan";
  31. option domain-name-servers rocinante.lsi.lan, orifice.lsi.lan;
  32. option ntp-servers rocinante.lsi.lan, orifice.lsi.lan;
  33. option netbios-name-servers orifice.lsi.lan;
  34. option netbios-node-type 8;
  35. option log-servers orifice.lsi.lan;
  36. option time-offset -25200;
  37. option time-servers orifice.lsi.lan;
  38. option subnet-mask 255.255.0.0;
  39. option routers 10.96.0.253;
  40. class "win2k-clients" {
  41. match if option vendor-class-identifier = "MSFT 5.0";
  42. vendor-option-space MSFT;
  43. option MSFT.release-on-shutdown 1;
  44. }
  45. allow booting;
  46. allow bootp;
  47. shared-network "lsi.lan" {
  48. subnet 10.96.0.0 netmask 255.255.0.0 {
  49. pool {
  50. range 10.96.6.128 10.96.6.254;
  51. deny dynamic bootp clients;
  52. }
  53. }
  54. next-server orifice.lsi.lan;
  55. filename "pxelinux.0";
  56. }
  57. group {
  58. default-lease-time 259200;
  59. max-lease-time 259200;
  60. option domain-name "lsi.lan";
  61. option domain-search "lsi.lan", "dhcp.lsi.lan";
  62. option domain-name-servers rocinante.lsi.lan, orifice.lsi.lan;
  63. option ntp-servers rocinante.lsi.lan, orifice.lsi.lan;
  64. option netbios-name-servers orifice.lsi.lan;
  65. option netbios-node-type 8;
  66. option log-servers orifice.lsi.lan;
  67. option time-offset -25200;
  68. option time-servers orifice.lsi.lan;
  69. option subnet-mask 255.255.0.0;
  70. option routers 10.96.0.253;
  71. class "win2k-clients" {
  72. match if option vendor-class-identifier = "MSFT 5.0";
  73. vendor-option-space MSFT;
  74. option MSFT.release-on-shutdown 1;
  75. }
  76. host scanner { hardware ethernet 00:00:48:27:62:5b; fixed-address 10.96.0.130; }
  77. host leo-camera { hardware ethernet 00:60:6e:ea:c9:c5; fixed-address 10.96.9.10; }
  78. host drac { hardware ethernet 5c:f9:dd:fd:06:ca; fixed-address 10.96.10.1; }
  79. host nighthawk { hardware ethernet 02:0c:6b:9b:22:38; fixed-address 10.96.0.251; }
  80. host archerax20 { hardware ethernet 60:32:b1:a6:be:ac; fixed-address 10.96.0.250; }
  81. }
  82.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement