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.20100913.bsc-siteConfiguration.tar.gz / bradford.20100913.bsc-siteConfiguration.tar / bsc / siteConfiguration / .factory.dhcpd.conf next >
Text File  |  2008-06-10  |  4KB  |  148 lines

  1. #option time-servers ip-address;
  2. #option ntp-servers ip-address;
  3. #option domain-name-servers 192.168.10.10;
  4. #option nis-domain bsc.com;
  5. #option nis-servers 192.168.10.10;
  6.  
  7. #default-lease-time 600;
  8. #max-lease-time 7200;
  9. authoritative;
  10. log-facility local7;
  11. ddns-update-style none;
  12.  
  13. # Registration Scope
  14. subnet 192.168.26.0 netmask 255.255.255.0 {
  15.    range 192.168.26.100 192.168.26.200;
  16.    default-lease-time 960;
  17.    max-lease-time 960;
  18.    authoritative;
  19.    allow declines;
  20.    option domain-name "bradford-reg.com";
  21.    option domain-name-servers 192.168.26.90;
  22.    option broadcast-address 192.168.26.255;
  23.    option routers 192.168.26.1;
  24.  }
  25.  
  26.  
  27. # Remediation Scope
  28. subnet 192.168.27.0 netmask 255.255.255.0 {
  29.    range 192.168.27.100 192.168.27.200;
  30.    one-lease-per-client true;
  31.    default-lease-time 960;
  32.    max-lease-time 960;
  33.    authoritative;
  34.    allow declines;
  35.    option domain-name "bradford-rem.com";
  36.    option domain-name-servers 192.168.27.90;
  37.    option broadcast-address 192.168.22.255;
  38.    option routers 192.168.27.1;
  39.  }
  40.  
  41. # Authentication Scope
  42. subnet 192.168.28.0 netmask 255.255.255.0 {
  43.    range 192.168.28.100 192.168.28.200;
  44.    default-lease-time 300;
  45.    max-lease-time 300;
  46.    option domain-name "bradford-authentication.com";
  47.    option domain-name-servers 192.168.28.90;
  48.    option broadcast-address 192.168.28.255;
  49.    option routers 192.168.28.1;
  50.  }
  51.  
  52. # DeadEnd Scope
  53. subnet 192.168.52.0 netmask 255.255.255.0 {
  54.    range 192.168.52.100 192.168.52.200;
  55.    default-lease-time 300;
  56.    max-lease-time 300;
  57.    option domain-name "bradford-deadend.com";
  58.    option domain-name-servers 192.168.52.2;
  59.    option broadcast-address 192.168.52.255;
  60.    option routers 192.168.52.1;
  61.  }
  62.  
  63. # VPN Scope
  64. subnet 192.168.53.0 netmask 255.255.255.0 {
  65.    range 192.168.53.100 192.168.53.200;
  66.    default-lease-time 300;
  67.    max-lease-time 300;
  68.    option domain-name "bradford-vpn.com";
  69.    option domain-name-servers 192.168.53.2;
  70.    option broadcast-address 192.168.53.255;
  71.    option routers 192.168.53.1;
  72.  }
  73.  
  74. # Isolation Scope
  75. subnet 192.168.29.0 netmask 255.255.255.0 {
  76.    range 192.168.29.100 192.168.29.200;
  77.    default-lease-time 300;
  78.    max-lease-time 300;
  79.    option domain-name "bradford-isol.com";
  80.    option domain-name-servers 192.168.29.2;
  81.    option broadcast-address 192.168.29.255;
  82.    option routers 192.168.29.1;
  83.  }
  84.  
  85.   class "authenticated_clients"
  86.    {
  87.        match pick-first-value (option dhcp-client-identifier, hardware);
  88.    }
  89.  
  90. ### Test_Hub1 VLAN 63
  91. #shared-network subnet-63-VLAN-63
  92. #{
  93. #
  94. #        # don't send DHCPNACKs needlessly
  95. #        not authoritative;
  96. #
  97. #
  98. #
  99. #        ### authenticated address pool ###
  100. #        subnet 10.3.63.0 netmask 255.255.255.0
  101. #        {
  102. #        default-lease-time 3600; ### 1 Hour
  103. #        max-lease-time 3600;     ### 1 Hour
  104. #        option broadcast-address 10.3.63.255;
  105. #        option routers 10.3.63.1;
  106. #        pool
  107. #        {
  108. #        range 10.3.63.5 10.3.63.229;
  109. #        option domain-name-servers 10.3.200.5, 10.3.200.4;
  110. #        option domain-name "bsi-hub1-authenticated.com";
  111. #        # option netbios-name-servers 10.3.200.5, 10.2.200.4; # WINS Server
  112. #        # option netbios-node-type 2; # WINS Server Type (1=bcast, 2=WINS, 4=bcast then WINS, 8=WINS then bcast)
  113. #        # option nis-servers 10.3.0.200.5; # NIS Domain Controller
  114. #        # Responds to registered clients
  115. #        allow members of "authenticated_clients";
  116. #        }
  117. #        }
  118. #
  119. #        ### unauthenticated address pool ###
  120. #        subnet 10.4.63.0 netmask 255.255.255.0
  121. #        {
  122. #        default-lease-time 60; ### 1 Minutes
  123. #        max-lease-time 60;     ### 1 Minutes
  124. #        option broadcast-address 10.4.63.255;
  125. #        option routers 10.4.63.1;
  126. #        pool
  127. #        {
  128. #        range 10.4.63.5 10.4.63.229;
  129. #        option domain-name-servers 10.3.232.1;
  130. #        option domain-name "bsi-hub1-non-authenticated.com";
  131. #        # Responds to unregistered clients
  132. #        deny members of "authenticated_clients";
  133. #        }
  134. #     }
  135. #}
  136.  
  137. ###################################################
  138. ## For examples of fixed IP reservations
  139. ## please see the file /bsc/siteConfiguration/README.DHCPD.CONF
  140. ####################################################
  141. ####################################################
  142. ##  The following is used
  143. ##  for Access Point Management
  144. ##  Do not modify below these lines.
  145. ##  subclass "authenticated_clients" 1:00:10:7A:68:E8:2D;
  146. ####################################################
  147. ##  CampusManager adds lines below this point
  148.