# 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:49:48; fixed-address 192.168.1.16; } # SN = 19, PRL Slave host sim19 { hardware ethernet 08:00:56:00:46:FC; fixed-address 192.168.1.19; } # SN = 20, PRL Master host sim20 { hardware ethernet 08:00:56:00:49:55; fixed-address 192.168.1.20; } # SN = 21, TEST host sim21 { hardware ethernet 08:00:56:00:4B:D8; fixed-address 192.168.1.21; }