smart proxy dhcpd.conf

From Melodic Camel, 5 Years ago, written in Plain Text, viewed 237 times.
URL https://paste.steamr.com/view/d26907e1 Embed
Download Paste or View Raw
  1. # dhcpd.conf
  2. omapi-port 7911;
  3.  
  4. default-lease-time 43200;
  5. max-lease-time 86400;
  6.  
  7.  
  8.  
  9. ddns-update-style none;
  10.  
  11. option domain-name "lab.cs.ucalgary.ca";
  12. option domain-search "lab.cs.ucalgary.ca", "cs.ucalgary.ca";
  13. option domain-name-servers 172.20.2.11;
  14. option ntp-servers 136.159.5.75;
  15.  
  16. allow booting;
  17. allow bootp;
  18.  
  19. option fqdn.no-client-update    on;  # set the "O" and "S" flag bits
  20. option fqdn.rcode2            255;
  21. option pxegrub code 150 = text ;
  22.  
  23.  
  24.  
  25.  
  26. # Bootfile Handoff
  27. next-server 172.20.2.11;
  28. option architecture code 93 = unsigned integer 16 ;
  29. if option architecture = 00:06 {
  30.   filename "grub2/shim.efi";
  31. } elsif option architecture = 00:07 {
  32.   filename "grub2/shim.efi";
  33. } elsif option architecture = 00:09 {
  34.   filename "grub2/shim.efi";
  35. } else {
  36.   filename "pxelinux.0";
  37. }
  38.  
  39. log-facility local7;
  40.  
  41. include "/etc/dhcp/dhcpd.hosts";
  42.  
  43. # lab.cs.ucalgary.ca
  44. subnet 172.20.2.0 netmask 255.255.255.0 {
  45.  
  46.   option subnet-mask 255.255.255.0;
  47.   option routers 172.20.2.1;
  48.  
  49.   range dynamic-bootp 172.20.2.240 172.20.2.254;
  50. }
  51.  

Reply to "smart proxy dhcpd.conf"

Here you can reply to the paste above