Changes between Version 2 and Version 3 of Internal/Infrastructure/SystemServices/DHCPService


Ignore:
Timestamp:
Oct 14, 2015, 4:56:32 PM (9 years ago)
Author:
msherman
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Internal/Infrastructure/SystemServices/DHCPService

    v2 v3  
    5454
    5555}}}
     56
     57=== Configuration As of 10/14/2015 ===
     58* Main file is dhcpd.conf, includes each orbit subnet as separate file, e.g. {{{include "/etc/dhcp/grid.conf";}}}
     59* dhcpd Header is as follows
     60{{{
     61#ddns-update-style interim;
     62authoritative;
     63use-host-decl-names on;
     64get-lease-hostnames true;
     65ping-check false;
     66ping-timeout 0;
     67log-facility local7;
     68default-lease-time 86400;
     69max-lease-time 86400;
     70ddns-updates off;
     71#allow booting;
     72#allow bootp;
     73# Ivan/James  on dhcp1 if you want the log to do dhcplog enable this below and modify syslog.conf 
     74
     75option ntp-servers dhcp1.orbit-lab.org,dhcp2.orbit-lab.org;
     76
     77filename "/pxelinux.bin";
     78option option-150 code 150 = text;
     79}}}
     80* Header for each sandbox is:
     81{{{
     82#Sandbox Config
     83subnet 10.11.0.0 netmask 255.255.0.0 {
     84        option routers 10.11.0.1; # Router
     85        option domain-name-servers 10.11.0.9, 10.11.0.8; #DNS
     86        option domain-name "sb1.orbit-lab.org"; #current domain
     87        option log-servers 10.11.0.10; # log set per subnet
     88        option ntp-servers 10.11.0.10; #ntp set per subnet
     89        ddns-updates off; #no ddns
     90        ddns-domainname "sb1.orbit-lab.org";
     91        next-server 10.11.0.42; #for pxe
     92}}}
     93
     94* Files included are:
     95 * inside.conf
     96 * instrument.conf
     97 * network.conf
     98 * cm.conf
     99 * dmz.conf
     100 * grid.conf
     101 * outdoor.conf
     102 * failover.conf
     103 * sandbox1.conf
     104 * sandbox2.conf
     105 * sandbox3.conf
     106 * sandbox4.conf
     107 * sandbox5.conf
     108 * sandbox6.conf
     109 * sandbox7.conf
     110 * sandbox8.conf
     111 * sandbox9.conf
     112 * aruba.conf
     113
     114
     115
     116
     117
     118
     119
     120
     121
     122
     123
     124
     125
     126
     127