# 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; # Dinamic 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 # SN = 16, MO host sim16 { hardware ethernet 08:00:56:00:46:FA; fixed-address 192.168.1.16; } host freqcnt { hardware ethernet 80:09:02:0A:1D:E9; fixed-address 192.168.1.15; }