home *** CD-ROM | disk | FTP | other *** search
/ chilidog.highland.cc.ks.us / chilidog.highland.cc.ks.us.zip / chilidog.highland.cc.ks.us / backup / bradford.20120213.bsc-siteConfiguration.tar.gz / bradford.20120213.bsc-siteConfiguration.tar / bsc / siteConfiguration / README.DHCPD.CONF < prev    next >
Text File  |  2007-03-14  |  2KB  |  46 lines

  1. Here are some samples of FIXED IP RESERVATIONS
  2.  
  3. Sample 1, no router or DNS:
  4.  
  5. host CLIENT_HOST_NAME_HERE { hardware ethernet 00:01:02:91:9C:27; fixed-address 192.168.55.5; }
  6.  
  7. Sample 2, router and DNS:
  8.  
  9. host CLIENT_HOST_NAME_HERE { hardware ethernet 00:01:02:91:9C:27; fixed-address 192.168.55.5; option routers 192                          .168.55.1; option domain-name-servers 192.168.10.10, 192.168.20.20; }
  10.  
  11.  
  12. Sample 3, router, DNS, domain search order and broadcast:
  13.  
  14. host CLIENT_HOST_NAME_HERE { hardware ethernet 00:01:02:91:9C:27; fixed-address 192.168.55.5; option routers 192                          .168.55.1; option domain-name-servers 192.168.10.10, 192.168.20.20; option domain-name "bradfordnetworks.com"; o                          ption broadcast-address 192.168.55.255;}
  15.  
  16.  
  17. Sample 4, This is the same as sample 3 just not on one line:
  18.  
  19. host CLIENT_HOST_NAME_HERE {
  20.         hardware ethernet 00:01:02:91:9C:27;
  21.         fixed-address 192.168.55.5;
  22.         option routers 192.168.55.1;
  23.         option domain-name-servers 192.168.10.10, 192.168.20.20;
  24.         option domain-name "bradfordnetworks.com";
  25.         option broadcast-address 192.168.55.255;
  26. }
  27.  
  28.  
  29. Sample 5, This sample creates a group of FIXED IP RESERVATIONS.
  30. You can put the options once at the begining and all of the reservations will use them.
  31.  
  32. group {
  33.  
  34. #This is where global options can be set for fixed reservations
  35.         option domain-name-servers 192.168.10.10, 192.168.20.20;
  36.         option domain-name "bradfordnetworks.com";
  37.         option broadcast-address 192.168.10.255;
  38.         option routers 192.168.55.1;
  39. # Here are the Reservations
  40.  
  41. host Hostname-1 { hardware ethernet 00:0C:5B:91:9C:27; fixed-address 192.168.55.50; }
  42. host Hostname-2 { hardware ethernet 00:1D:3f:0b:09:63; fixed-address 192.168.55.33; }
  43. host Hostname-3 { hardware ethernet 00:09:6B:8D:B6:10; fixed-address 192.168.55.66; }
  44. }
  45.  
  46.