# dhcpd.conf # # Configuration file for ISC dhcpd # # option definitions common to all supported networks... option domain-name "slac.stanford.edu"; default-lease-time 600; max-lease-time 7200; # Use this to send dhcp log messages to a different log file log-facility local7; # Dynamic Subnet declaration. subnet 192.168.1.0 netmask 255.255.255.0 { range 192.168.1.150 192.168.1.200; } # Sim module declarations # name will be sim + the serial number # and the IP will be 192.168.1.(serial number) # SN and MAC can be found in here # https://confluence.slac.stanford.edu/display/ppareg/LCLS_DSP_Module_Record host ps01 { hardware ethernet 80:09:02:0b:d3:ce; fixed-address 192.168.1.10; } host apc01 { hardware ethernet 00:01:05:4a:00:9d; fixed-address 192.168.1.11; }